@blade-ai/orca 0.2.46-linux-x64 → 0.2.47-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
|
@@ -33,7 +33,7 @@ Set `INSTALL_DIR` to choose a destination and `ORCA_VERSION` to pin a version:
|
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
curl -fsSL https://orcaagent.dev/install.sh | \
|
|
36
|
-
INSTALL_DIR=/usr/local/bin ORCA_VERSION=0.2.
|
|
36
|
+
INSTALL_DIR=/usr/local/bin ORCA_VERSION=0.2.47 sh
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
### GitHub Releases
|
|
@@ -356,6 +356,34 @@ When `--output-format jsonl` is used, each line is a versioned event:
|
|
|
356
356
|
|
|
357
357
|
Event types: `session.started`, `turn.started`, `assistant.reasoning.delta`, `assistant.message.delta`, `provider.replay.updated`, `approval.requested`, `approval.resolved`, `tool.call.requested`, `tool.call.completed`, `subagent.started`, `subagent.completed`, `verification.started`, `verification.completed`, `error`, `session.completed`.
|
|
358
358
|
|
|
359
|
+
## Agent Client Protocol (ACP)
|
|
360
|
+
|
|
361
|
+
Orca supports the [Agent Client Protocol](https://agentclientprotocol.com) as a
|
|
362
|
+
parallel entry point alongside the internal JSONL protocol. This lets code
|
|
363
|
+
editors (Zed, etc.) communicate with Orca using the standard ACP JSON-RPC wire
|
|
364
|
+
format over stdio.
|
|
365
|
+
|
|
366
|
+
```bash
|
|
367
|
+
orca --mode=acp
|
|
368
|
+
```
|
|
369
|
+
|
|
370
|
+
The ACP adapter projects protocol messages onto existing internals:
|
|
371
|
+
|
|
372
|
+
| ACP method | Orca mechanism |
|
|
373
|
+
|---|---|
|
|
374
|
+
| `session/new` | `RuntimeHost::start_thread` |
|
|
375
|
+
| `session/load` | Resume from conversation history |
|
|
376
|
+
| `session/prompt` | `RuntimeThreadHandle::start_turn_with_config` |
|
|
377
|
+
| `session/update` | `EventObserver` → projected `SessionUpdate` |
|
|
378
|
+
| `session/cancel` | `OperationHandle::interrupt()` |
|
|
379
|
+
|
|
380
|
+
Supported methods: `initialize`, `authenticate` (no-op), `session/new`,
|
|
381
|
+
`session/load`, `session/prompt`, `session/cancel`, plus streaming
|
|
382
|
+
`session/update` notifications (message chunks, reasoning chunks, tool calls,
|
|
383
|
+
tool call updates, and plan updates).
|
|
384
|
+
|
|
385
|
+
The internal JSONL protocol (`--mode=server`) remains unchanged and available.
|
|
386
|
+
|
|
359
387
|
## Exit Codes
|
|
360
388
|
|
|
361
389
|
- `0`: success
|
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.47-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 1d76dbd..5d51b03 100755
|
|
|
Binary file
|