@blade-ai/orca 0.2.44-linux-x64 → 0.2.45-darwin-arm64
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/README.md
CHANGED
|
@@ -228,6 +228,16 @@ Options:
|
|
|
228
228
|
Mention input creates a binding; plain `@...` text stays literal. See
|
|
229
229
|
[the harness contract](docs/harness-contract.md)
|
|
230
230
|
|
|
231
|
+
Approval modes also select the default execution boundary:
|
|
232
|
+
|
|
233
|
+
- `suggest` asks before mutating or external actions.
|
|
234
|
+
- `auto-edit` runs actions without interruption while keeping the workspace
|
|
235
|
+
sandbox; requests to write outside it, use blocked network access, or retry
|
|
236
|
+
without a sandbox still require a permission response.
|
|
237
|
+
- `full-auto` enables full access (`danger-full-access`) and does not fall back
|
|
238
|
+
to a post-failure permission prompt for sandbox escape.
|
|
239
|
+
- `plan` keeps the shell read-only and denies mutations.
|
|
240
|
+
|
|
231
241
|
## Workflows
|
|
232
242
|
|
|
233
243
|
`orca workflow run <script-or-name>` runs an Orca dynamic workflow.
|
|
@@ -332,7 +342,7 @@ MCP tools and custom external tools can be added at startup. External tools live
|
|
|
332
342
|
- **Context Window**: DeepSeek V4 1M-token context, 80% threshold compaction with response reserve (preserves system + recent messages)
|
|
333
343
|
- **Conversation History**: Local JSONL transcripts support listing, inspection, resume/fork, full-text search, archive/delete/rename, and zstd compression
|
|
334
344
|
- **HTTP Client**: Singleton with 30s connect / 120s request / 300s streaming timeouts, exponential backoff retry (3 attempts, handles 429/5xx)
|
|
335
|
-
- **Approval Policy**: Tool capabilities drive approval;
|
|
345
|
+
- **Approval Policy**: Tool capabilities drive approval; `suggest` prompts for mutating or external actions, `auto-edit` allows actions inside its workspace sandbox, `full-auto` combines automatic approval with `danger-full-access`, and `plan` denies mutations
|
|
336
346
|
- **Verification**: Optional post-completion verifier command with pass/fail status
|
|
337
347
|
- **Release Gate**: `scripts/release/verify-published.mjs` checks the GitHub Release, npm registry, and `npm exec` smoke path after publishing
|
|
338
348
|
|
package/package.json
CHANGED
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"node": ">=16"
|
|
15
15
|
},
|
|
16
16
|
"name": "@blade-ai/orca",
|
|
17
|
-
"version": "0.2.
|
|
18
|
-
"description": "Native Orca binary for
|
|
17
|
+
"version": "0.2.45-darwin-arm64",
|
|
18
|
+
"description": "Native Orca binary for darwin/arm64.",
|
|
19
19
|
"os": [
|
|
20
|
-
"
|
|
20
|
+
"darwin"
|
|
21
21
|
],
|
|
22
22
|
"cpu": [
|
|
23
|
-
"
|
|
23
|
+
"arm64"
|
|
24
24
|
]
|
|
25
25
|
}
|
|
index ffe68e4..0ccb7df 100755
|
|
|
Binary file
|