@agent-harness-experimental/adapter-pi 0.0.0 → 0.0.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/LICENSE +1 -0
- package/README.md +101 -2
- package/dist/adapter.d.ts +18 -0
- package/dist/adapter.d.ts.map +1 -0
- package/dist/adapter.js +143 -0
- package/dist/adapter.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/model-resolver.d.mts +31 -0
- package/dist/model-resolver.d.mts.map +1 -0
- package/dist/model-resolver.mjs +42 -0
- package/dist/model-resolver.mjs.map +1 -0
- package/dist/model-resolver.mts +76 -0
- package/dist/prepare-step-extension.d.ts +31 -0
- package/dist/prepare-step-extension.d.ts.map +1 -0
- package/dist/prepare-step-extension.js +48 -0
- package/dist/prepare-step-extension.js.map +1 -0
- package/dist/remote-ops.d.ts +40 -0
- package/dist/remote-ops.d.ts.map +1 -0
- package/dist/remote-ops.js +217 -0
- package/dist/remote-ops.js.map +1 -0
- package/dist/setup.d.ts +6 -0
- package/dist/setup.d.ts.map +1 -0
- package/dist/setup.js +56 -0
- package/dist/setup.js.map +1 -0
- package/dist/shared.d.ts +7 -0
- package/dist/shared.d.ts.map +1 -0
- package/dist/shared.js +41 -0
- package/dist/shared.js.map +1 -0
- package/dist/split-runtime-support.d.ts +92 -0
- package/dist/split-runtime-support.d.ts.map +1 -0
- package/dist/split-runtime-support.js +429 -0
- package/dist/split-runtime-support.js.map +1 -0
- package/dist/split-runtime.d.ts +63 -0
- package/dist/split-runtime.d.ts.map +1 -0
- package/dist/split-runtime.js +894 -0
- package/dist/split-runtime.js.map +1 -0
- package/dist/workspace-mirror.d.ts +8 -0
- package/dist/workspace-mirror.d.ts.map +1 -0
- package/dist/workspace-mirror.js +150 -0
- package/dist/workspace-mirror.js.map +1 -0
- package/dist/workspace-vfs.d.ts +8 -0
- package/dist/workspace-vfs.d.ts.map +1 -0
- package/dist/workspace-vfs.js +300 -0
- package/dist/workspace-vfs.js.map +1 -0
- package/package.json +59 -3
package/package.json
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-harness-experimental/adapter-pi",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"
|
|
5
|
-
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Experimental Pi adapter for agent-harness-experimental.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/vercel-labs/agent-harness-sdk.git",
|
|
9
|
+
"directory": "packages/adapter-pi"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/vercel-labs/agent-harness-sdk/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/vercel-labs/agent-harness-sdk#readme",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"agent",
|
|
17
|
+
"harness",
|
|
18
|
+
"experimental",
|
|
19
|
+
"ai-sdk",
|
|
20
|
+
"sandbox"
|
|
21
|
+
],
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"default": "./dist/index.js"
|
|
30
|
+
},
|
|
31
|
+
"./setup": {
|
|
32
|
+
"types": "./dist/setup.d.ts",
|
|
33
|
+
"default": "./dist/setup.js"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@mariozechner/pi-coding-agent": "^0.73.1",
|
|
38
|
+
"@sinclair/typebox": "^0.34.49",
|
|
39
|
+
"zod": "^4.3.6",
|
|
40
|
+
"agent-harness-experimental": "0.0.1",
|
|
41
|
+
"@agent-harness-experimental/sandbox-vercel": "0.0.1",
|
|
42
|
+
"@agent-harness-experimental/protocol": "0.0.1"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"ai": "7.0.0-canary.126",
|
|
46
|
+
"typescript": "^5.8.3",
|
|
47
|
+
"@agent-harness-experimental/test-utils": "0.0.1"
|
|
48
|
+
},
|
|
49
|
+
"main": "./dist/index.js",
|
|
50
|
+
"types": "./dist/index.d.ts",
|
|
51
|
+
"sideEffects": false,
|
|
52
|
+
"files": [
|
|
53
|
+
"dist"
|
|
54
|
+
],
|
|
55
|
+
"scripts": {
|
|
56
|
+
"lint": "biome check src package.json tsconfig.json tsconfig.build.json",
|
|
57
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
58
|
+
"test": "vitest run --config ../../vitest.package.config.ts src/*.test.ts",
|
|
59
|
+
"build": "tsc -p tsconfig.build.json && tsx ../../scripts/copy-package-assets.ts packages/adapter-pi"
|
|
60
|
+
}
|
|
61
|
+
}
|