Skip to content

Commit f5215b6

Browse files
committed
chore(release): update version to 0.4.1
1 parent 5da35e6 commit f5215b6

File tree

62 files changed

+117
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+117
-97
lines changed

.claude/commands/post-release-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Manually verify the install script works in a fresh environment:
4343
```bash
4444
docker run --rm alpine:latest sh -c "
4545
apk add --no-cache curl ca-certificates libstdc++ libgcc bash &&
46-
curl -fsSL https://releases.rivet.dev/sandbox-agent/0.5.x/install.sh | sh &&
46+
curl -fsSL https://releases.rivet.dev/sandbox-agent/0.4.x/install.sh | sh &&
4747
sandbox-agent --version
4848
"
4949
```

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["server/packages/*", "gigacode"]
44
exclude = ["factory/packages/desktop/src-tauri", "foundry/packages/desktop/src-tauri"]
55

66
[workspace.package]
7-
version = "0.5.0-rc.2"
7+
version = "0.4.1"
88
edition = "2021"
99
authors = [ "Rivet Gaming, LLC <developer@rivet.gg>" ]
1010
license = "Apache-2.0"
@@ -13,13 +13,13 @@ description = "Universal API for automatic coding agents in sandboxes. Supports
1313

1414
[workspace.dependencies]
1515
# Internal crates
16-
sandbox-agent = { version = "0.5.0-rc.2", path = "server/packages/sandbox-agent" }
17-
sandbox-agent-error = { version = "0.5.0-rc.2", path = "server/packages/error" }
18-
sandbox-agent-agent-management = { version = "0.5.0-rc.2", path = "server/packages/agent-management" }
19-
sandbox-agent-agent-credentials = { version = "0.5.0-rc.2", path = "server/packages/agent-credentials" }
20-
sandbox-agent-opencode-adapter = { version = "0.5.0-rc.2", path = "server/packages/opencode-adapter" }
21-
sandbox-agent-opencode-server-manager = { version = "0.5.0-rc.2", path = "server/packages/opencode-server-manager" }
22-
acp-http-adapter = { version = "0.5.0-rc.2", path = "server/packages/acp-http-adapter" }
16+
sandbox-agent = { version = "0.4.1", path = "server/packages/sandbox-agent" }
17+
sandbox-agent-error = { version = "0.4.1", path = "server/packages/error" }
18+
sandbox-agent-agent-management = { version = "0.4.1", path = "server/packages/agent-management" }
19+
sandbox-agent-agent-credentials = { version = "0.4.1", path = "server/packages/agent-credentials" }
20+
sandbox-agent-opencode-adapter = { version = "0.4.1", path = "server/packages/opencode-adapter" }
21+
sandbox-agent-opencode-server-manager = { version = "0.4.1", path = "server/packages/opencode-server-manager" }
22+
acp-http-adapter = { version = "0.4.1", path = "server/packages/acp-http-adapter" }
2323

2424
# Serialization
2525
serde = { version = "1.0", features = ["derive"] }

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ Import the SDK directly into your Node or browser application. Full type safety
8080
**Install**
8181

8282
```bash
83-
npm install sandbox-agent@0.5.x
83+
npm install sandbox-agent@0.4.x
8484
```
8585

8686
```bash
87-
bun add sandbox-agent@0.5.x
87+
bun add sandbox-agent@0.4.x
8888
# Optional: allow Bun to run postinstall scripts for native binaries (required for SandboxAgent.start()).
8989
bun pm trust @sandbox-agent/cli-linux-x64 @sandbox-agent/cli-linux-arm64 @sandbox-agent/cli-darwin-arm64 @sandbox-agent/cli-darwin-x64 @sandbox-agent/cli-win32-x64
9090
```
@@ -135,7 +135,7 @@ Run as an HTTP server and connect from any language. Deploy to E2B, Daytona, Ver
135135

