@karowanorg/orc-harness-claude 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -194,6 +194,9 @@ async function* invokeSdk(req, ctx) {
194
194
  enabled: true,
195
195
  failIfUnavailable: true,
196
196
  allowUnsandboxedCommands: false,
197
+ ...(req.networkAccess
198
+ ? { network: { allowedDomains: ["*"], allowLocalBinding: true } }
199
+ : {}),
197
200
  filesystem: { allowWrite: roots },
198
201
  },
199
202
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@karowanorg/orc-harness-claude",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "license": "0BSD",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "dependencies": {
8
- "@karowanorg/orc-core": "^0.1.1",
8
+ "@karowanorg/orc-core": "^0.1.2",
9
9
  "@karowanorg/orc-executors": "^0.1.1",
10
10
  "@anthropic-ai/claude-agent-sdk": "^0.3.0",
11
11
  "zod": "^4.1.0"