@sandagent/sandbox-sandock 0.8.4 → 0.8.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,7 +21,7 @@ import { SandockSandbox } from "@sandagent/sandbox-sandock";
21
21
  const sandbox = new SandockSandbox({
22
22
  apiKey: process.env.SANDOCK_API_KEY,
23
23
  workdir: "/workspace",
24
- image: "vikadata/sandagent:latest",
24
+ image: "ghcr.io/vikadata/sandagent:latest",
25
25
  skipBootstrap: true,
26
26
  });
27
27
  ```
@@ -49,7 +49,7 @@ const sandbox = new SandockSandbox({
49
49
  ```ts
50
50
  new SandockSandbox({
51
51
  apiKey: process.env.SANDOCK_API_KEY,
52
- image: "vikadata/sandagent:latest",
52
+ image: "ghcr.io/vikadata/sandagent:latest",
53
53
  skipBootstrap: true,
54
54
  workdir: "/workspace",
55
55
  });
@@ -60,7 +60,7 @@ new SandockSandbox({
60
60
  ```ts
61
61
  new SandockSandbox({
62
62
  apiKey: process.env.SANDOCK_API_KEY,
63
- image: "vikadata/sandagent:latest",
63
+ image: "ghcr.io/vikadata/sandagent:latest",
64
64
  skipBootstrap: true,
65
65
  workdir: "/workspace",
66
66
  volumes: [
@@ -77,7 +77,7 @@ Pass `sandboxId` to reattach to a previously created sandbox. The adapter will o
77
77
  ```ts
78
78
  const sandbox = new SandockSandbox({
79
79
  apiKey: process.env.SANDOCK_API_KEY,
80
- image: "vikadata/sandagent:latest",
80
+ image: "ghcr.io/vikadata/sandagent:latest",
81
81
  skipBootstrap: true,
82
82
  workdir: "/workspace",
83
83
  sandboxId: "cached-sandbox-id", // from your cache
@@ -102,7 +102,7 @@ const sandagent = createSandAgent({
102
102
  sandbox: new SandockSandbox({
103
103
  apiKey: process.env.SANDOCK_API_KEY,
104
104
  workdir: "/workspace",
105
- image: "vikadata/sandagent:latest",
105
+ image: "ghcr.io/vikadata/sandagent:latest",
106
106
  skipBootstrap: true,
107
107
  }),
108
108
  env: { ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY! },
@@ -135,7 +135,7 @@ Install: `npm install @sandagent/sandbox-sandock @sandagent/sdk ai`
135
135
 
136
136
  ## About skipBootstrap
137
137
 
138
- - **`skipBootstrap: true`**: Image already includes `sandagent run`; only upload seed files (from `templatesPath`), no runner install. Use with pre-built images like `vikadata/sandagent:latest`.
138
+ - **`skipBootstrap: true`**: Image already includes `sandagent run`; only upload seed files (from `templatesPath`), no runner install. Use with pre-built images like `ghcr.io/vikadata/sandagent:latest`.
139
139
  - **`skipBootstrap: false`**: On attach, runs `npm install @sandagent/runner-cli@latest` in `workdir`, then uses `${workdir}/node_modules/.bin/sandagent run` for execution.
140
140
 
141
141
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sandagent/sandbox-sandock",
3
- "version": "0.8.4",
3
+ "version": "0.8.6",
4
4
  "description": "Sandock sandbox adapter for SandAgent",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "sandock": "^2.2.4",
29
- "@sandagent/manager": "0.8.4"
29
+ "@sandagent/manager": "0.8.6"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^20.10.0",