@blade-ai/orca 0.2.56-linux-x64 → 0.3.0-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
|
@@ -9,7 +9,7 @@ runs locally, and is MIT licensed.
|
|
|
9
9
|
|
|
10
10
|
[English](README.md) · [简体中文](README.zh-CN.md) · [日本語](README.ja-JP.md) · [Tiếng Việt](README.vi.md) · [한국어](README.ko-KR.md) · [Español](README.es-419.md) · [Português](README.pt-BR.md)
|
|
11
11
|
|
|
12
|
-
[Website](https://orcaagent.dev/) · [Changelog](https://orcaagent.dev/changelog/) · [Releases](https://github.com/echoVic/
|
|
12
|
+
[Website](https://orcaagent.dev/) · [Changelog](https://orcaagent.dev/changelog/) · [Releases](https://github.com/echoVic/orca-agent/releases/latest) · [npm](https://www.npmjs.com/package/@blade-ai/orca)
|
|
13
13
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
@@ -23,8 +23,27 @@ Or install the native binary directly:
|
|
|
23
23
|
curl -fsSL https://orcaagent.dev/install.sh | sh
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
On Windows PowerShell:
|
|
27
|
+
|
|
28
|
+
```powershell
|
|
29
|
+
irm https://orcaagent.dev/install.ps1 | iex
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
From a project directory, provision its restricted sandbox capability with:
|
|
33
|
+
|
|
34
|
+
```powershell
|
|
35
|
+
& ([scriptblock]::Create((irm https://orcaagent.dev/install.ps1))) -SetupSandbox
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
The npm package supports macOS, Linux, and Windows on ARM64 and x64. Prebuilt
|
|
39
|
+
archives are also available from [GitHub Releases](https://github.com/echoVic/orca-agent/releases/latest).
|
|
40
|
+
|
|
41
|
+
On Windows, Orca prefers PowerShell 7 and detects its standard installation
|
|
42
|
+
path even when it is absent from `PATH`. Restricted sessions fall back to
|
|
43
|
+
`cmd.exe` when PowerShell 7 is unavailable. Windows PowerShell 5.1 remains an
|
|
44
|
+
explicit option only for modes that do not require AppContainer isolation.
|
|
45
|
+
Protocol command arrays are launched as native Windows argv without shell
|
|
46
|
+
re-parsing; legacy string commands use the resolved shell dialect.
|
|
28
47
|
|
|
29
48
|
## Use
|
|
30
49
|
|
|
@@ -37,6 +56,9 @@ orca exec --verifier "cargo test" "fix it" # verify before finishing
|
|
|
37
56
|
orca --mode=acp # connect an ACP client
|
|
38
57
|
```
|
|
39
58
|
|
|
59
|
+
On Windows PowerShell, set the key with `$env:DEEPSEEK_API_KEY = "sk-..."`;
|
|
60
|
+
the `orca` commands are the same.
|
|
61
|
+
|
|
40
62
|
In the TUI, `@` searches files, skills, plugins, and MCP resources. Use
|
|
41
63
|
`/plan` for read-only planning, `/goal` for a persistent objective,
|
|
42
64
|
`/workflows` for background work, and `/trust` to manage the current folder's
|
|
@@ -81,8 +103,8 @@ More detail:
|
|
|
81
103
|
Read [CONTRIBUTING.md](CONTRIBUTING.md) before contributing. Open an issue first
|
|
82
104
|
for large or compatibility-sensitive changes.
|
|
83
105
|
|
|
84
|
-
- [Report a bug](https://github.com/echoVic/
|
|
85
|
-
- [Request a feature](https://github.com/echoVic/
|
|
106
|
+
- [Report a bug](https://github.com/echoVic/orca-agent/issues/new?template=bug_report.yml)
|
|
107
|
+
- [Request a feature](https://github.com/echoVic/orca-agent/issues/new?template=feature_request.yml)
|
|
86
108
|
- [Ask for help](SUPPORT.md)
|
|
87
109
|
- [Report a vulnerability](SECURITY.md)
|
|
88
110
|
|
package/package.json
CHANGED
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"node": ">=16"
|
|
15
15
|
},
|
|
16
16
|
"name": "@blade-ai/orca",
|
|
17
|
-
"version": "0.
|
|
18
|
-
"description": "Native Orca binary for
|
|
17
|
+
"version": "0.3.0-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 eb004d0..d1b8e5f 100755
|
|
|
Binary file
|