136136
```bash
137137
# Install it
138-
curl -fsSL https://releases.rivet.dev/sandbox-agent/0.5.x/install.sh | sh
138+
curl -fsSL https://releases.rivet.dev/sandbox-agent/0.4.x/install.sh | sh
139139
# Run it
140140
sandbox-agent server --token "$SANDBOX_TOKEN" --host 127.0.0.1 --port 2468
141141
```
@@ -159,12 +159,12 @@ sandbox-agent server --no-token --host 127.0.0.1 --port 2468
159159
Install the CLI wrapper (optional but convenient):
160160

161161
```bash
162-
npm install -g @sandbox-agent/cli@0.5.x
162+
npm install -g @sandbox-agent/cli@0.4.x
163163
```
164164

165165
```bash
166166
# Allow Bun to run postinstall scripts for native binaries.
167-
bun add -g @sandbox-agent/cli@0.5.x
167+
bun add -g @sandbox-agent/cli@0.4.x
168168
bun pm -g trust @sandbox-agent/cli-linux-x64 @sandbox-agent/cli-linux-arm64 @sandbox-agent/cli-darwin-arm64 @sandbox-agent/cli-darwin-x64 @sandbox-agent/cli-win32-x64
169169
```
170170

@@ -179,11 +179,11 @@ sandbox-agent api sessions send-message-stream my-session --message "Hello" --en
179179
You can also use npx like:
180180

181181
```bash
182-
npx @sandbox-agent/cli@0.5.x --help
182+
npx @sandbox-agent/cli@0.4.x --help
183183
```
184184

185185
```bash
186-
bunx @sandbox-agent/cli@0.5.x --help
186+
bunx @sandbox-agent/cli@0.4.x --help
187187
```
188188

