@karowanorg/orc-ops 0.1.1 → 0.1.2
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/dist/ops.d.ts +1 -0
- package/dist/ops.js +2 -0
- package/package.json +4 -4
package/dist/ops.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export declare const launch: OpDef<z.ZodObject<{
|
|
|
36
36
|
}>>;
|
|
37
37
|
sandbox: z.ZodDefault<z.ZodBoolean>;
|
|
38
38
|
sandboxDirs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
39
|
+
networkAccess: z.ZodDefault<z.ZodBoolean>;
|
|
39
40
|
maxParallel: z.ZodOptional<z.ZodNumber>;
|
|
40
41
|
idleTimeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
41
42
|
budget: z.ZodOptional<z.ZodNumber>;
|
package/dist/ops.js
CHANGED
|
@@ -30,6 +30,7 @@ export const launch = defineOp({
|
|
|
30
30
|
approvalMode: ApprovalMode.default("auto").describe("manual | accept-edits | auto | bypass"),
|
|
31
31
|
sandbox: z.boolean().default(false).describe("confine write leaves to cwd + sandboxDirs (default: unconfined, like the caller)"),
|
|
32
32
|
sandboxDirs: z.array(z.string()).optional().describe("extra writable roots when sandboxed (e.g. cache dirs outside the workspace)"),
|
|
33
|
+
networkAccess: z.boolean().default(false).describe("permit outbound network while retaining filesystem sandboxing"),
|
|
33
34
|
maxParallel: z.number().int().min(1).max(64).optional(),
|
|
34
35
|
idleTimeoutSeconds: z.number().int().optional().describe("run default for the per-call output-idle watchdog; 0 disables"),
|
|
35
36
|
budget: z.number().positive().optional().describe("reactive USD cap: fail the run once observed estimated cost exceeds this (may overshoot)"),
|
|
@@ -46,6 +47,7 @@ export const launch = defineOp({
|
|
|
46
47
|
approvalMode: input.approvalMode,
|
|
47
48
|
sandbox: input.sandbox,
|
|
48
49
|
sandboxDirs: input.sandboxDirs,
|
|
50
|
+
networkAccess: input.networkAccess,
|
|
49
51
|
maxParallel: input.maxParallel,
|
|
50
52
|
idleTimeout: input.idleTimeoutSeconds === undefined
|
|
51
53
|
? undefined
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karowanorg/orc-ops",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"license": "0BSD",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@karowanorg/orc-core": "^0.1.
|
|
8
|
+
"@karowanorg/orc-core": "^0.1.2",
|
|
9
9
|
"@karowanorg/orc-executors": "^0.1.1",
|
|
10
|
-
"@karowanorg/orc-harness-claude": "^0.1.
|
|
11
|
-
"@karowanorg/orc-harness-codex": "^0.1.
|
|
10
|
+
"@karowanorg/orc-harness-claude": "^0.1.3",
|
|
11
|
+
"@karowanorg/orc-harness-codex": "^0.1.3",
|
|
12
12
|
"@karowanorg/orc-ui": "^0.1.1",
|
|
13
13
|
"zod": "^4.1.0"
|
|
14
14
|
},
|