@blade-ai/orca 0.1.8-linux-x64 → 0.1.9-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.1.8 sh
36
+ INSTALL_DIR=/usr/local/bin ORCA_VERSION=0.1.9 sh
37
37
  ```
38
38
 
39
39
  ### GitHub Releases
@@ -75,6 +75,16 @@ api_key = "sk-..."
75
75
  base_url = "https://api.deepseek.com"
76
76
  ```
77
77
 
78
+ ### Updates
79
+
80
+ When `update_check` is enabled, Orca checks GitHub Releases before opening the interactive TUI. If a newer release is available, Orca shows a startup prompt with `Update now`, `Skip`, and `Skip until next version`. Choosing `Update now` runs the npm upgrade command and exits; choosing either skip option continues into the TUI.
81
+
82
+ Disable the startup check with:
83
+
84
+ ```toml
85
+ update_check = false
86
+ ```
87
+
78
88
  Hooks may return structured JSON on stdout. `{"action":"deny","reason":"..."}` blocks, `{"action":"modify","modified_target":"..."}` rewrites a tool target, and `{"action":"inject","context":"..."}` adds model context. Plain non-JSON stdout is treated as injected context for compatibility. Supported events are `session_start`, `session_end`, `pre_tool_use`, `post_tool_use`, `pre_model_call`, `post_model_call`, `on_budget_warning`, `pre_compact`, and `post_compact`.
79
89
 
80
90
  Custom tools can be added with TOML descriptors under `~/.orca/tools/`:
package/package.json CHANGED
@@ -12,12 +12,12 @@
12
12
  "node": ">=16"
13
13
  },
14
14
  "name": "@blade-ai/orca",
15
- "version": "0.1.8-linux-x64",
16
- "description": "Native Orca binary for linux/x64.",
15
+ "version": "0.1.9-darwin-arm64",
16
+ "description": "Native Orca binary for darwin/arm64.",
17
17
  "os": [
18
- "linux"
18
+ "darwin"
19
19
  ],
20
20
  "cpu": [
21
- "x64"
21
+ "arm64"
22
22
  ]
23
23
  }
index 034fa3d..e0e95ac 100755
Binary file