@ai-sdk/harness-codex 0.0.0 → 1.0.0-canary.1

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/CHANGELOG.md ADDED
@@ -0,0 +1,21 @@
1
+ # @ai-sdk/harness-codex
2
+
3
+ ## 1.0.0-canary.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d77bed4]
8
+ - Updated dependencies [bae5e2b]
9
+ - @ai-sdk/harness@1.0.0-canary.5
10
+ - @ai-sdk/provider-utils@5.0.0-canary.47
11
+
12
+ ## 1.0.0-canary.0
13
+
14
+ ### Major Changes
15
+
16
+ - 3d9a50c: feat(harness): implement harness adapters for Claude Code, Codex, Pi
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [3d9a50c]
21
+ - @ai-sdk/harness@1.0.0-canary.4
package/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright 2023 Vercel, Inc.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,73 @@
1
+ # AI SDK - Codex Harness
2
+
3
+ `HarnessV1` adapter backed by [`@openai/codex-sdk`](https://www.npmjs.com/package/@openai/codex-sdk), which drives the `codex` CLI. The adapter ships a bridge process that runs inside a sandbox and talks to the host over a WebSocket on a sandbox-proxied loopback port.
4
+
5
+ ## Setup
6
+
7
+ ```bash
8
+ npm i @ai-sdk/harness-codex @ai-sdk/harness @ai-sdk/sandbox-vercel
9
+ ```
10
+
11
+ The bridge installs `@openai/codex-sdk` (and the `codex` CLI it depends on) inside the sandbox the first time the session starts.
12
+
13
+ ## Usage
14
+
15
+ ```ts
16
+ import { HarnessAgent } from '@ai-sdk/harness/agent';
17
+ import { createCodex } from '@ai-sdk/harness-codex';
18
+ import { createVercelSandbox } from '@ai-sdk/sandbox-vercel';
19
+ import { tool } from 'ai';
20
+ import { z } from 'zod/v4';
21
+
22
+ const agent = new HarnessAgent({
23
+ harness: createCodex(),
24
+ id: 'demo',
25
+ sandbox: createVercelSandbox({
26
+ runtime: 'node24',
27
+ ports: [4000],
28
+ }),
29
+ tools: {
30
+ deploy: tool({
31
+ description: 'Deploy a service.',
32
+ inputSchema: z.object({ env: z.enum(['staging', 'production']) }),
33
+ execute: async ({ env }) => ({ url: `https://${env}.example.com` }),
34
+ }),
35
+ },
36
+ harnessOptions: {
37
+ codex: { reasoningEffort: 'high' },
38
+ },
39
+ });
40
+ ```
41
+
42
+ > Codex does not auto-discover a skills directory the way the `claude` CLI
43
+ > does, so when you supply `skills: [...]` on the factory the adapter
44
+ > injects every skill inline into the user prompt on each turn. Use fewer,
45
+ > larger skills rather than many tiny ones.
46
+
47
+ ```ts
48
+ const agent = new HarnessAgent({
49
+ harness: createCodex({
50
+ skills: [
51
+ { name: 'haiku-mode', description: 'Answer in haikus.', content: '...' },
52
+ ],
53
+ }),
54
+ sandbox: createVercelSandbox({
55
+ runtime: 'node24',
56
+ ports: [4000],
57
+ }),
58
+ });
59
+
60
+ const session = await agent.createSession();
61
+
62
+ try {
63
+ const result = await agent.generate({
64
+ session,
65
+ prompt: 'List the files in this workspace and describe their purpose.',
66
+ });
67
+ console.log(result.text);
68
+ } finally {
69
+ await session.destroy();
70
+ }
71
+ ```
72
+
73
+ The adapter requires a `HarnessV1SandboxProvider` whose handles expose at least one port — `@ai-sdk/sandbox-vercel` is the supported choice today. The agent calls `provider.createSession()` when a session starts. Use `session.detach()` to park the bridge and sandbox, `session.stop()` to save state and stop the sandbox, or `session.destroy()` to clean up without keeping resume state.
@@ -0,0 +1,105 @@
1
+ #!/usr/bin/env node
2
+
3
+ // src/bridge/host-tool-mcp.ts
4
+ import * as mcpServerModule from "@modelcontextprotocol/sdk/server/mcp.js";
5
+ import * as mcpStdioModule from "@modelcontextprotocol/sdk/server/stdio.js";
6
+ import { z } from "zod";
7
+ var { McpServer } = mcpServerModule;
8
+ var { StdioServerTransport } = mcpStdioModule;
9
+ var schemas = JSON.parse(process.env.TOOL_SCHEMAS || "[]");
10
+ var relayUrl = process.env.TOOL_RELAY_URL || "";
11
+ var relayToken = process.env.TOOL_RELAY_TOKEN || "";
12
+ if (!schemas.length || !relayUrl) {
13
+ process.stderr.write(
14
+ "[host-tool-mcp] Missing TOOL_SCHEMAS or TOOL_RELAY_URL; exiting\n"
15
+ );
16
+ process.exit(0);
17
+ }
18
+ var server = new McpServer({ name: "harness-tools", version: "1.0.0" });
19
+ for (const schema of schemas) {
20
+ const shape = toZodShape(schema.inputSchema);
21
+ server.tool(
22
+ schema.name,
23
+ schema.description ?? "",
24
+ shape,
25
+ async (input) => {
26
+ const requestId = crypto.randomUUID();
27
+ try {
28
+ const res = await fetch(relayUrl, {
29
+ method: "POST",
30
+ headers: {
31
+ "Content-Type": "application/json",
32
+ ...relayToken ? { Authorization: `Bearer ${relayToken}` } : {}
33
+ },
34
+ body: JSON.stringify({ requestId, toolName: schema.name, input })
35
+ });
36
+ if (!res.ok) {
37
+ const body = await res.text();
38
+ throw new Error(
39
+ `Tool relay ${schema.name} failed with ${res.status}: ${body.slice(0, 500)}`
40
+ );
41
+ }
42
+ const data = await res.json();
43
+ return {
44
+ content: [
45
+ {
46
+ type: "text",
47
+ text: JSON.stringify(data.result ?? null)
48
+ }
49
+ ]
50
+ };
51
+ } catch (err) {
52
+ return {
53
+ content: [{ type: "text", text: `Error: ${String(err)}` }],
54
+ isError: true
55
+ };
56
+ }
57
+ }
58
+ );
59
+ }
60
+ function toZodShape(schema) {
61
+ if (!schema?.properties) return {};
62
+ const required = new Set(schema.required ?? []);
63
+ const shape = {};
64
+ for (const [key, propSchema] of Object.entries(schema.properties)) {
65
+ const propType = toZodType(propSchema);
66
+ shape[key] = required.has(key) ? propType : propType.optional();
67
+ }
68
+ return shape;
69
+ }
70
+ function toZodType(schema) {
71
+ if (!schema) return z.any();
72
+ const types = Array.isArray(schema.type) ? schema.type.filter((t) => t !== "null") : [schema.type].filter(Boolean);
73
+ let zType;
74
+ switch (types[0]) {
75
+ case "string":
76
+ zType = z.string();
77
+ break;
78
+ case "number":
79
+ zType = z.number();
80
+ break;
81
+ case "integer":
82
+ zType = z.number().int();
83
+ break;
84
+ case "boolean":
85
+ zType = z.boolean();
86
+ break;
87
+ case "array":
88
+ zType = z.array(toZodType(schema.items));
89
+ break;
90
+ case "object":
91
+ zType = z.object(toZodShape(schema));
92
+ break;
93
+ case "null":
94
+ zType = z.null();
95
+ break;
96
+ default:
97
+ zType = z.any();
98
+ }
99
+ if (schema.description) zType = zType.describe(schema.description);
100
+ if (schema.nullable) zType = zType.nullable();
101
+ return zType;
102
+ }
103
+ var transport = new StdioServerTransport();
104
+ await server.connect(transport);
105
+ //# sourceMappingURL=host-tool-mcp.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/bridge/host-tool-mcp.ts"],"sourcesContent":["#!/usr/bin/env node\n// MCP-stdio tool server spawned by the codex CLI when\n// `mcp_servers.harness-tools` is configured. Exposes host-defined tools\n// over MCP-stdio and round-trips each call to the bridge's HTTP relay.\n//\n// Env vars (set by the bridge when starting a turn):\n// TOOL_SCHEMAS — JSON array of { name, description, inputSchema }\n// TOOL_RELAY_URL — http://127.0.0.1:<port> of the bridge relay server\n// TOOL_RELAY_TOKEN — bearer token required by the relay\n\n/*\n * CONSTRAINT — the third-party imports below are NEVER bundled into the\n * compiled `bridge/host-tool-mcp.mjs`. They are declared `external` in\n * tsup.config.ts and resolved at runtime from the node_modules that the\n * bridge installs *inside the sandbox* from `src/bridge/package.json` (and\n * its pinned `pnpm-lock.yaml`). That bridge package.json — NOT this host\n * package — is the single source of truth for these packages and their\n * versions; the published `@ai-sdk/harness-codex` package does not provide\n * them at runtime.\n *\n * When adding or changing a third-party import here you MUST keep all three\n * in sync, or this server will either get the dependency bundled in or fail\n * to resolve it in the sandbox:\n * 1. the import statement below,\n * 2. the `external` array in tsup.config.ts, and\n * 3. the dependency entry in `src/bridge/package.json`.\n */\nimport * as mcpServerModule from '@modelcontextprotocol/sdk/server/mcp.js';\nimport * as mcpStdioModule from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { z } from 'zod';\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst { McpServer } = mcpServerModule as any;\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst { StdioServerTransport } = mcpStdioModule as any;\n\ntype ToolSchema = {\n name: string;\n description?: string;\n inputSchema?: JsonSchemaObject;\n};\n\ntype JsonSchemaObject = {\n type?: string | string[];\n description?: string;\n properties?: Record<string, JsonSchemaObject>;\n required?: string[];\n items?: JsonSchemaObject;\n enum?: unknown[];\n const?: unknown;\n oneOf?: JsonSchemaObject[];\n anyOf?: JsonSchemaObject[];\n additionalProperties?: boolean | JsonSchemaObject;\n nullable?: boolean;\n};\n\nconst schemas: ToolSchema[] = JSON.parse(process.env.TOOL_SCHEMAS || '[]');\nconst relayUrl = process.env.TOOL_RELAY_URL || '';\nconst relayToken = process.env.TOOL_RELAY_TOKEN || '';\n\nif (!schemas.length || !relayUrl) {\n process.stderr.write(\n '[host-tool-mcp] Missing TOOL_SCHEMAS or TOOL_RELAY_URL; exiting\\n',\n );\n process.exit(0);\n}\n\nconst server = new McpServer({ name: 'harness-tools', version: '1.0.0' });\n\nfor (const schema of schemas) {\n const shape = toZodShape(schema.inputSchema);\n server.tool(\n schema.name,\n schema.description ?? '',\n shape,\n async (input: Record<string, unknown>) => {\n const requestId = crypto.randomUUID();\n try {\n const res = await fetch(relayUrl, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n ...(relayToken ? { Authorization: `Bearer ${relayToken}` } : {}),\n },\n body: JSON.stringify({ requestId, toolName: schema.name, input }),\n });\n if (!res.ok) {\n const body = await res.text();\n throw new Error(\n `Tool relay ${schema.name} failed with ${res.status}: ${body.slice(0, 500)}`,\n );\n }\n const data = (await res.json()) as { result?: unknown };\n return {\n content: [\n {\n type: 'text' as const,\n text: JSON.stringify(data.result ?? null),\n },\n ],\n };\n } catch (err) {\n return {\n content: [{ type: 'text' as const, text: `Error: ${String(err)}` }],\n isError: true,\n };\n }\n },\n );\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction toZodShape(schema: JsonSchemaObject | undefined): Record<string, any> {\n if (!schema?.properties) return {};\n const required = new Set(schema.required ?? []);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const shape: Record<string, any> = {};\n for (const [key, propSchema] of Object.entries(schema.properties)) {\n const propType = toZodType(propSchema);\n shape[key] = required.has(key) ? propType : propType.optional();\n }\n return shape;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction toZodType(schema: JsonSchemaObject | undefined): any {\n if (!schema) return z.any();\n const types = Array.isArray(schema.type)\n ? schema.type.filter((t): t is string => t !== 'null')\n : ([schema.type].filter(Boolean) as string[]);\n let zType;\n switch (types[0]) {\n case 'string':\n zType = z.string();\n break;\n case 'number':\n zType = z.number();\n break;\n case 'integer':\n zType = z.number().int();\n break;\n case 'boolean':\n zType = z.boolean();\n break;\n case 'array':\n zType = z.array(toZodType(schema.items));\n break;\n case 'object':\n zType = z.object(toZodShape(schema));\n break;\n case 'null':\n zType = z.null();\n break;\n default:\n zType = z.any();\n }\n if (schema.description) zType = zType.describe(schema.description);\n if (schema.nullable) zType = zType.nullable();\n return zType;\n}\n\nconst transport = new StdioServerTransport();\nawait server.connect(transport);\n"],"mappings":"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","names":[]}