@coder/ai-sdk-sandbox 0.3.0 → 0.4.0
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.
- package/README.md +84 -24
- package/dist/index.d.ts +68 -9
- package/dist/index.js +2097 -7
- package/package.json +17 -11
package/README.md
CHANGED
|
@@ -19,12 +19,14 @@ you pass it as the `sandbox` to a `HarnessAgent` exactly like
|
|
|
19
19
|
npm add @coder/ai-sdk-sandbox @ai-sdk/harness @ai-sdk/harness-claude-code @ai-sdk/provider-utils
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
Choose one host transport:
|
|
23
23
|
|
|
24
|
-
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
-
|
|
24
|
+
- `CoderNativeTransport` connects directly to Coderd and requires no `coder` or
|
|
25
|
+
`ssh` binary on the host. Pass a deployment URL and token (see
|
|
26
|
+
[Native transport](#native-transport)).
|
|
27
|
+
- The default `CoderCliTransport` requires the
|
|
28
|
+
[`coder` CLI](https://coder.com/docs/install), an authenticated `coder login`,
|
|
29
|
+
and an OpenSSH client (`ssh`) on PATH.
|
|
28
30
|
|
|
29
31
|
## Quick start
|
|
30
32
|
|
|
@@ -55,6 +57,33 @@ try {
|
|
|
55
57
|
|
|
56
58
|
See [`examples/claude-code.ts`](./examples/claude-code.ts) for a runnable version.
|
|
57
59
|
|
|
60
|
+
### Native transport
|
|
61
|
+
|
|
62
|
+
Use `CoderNativeTransport` when the host should not depend on the Coder CLI or
|
|
63
|
+
OpenSSH:
|
|
64
|
+
|
|
65
|
+
```ts
|
|
66
|
+
import { CoderNativeTransport, createCoderWorkspace } from "@coder/ai-sdk-sandbox";
|
|
67
|
+
|
|
68
|
+
const transport = new CoderNativeTransport({
|
|
69
|
+
url: process.env.CODER_URL!,
|
|
70
|
+
token: process.env.CODER_SESSION_TOKEN!,
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
const sandbox = createCoderWorkspace({
|
|
74
|
+
workspace: "my-dev-workspace",
|
|
75
|
+
transport,
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
// When the application shuts down, close cached relay WebSockets:
|
|
79
|
+
await transport.close();
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
The constructor falls back to `CODER_URL` and `CODER_SESSION_TOKEN`, so
|
|
83
|
+
`new CoderNativeTransport()` is sufficient when both are set. The token is sent
|
|
84
|
+
only to Coderd in the `Coder-Session-Token` header; it is never copied into the
|
|
85
|
+
workspace.
|
|
86
|
+
|
|
58
87
|
## Creating workspaces on demand
|
|
59
88
|
|
|
60
89
|
Instead of pointing at an existing workspace, you can have the provider **create
|
|
@@ -96,12 +125,13 @@ createCoderWorkspace({
|
|
|
96
125
|
|
|
97
126
|
**Parameters vs. presets.** A preset's parameter values take precedence over an
|
|
98
127
|
overlapping `parameters` entry of the same name (this is Coder's behavior), so
|
|
99
|
-
set a given value via the preset _or_ `parameters`, not both.
|
|
100
|
-
|
|
101
|
-
`
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
the
|
|
128
|
+
set a given value via the preset _or_ `parameters`, not both. Every unset
|
|
129
|
+
non-ephemeral parameter must be supplied via `parameters`, `parameterFile`, or a
|
|
130
|
+
`preset`, unless `useParameterDefaults` accepts its template default. Parameters
|
|
131
|
+
marked required have no usable default and must always be supplied; otherwise
|
|
132
|
+
creation fails because it cannot prompt non-interactively. If you set a `preset`,
|
|
133
|
+
the provider preflight-validates the name against the template's presets and
|
|
134
|
+
fails fast with the available names (set `validate: false` to skip).
|
|
105
135
|
|
|
106
136
|
### Create settings
|
|
107
137
|
|
|
@@ -233,7 +263,11 @@ Because the bridge runs inside the workspace, the workspace image must have:
|
|
|
233
263
|
[Creating workspaces on demand](#creating-workspaces-on-demand)).
|
|
234
264
|
|
|
235
265
|
```ts
|
|
236
|
-
import {
|
|
266
|
+
import {
|
|
267
|
+
createCoderWorkspace,
|
|
268
|
+
CoderCliTransport,
|
|
269
|
+
CoderNativeTransport,
|
|
270
|
+
} from "@coder/ai-sdk-sandbox";
|
|
237
271
|
|
|
238
272
|
createCoderWorkspace({
|
|
239
273
|
// One of these is required (TypeScript enforces it):
|
|
@@ -254,6 +288,12 @@ createCoderWorkspace({
|
|
|
254
288
|
// url: process.env.CODER_URL, token: process.env.CODER_SESSION_TOKEN,
|
|
255
289
|
// env: {}, loginShell: true, waitMode: 'no',
|
|
256
290
|
}),
|
|
291
|
+
|
|
292
|
+
// Or connect directly to Coderd with no host CLI/OpenSSH dependency:
|
|
293
|
+
// transport: new CoderNativeTransport({
|
|
294
|
+
// url: process.env.CODER_URL,
|
|
295
|
+
// token: process.env.CODER_SESSION_TOKEN,
|
|
296
|
+
// }),
|
|
257
297
|
});
|
|
258
298
|
```
|
|
259
299
|
|
|
@@ -276,10 +316,11 @@ createCoderWorkspace({
|
|
|
276
316
|
|
|
277
317
|
The adapter binds its bridge to a port and resolves it from
|
|
278
318
|
`createClaudeCode({ port })` or, by default, `sandbox.ports[0]`. Expose that port
|
|
279
|
-
via `ports` (default `[4000]`); `getPortUrl`
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
319
|
+
via `ports` (default `[4000]`); `getPortUrl` asks the configured transport for a
|
|
320
|
+
local TCP forward and returns a loopback `ws://` URL. The CLI transport uses
|
|
321
|
+
OpenSSH `-L`; the native transport multiplexes TCP over its Coderd WebSocket.
|
|
322
|
+
The forward is plaintext on loopback, so `https`/`wss` requests resolve to their
|
|
323
|
+
`http`/`ws` loopback equivalent.
|
|
283
324
|
|
|
284
325
|
## How it works
|
|
285
326
|
|
|
@@ -290,14 +331,13 @@ bridge runs the vendor SDK in-workspace and streams events back to the host.
|
|
|
290
331
|
|
|
291
332
|
This provider maps that contract onto Coder primitives:
|
|
292
333
|
|
|
293
|
-
| Harness contract |
|
|
294
|
-
| ------------------------------------------- |
|
|
295
|
-
| `run` / `spawn` | OpenSSH
|
|
296
|
-
| `readFile` / `writeFile` / `read*`/`write*` | base64
|
|
297
|
-
| `getPortUrl({ port, protocol })` | OpenSSH `-L
|
|
298
|
-
| `
|
|
299
|
-
| `
|
|
300
|
-
| `stop` / `destroy` | `coder stop` / `coder delete` (only when it owns the lifecycle) |
|
|
334
|
+
| Harness contract | CLI transport | Native transport |
|
|
335
|
+
| ------------------------------------------- | -------------------------------------------------- | --------------------------------------------------------- |
|
|
336
|
+
| `run` / `spawn` | OpenSSH over `coder ssh --stdio` | versioned process relay over Coderd's agent PTY WebSocket |
|
|
337
|
+
| `readFile` / `writeFile` / `read*`/`write*` | base64 over SSH | base64 over the native process relay |
|
|
338
|
+
| `getPortUrl({ port, protocol })` | OpenSSH `-L` | multiplexed TCP channels over the relay |
|
|
339
|
+
| `createSession` / `resumeSession` / `id` | CLI workspace lookup | Coderd v2 REST API |
|
|
340
|
+
| `stop` / `destroy` | `coder stop` / `coder delete` when lifecycle-owned | Coderd workspace-build transitions |
|
|
301
341
|
|
|
302
342
|
**Why OpenSSH and not `coder ssh <ws> -- cmd`?** `coder ssh` allocates a PTY for
|
|
303
343
|
the command, which rewrites newlines to CRLF, merges stdout and stderr onto one
|
|
@@ -308,6 +348,15 @@ provider does the programmatic equivalent, running real OpenSSH over a
|
|
|
308
348
|
`coder ssh --stdio` ProxyCommand. That yields clean, separated streams and
|
|
309
349
|
correct exit codes (verified against a live workspace).
|
|
310
350
|
|
|
351
|
+
**How the native relay stays byte-clean.** Coderd's browser-terminal endpoint
|
|
352
|
+
is a PTY, which by itself merges stdout/stderr and has no process exit-code
|
|
353
|
+
channel. The native transport uses it only as a carrier: it bootstraps a small,
|
|
354
|
+
dependency-free Node relay, switches the PTY to raw/no-echo mode, and exchanges
|
|
355
|
+
versioned newline-delimited frames with base64 byte payloads. The relay launches
|
|
356
|
+
commands with separate pipes and also opens TCP sockets for `getPortUrl`. It
|
|
357
|
+
does not bind a workspace port or persist credentials/files; one relay is cached
|
|
358
|
+
per selected workspace agent and `transport.close()` tears it down.
|
|
359
|
+
|
|
311
360
|
The WebSocket the harness opens against `getPortUrl(...)` is the critical path,
|
|
312
361
|
and it needs no wildcard access URLs — the host running `HarnessAgent` is already
|
|
313
362
|
a Coder client. We forward via OpenSSH `-L` rather than `coder port-forward`:
|
|
@@ -326,6 +375,11 @@ and a full Claude Code turn with tool use (`scripts/e2e-claude.ts`).
|
|
|
326
375
|
workspace per session rather than leasing ports from a shared sandbox.
|
|
327
376
|
- File reads buffer the whole file (binary content moves as base64). Fine for
|
|
328
377
|
bootstrap-sized files; not intended for streaming very large files.
|
|
378
|
+
- `CoderNativeTransport` currently targets POSIX workspaces with `bash`, `stty`,
|
|
379
|
+
`base64`, and Node.js. Its default relay executable is `node`; override
|
|
380
|
+
`relayNodeCommand` when Node lives at a fixed nonstandard path.
|
|
381
|
+
- A workspace with multiple agents must be selected as `workspace.agent`; the
|
|
382
|
+
native transport refuses to guess.
|
|
329
383
|
- `@ai-sdk/sandbox-just-bash` cannot expose ports and is rejected by bridge-backed
|
|
330
384
|
adapters — this provider exists precisely to provide that port.
|
|
331
385
|
- To run Claude Code / Codex, the **workspace** image needs Node.js (the adapter
|
|
@@ -348,6 +402,12 @@ npm run check # biome check . (format + lint, read-only; for CI
|
|
|
348
402
|
# End-to-end against a real workspace (needs the coder CLI + a running workspace):
|
|
349
403
|
npm run verify:real -- my-ws
|
|
350
404
|
|
|
405
|
+
# The same contract through Coderd directly. The CLI is used only to retrieve
|
|
406
|
+
# the already-authenticated token for this shell; CoderNativeTransport never invokes it:
|
|
407
|
+
CODER_URL=https://coder.example.com \
|
|
408
|
+
CODER_SESSION_TOKEN="$(coder login token)" \
|
|
409
|
+
npm run verify:native -- my-ws
|
|
410
|
+
|
|
351
411
|
# End-to-end of create mode (creates a throwaway workspace, then deletes it):
|
|
352
412
|
npm run verify:create -- docker
|
|
353
413
|
```
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import { HarnessV1SandboxProvider, HarnessV1NetworkSandboxSession } from '@ai-sdk/harness';
|
|
1
|
+
import { HarnessV1SandboxProvider, HarnessV1NetworkSandboxSession, HarnessV1PortEndpoint } from '@ai-sdk/harness';
|
|
2
2
|
import { Experimental_SandboxSession } from '@ai-sdk/provider-utils';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Transport abstraction over a Coder workspace. The sandbox session talks to a
|
|
6
6
|
* workspace exclusively through this interface, which keeps the harness-facing
|
|
7
7
|
* session decoupled from *how* we reach Coder (the default is the `coder` CLI;
|
|
8
|
-
*
|
|
9
|
-
* or a persistent SSH/SFTP connection).
|
|
8
|
+
* {@link CoderNativeTransport} uses Coderd directly, and tests inject mocks).
|
|
10
9
|
*/
|
|
11
10
|
interface CoderTransport {
|
|
12
11
|
/** Run a command to completion, buffering stdout/stderr into strings. */
|
|
@@ -227,6 +226,62 @@ declare class CoderCliTransport implements CoderTransport {
|
|
|
227
226
|
listPresets(options: ListPresetsOptions): Promise<PresetInfo[]>;
|
|
228
227
|
}
|
|
229
228
|
|
|
229
|
+
interface CoderNativeTransportOptions {
|
|
230
|
+
/** Coder deployment URL. Defaults to `CODER_URL`. */
|
|
231
|
+
url?: string;
|
|
232
|
+
/** Coder session/API token. Defaults to `CODER_SESSION_TOKEN`. */
|
|
233
|
+
token?: string;
|
|
234
|
+
/** Custom fetch implementation, primarily for tests or custom HTTP agents. */
|
|
235
|
+
fetch?: typeof globalThis.fetch;
|
|
236
|
+
/** Additional headers sent to Coderd over both HTTP and WebSocket. */
|
|
237
|
+
headers?: Record<string, string>;
|
|
238
|
+
/** Poll interval while waiting for provisioner builds. Default: 1000ms. */
|
|
239
|
+
buildPollIntervalMs?: number;
|
|
240
|
+
/** Maximum wait for one provisioner build. Default: 30 minutes. */
|
|
241
|
+
buildTimeoutMs?: number;
|
|
242
|
+
/** Maximum wait for the workspace relay handshake. Default: 30000ms. */
|
|
243
|
+
relayConnectTimeoutMs?: number;
|
|
244
|
+
/** Node executable used inside the workspace for the relay. Default: `node`. */
|
|
245
|
+
relayNodeCommand?: string;
|
|
246
|
+
/** Run commands through `bash -lc` instead of `bash -c`. Default: true. */
|
|
247
|
+
loginShell?: boolean;
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* Native Coder transport: Coderd's REST API supplies the control plane and an
|
|
251
|
+
* authenticated workspace-agent PTY carries a small multiplexed process/TCP
|
|
252
|
+
* relay. No local `coder` or `ssh` binary is launched.
|
|
253
|
+
*/
|
|
254
|
+
declare class CoderNativeTransport implements CoderTransport {
|
|
255
|
+
#private;
|
|
256
|
+
constructor(options?: CoderNativeTransportOptions);
|
|
257
|
+
exec(options: TransportExecOptions): Promise<ExecResult>;
|
|
258
|
+
spawn(options: TransportExecOptions): SpawnedProcess;
|
|
259
|
+
forwardPort(options: ForwardPortOptions): Promise<PortForward>;
|
|
260
|
+
start(workspace: string, options?: LifecycleOptions): Promise<void>;
|
|
261
|
+
stop(workspace: string, options?: LifecycleOptions): Promise<void>;
|
|
262
|
+
destroy(workspace: string, options?: LifecycleOptions): Promise<void>;
|
|
263
|
+
status(workspace: string, options?: LifecycleOptions): Promise<WorkspaceStatus | null>;
|
|
264
|
+
create(options: CreateWorkspaceOptions): Promise<void>;
|
|
265
|
+
listPresets(options: ListPresetsOptions): Promise<PresetInfo[]>;
|
|
266
|
+
/** Close every cached workspace relay. Existing local port-forwards close too. */
|
|
267
|
+
close(): Promise<void>;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
/** Error returned for a non-success response from Coderd's v2 API. */
|
|
271
|
+
declare class CoderNativeApiError extends Error {
|
|
272
|
+
readonly status: number;
|
|
273
|
+
readonly method: string;
|
|
274
|
+
readonly path: string;
|
|
275
|
+
readonly detail?: string;
|
|
276
|
+
constructor(options: {
|
|
277
|
+
status: number;
|
|
278
|
+
method: string;
|
|
279
|
+
path: string;
|
|
280
|
+
message: string;
|
|
281
|
+
detail?: string;
|
|
282
|
+
});
|
|
283
|
+
}
|
|
284
|
+
|
|
230
285
|
/** Stable provider id reported on the {@link HarnessV1SandboxProvider}. */
|
|
231
286
|
declare const CODER_WORKSPACE_PROVIDER_ID = "coder-workspace";
|
|
232
287
|
/**
|
|
@@ -474,11 +529,10 @@ interface CoderWorkspaceSessionConfig {
|
|
|
474
529
|
/**
|
|
475
530
|
* A {@link HarnessV1NetworkSandboxSession} backed by a Coder workspace.
|
|
476
531
|
*
|
|
477
|
-
*
|
|
478
|
-
*
|
|
479
|
-
*
|
|
480
|
-
*
|
|
481
|
-
* against.
|
|
532
|
+
* The configured {@link CoderTransport} supplies process execution, lifecycle,
|
|
533
|
+
* and TCP forwarding. `getPortEndpoint` exposes a forwarded port as a local
|
|
534
|
+
* `ws://127.0.0.1:<port>` URL, which is what bridge-backed harness adapters
|
|
535
|
+
* (Claude Code, Codex) open their WebSocket against.
|
|
482
536
|
*/
|
|
483
537
|
declare class CoderWorkspaceSession implements HarnessV1NetworkSandboxSession {
|
|
484
538
|
#private;
|
|
@@ -495,6 +549,11 @@ declare class CoderWorkspaceSession implements HarnessV1NetworkSandboxSession {
|
|
|
495
549
|
readonly writeFile: (options: WriteFileOptions<ReadableStream<Uint8Array>>) => Promise<void>;
|
|
496
550
|
readonly writeBinaryFile: (options: WriteFileOptions<Uint8Array>) => Promise<void>;
|
|
497
551
|
readonly writeTextFile: (options: WriteTextFileOptions) => Promise<void>;
|
|
552
|
+
readonly getPortEndpoint: (options: {
|
|
553
|
+
port: number;
|
|
554
|
+
protocol?: "http" | "https" | "ws";
|
|
555
|
+
}) => Promise<HarnessV1PortEndpoint>;
|
|
556
|
+
/** @deprecated Kept for the `HarnessV1NetworkSandboxSession` contract; use `getPortEndpoint`. */
|
|
498
557
|
readonly getPortUrl: (options: {
|
|
499
558
|
port: number;
|
|
500
559
|
protocol?: "http" | "https" | "ws";
|
|
@@ -508,4 +567,4 @@ declare class CoderWorkspaceSession implements HarnessV1NetworkSandboxSession {
|
|
|
508
567
|
readonly restricted: () => Experimental_SandboxSession;
|
|
509
568
|
}
|
|
510
569
|
|
|
511
|
-
export { CODER_WORKSPACE_PROVIDER_ID, CoderCliTransport, type CoderCliTransportOptions, type CoderCreateSettings, type CoderTransport, type CoderWorkspaceBaseSettings, type CoderWorkspaceRef, CoderWorkspaceSession, type CoderWorkspaceSessionConfig, type CoderWorkspaceSettings, type CreateWorkspaceOptions, type EnsureCoderWorkspaceSettings, type EnsuredCoderWorkspace, type ExecResult, type ForwardPortOptions, type LifecycleOptions, type ListPresetsOptions, type PortForward, type PresetInfo, type SpawnedProcess, type TransportExecOptions, type WorkspaceAgentInfo, type WorkspaceAgentLifecycle, type WorkspaceAgentStatus, type WorkspaceBuildStatus, type WorkspaceStatus, createCoderWorkspace, ensureCoderWorkspace };
|
|
570
|
+
export { CODER_WORKSPACE_PROVIDER_ID, CoderCliTransport, type CoderCliTransportOptions, type CoderCreateSettings, CoderNativeApiError, CoderNativeTransport, type CoderNativeTransportOptions, type CoderTransport, type CoderWorkspaceBaseSettings, type CoderWorkspaceRef, CoderWorkspaceSession, type CoderWorkspaceSessionConfig, type CoderWorkspaceSettings, type CreateWorkspaceOptions, type EnsureCoderWorkspaceSettings, type EnsuredCoderWorkspace, type ExecResult, type ForwardPortOptions, type LifecycleOptions, type ListPresetsOptions, type PortForward, type PresetInfo, type SpawnedProcess, type TransportExecOptions, type WorkspaceAgentInfo, type WorkspaceAgentLifecycle, type WorkspaceAgentStatus, type WorkspaceBuildStatus, type WorkspaceStatus, createCoderWorkspace, ensureCoderWorkspace };
|