@tt-a1i/openpi 0.1.0 → 0.1.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.
@@ -30,12 +30,15 @@ export interface SandboxAgentOptions {
30
30
  provider?: unknown;
31
31
  effort?: unknown;
32
32
  isolation?: unknown;
33
+ operator?: unknown;
34
+ inputs?: unknown;
33
35
  }
34
36
 
35
37
  export interface SandboxAgentResult {
36
38
  ok: boolean;
37
39
  output: string;
38
40
  structured?: unknown;
41
+ ref?: string;
39
42
  error?: string;
40
43
  }
41
44
 
@@ -102,6 +105,8 @@ function sanitizeAgentOptions(value: unknown): SandboxAgentOptions {
102
105
  ...(value.provider !== undefined ? { provider: value.provider } : {}),
103
106
  ...(value.effort !== undefined ? { effort: value.effort } : {}),
104
107
  ...(value.isolation !== undefined ? { isolation: value.isolation } : {}),
108
+ ...(value.operator !== undefined ? { operator: value.operator } : {}),
109
+ ...(value.inputs !== undefined ? { inputs: value.inputs } : {}),
105
110
  };
106
111
  }
107
112
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@tt-a1i/openpi",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "OpenPI — a Pi-native multi-agent workbench with background execution, isolated subagents, replay-safe workflows, goals, tasks, and observable TUI",
5
- "license": "UNLICENSED",
5
+ "license": "MIT",
6
6
  "author": "tt-a1i",
7
7
  "keywords": [
8
8
  "pi-package",
@@ -14,11 +14,11 @@
14
14
  ],
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "git+https://github.com/tt-a1i/my-pi-setup.git"
17
+ "url": "git+https://github.com/tt-a1i/openpi.git"
18
18
  },
19
- "homepage": "https://github.com/tt-a1i/my-pi-setup#readme",
19
+ "homepage": "https://github.com/tt-a1i/openpi#readme",
20
20
  "bugs": {
21
- "url": "https://github.com/tt-a1i/my-pi-setup/issues"
21
+ "url": "https://github.com/tt-a1i/openpi/issues"
22
22
  },
23
23
  "files": [
24
24
  "extensions",
@@ -47,7 +47,7 @@
47
47
  "themes": [
48
48
  "./themes"
49
49
  ],
50
- "image": "https://raw.githubusercontent.com/tt-a1i/my-pi-setup/main/assets/openpi-package.png"
50
+ "image": "https://raw.githubusercontent.com/tt-a1i/openpi/main/assets/openpi-package.png"
51
51
  },
52
52
  "dependencies": {
53
53
  "@effect/platform-node": "^4.0.0-beta.99",