189189
[CLI documentation](https://sandboxagent.dev/docs/cli)

docs/architecture.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Agents are installed lazily on first use. To avoid the cold-start delay, pre-ins
5656
sandbox-agent install-agent --all
5757
```
5858

59-
The `rivetdev/sandbox-agent:0.5.0-rc.2-full` Docker image ships with all agents pre-installed.
59+
The `rivetdev/sandbox-agent:0.4.1-full` Docker image ships with all agents pre-installed.
6060

6161
## Production-ready agent orchestration
6262

docs/deploy/boxlite.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ that BoxLite can load directly (BoxLite has its own image store separate from Do
2020
```dockerfile
2121
FROM node:22-bookworm-slim
2222
RUN apt-get update && apt-get install -y curl ca-certificates && rm -rf /var/lib/apt/lists/*
23-
RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/0.5.x/install.sh | sh
23+
RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/0.4.x/install.sh | sh
2424
RUN sandbox-agent install-agent claude
2525
RUN sandbox-agent install-agent codex
2626
```

docs/deploy/cloudflare.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cd my-sandbox
2525
```dockerfile
2626
FROM cloudflare/sandbox:0.7.0
2727

28-
RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/0.5.x/install.sh | sh
28+
RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/0.4.x/install.sh | sh
2929
RUN sandbox-agent install-agent claude && sandbox-agent install-agent codex
3030

3131
EXPOSE 8000
@@ -36,7 +36,7 @@ EXPOSE 8000
3636
For standalone scripts, use the `cloudflare` provider:
3737

3838
```bash
39-
npm install sandbox-agent@0.5.x @cloudflare/sandbox
39+
npm install sandbox-agent@0.4.x @cloudflare/sandbox
4040
```
4141

4242
```typescript

docs/deploy/computesdk.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description: "Deploy Sandbox Agent using ComputeSDK's provider-agnostic sandbox
1414
## TypeScript example
1515

1616
```bash
17-
npm install sandbox-agent@0.5.x computesdk
17+
npm install sandbox-agent@0.4.x computesdk
1818
```
1919

2020
```typescript

docs/deploy/daytona.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ See [Daytona network limits](https://www.daytona.io/docs/en/network-limits/).
1616
## TypeScript example
1717

1818
```bash
19-
npm install sandbox-agent@0.5.x @daytonaio/sdk
19+
npm install sandbox-agent@0.4.x @daytonaio/sdk
2020
```
2121

2222
```typescript
@@ -44,7 +44,7 @@ try {
4444
}
4545
```
4646

47-
The `daytona` provider uses the `rivetdev/sandbox-agent:0.5.0-rc.2-full` image by default and starts the server automatically.
47+
The `daytona` provider uses the `rivetdev/sandbox-agent:0.4.1-full` image by default and starts the server automatically.
4848

4949
## Using snapshots for faster startup
5050

@@ -61,7 +61,7 @@ if (!hasSnapshot) {
6161
name: SNAPSHOT,
6262
image: Image.base("ubuntu:22.04").runCommands(
6363
"apt-get update && apt-get install -y curl ca-certificates",
64-
"curl -fsSL https://releases.rivet.dev/sandbox-agent/0.5.x/install.sh | sh",
64+
"curl -fsSL https://releases.rivet.dev/sandbox-agent/0.4.x/install.sh | sh",
6565
"sandbox-agent install-agent claude",
6666
"sandbox-agent install-agent codex",
6767
),

docs/deploy/docker.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Run the published full image with all supported agents pre-installed:
1515
docker run --rm -p 3000:3000 \
1616
-e ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" \
1717
-e OPENAI_API_KEY="$OPENAI_API_KEY" \
18-
rivetdev/sandbox-agent:0.5.0-rc.2-full \
18+
rivetdev/sandbox-agent:0.4.1-full \
1919
server --no-token --host 0.0.0.0 --port 3000
2020
```
2121

22-
The `0.5.0-rc.2-full` tag pins the exact version. The moving `full` tag is also published for contributors who want the latest full image.
22+
The `0.4.1-full` tag pins the exact version. The moving `full` tag is also published for contributors who want the latest full image.
2323

2424
If you also want the desktop API inside the container, install desktop dependencies before starting the server:
2525

@@ -31,7 +31,7 @@ docker run --rm -p 3000:3000 \
3131
apt-get update && \
3232
DEBIAN_FRONTEND=noninteractive apt-get install -y curl ca-certificates bash libstdc++6 && \
3333
rm -rf /var/lib/apt/lists/* && \
34-
curl -fsSL https://releases.rivet.dev/sandbox-agent/0.5.x/install.sh | sh && \
34+
curl -fsSL https://releases.rivet.dev/sandbox-agent/0.4.x/install.sh | sh && \
3535
sandbox-agent install desktop --yes && \
3636
sandbox-agent server --no-token --host 0.0.0.0 --port 3000"
3737
```
@@ -52,7 +52,7 @@ const docker = new Docker();
5252
const PORT = 3000;
5353

5454
const container = await docker.createContainer({
55-
Image: "rivetdev/sandbox-agent:0.5.0-rc.2-full",
55+
Image: "rivetdev/sandbox-agent:0.4.1-full",
5656
Cmd: ["server", "--no-token", "--host", "0.0.0.0", "--port", `${PORT}`],
5757
Env: [
5858
`ANTHROPIC_API_KEY=${process.env.ANTHROPIC_API_KEY}`,
@@ -86,7 +86,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
8686
bash ca-certificates curl git && \
8787
rm -rf /var/lib/apt/lists/*
8888

89-
RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/0.5.x/install.sh | sh && \
89+
RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/0.4.x/install.sh | sh && \
9090
sandbox-agent install-agent --all
9191

9292
RUN useradd -m -s /bin/bash sandbox

docs/deploy/e2b.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: "Deploy Sandbox Agent inside an E2B sandbox."
1111
## TypeScript example
1212

1313
```bash
14-
npm install sandbox-agent@0.5.x @e2b/code-interpreter
14+
npm install sandbox-agent@0.4.x @e2b/code-interpreter
1515
```
1616

1717
```typescript

0 commit comments

Comments
 (0)