@blade-ai/orca 0.1.1-linux-x64 → 0.1.2-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
|
@@ -22,6 +22,20 @@ Supported npm platforms:
|
|
|
22
22
|
- Linux x64 (`linux/x64`)
|
|
23
23
|
- Linux ARM64 (`linux/arm64`)
|
|
24
24
|
|
|
25
|
+
### curl
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
curl -fsSL https://raw.githubusercontent.com/echoVic/blade-deepseek/main/install.sh | sh
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
The installer downloads the native binary for your platform from GitHub Releases.
|
|
32
|
+
Set `INSTALL_DIR` to choose a destination and `ORCA_VERSION` to pin a version:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
curl -fsSL https://raw.githubusercontent.com/echoVic/blade-deepseek/main/install.sh | \
|
|
36
|
+
INSTALL_DIR=/usr/local/bin ORCA_VERSION=0.1.2 sh
|
|
37
|
+
```
|
|
38
|
+
|
|
25
39
|
### GitHub Releases
|
|
26
40
|
|
|
27
41
|
Download the archive for your platform from the latest GitHub Release, extract it, and place `orca` on your `PATH`.
|
|
@@ -111,9 +125,9 @@ Options:
|
|
|
111
125
|
|
|
112
126
|
## Workflows
|
|
113
127
|
|
|
114
|
-
`orca workflow run <script-or-name>` runs
|
|
115
|
-
Named workflows resolve from the nearest `.
|
|
116
|
-
then `~/.
|
|
128
|
+
`orca workflow run <script-or-name>` runs an Orca dynamic workflow.
|
|
129
|
+
Named workflows resolve from the nearest `.orca/workflows/` directory first,
|
|
130
|
+
then `~/.orca/workflows/`. Project workflows win over user workflows.
|
|
117
131
|
|
|
118
132
|
Workflow scripts are JavaScript modules beginning with:
|
|
119
133
|
|
package/package.json
CHANGED
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"node": ">=16"
|
|
13
13
|
},
|
|
14
14
|
"name": "@blade-ai/orca",
|
|
15
|
-
"version": "0.1.
|
|
16
|
-
"description": "Native Orca binary for
|
|
15
|
+
"version": "0.1.2-darwin-arm64",
|
|
16
|
+
"description": "Native Orca binary for darwin/arm64.",
|
|
17
17
|
"os": [
|
|
18
|
-
"
|
|
18
|
+
"darwin"
|
|
19
19
|
],
|
|
20
20
|
"cpu": [
|
|
21
|
-
"
|
|
21
|
+
"arm64"
|
|
22
22
|
]
|
|
23
23
|
}
|
|
index 33e7857..f6d5518 100755
|
|
|
Binary file
|