@blade-ai/orca 0.1.43-linux-x64 → 0.1.44-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.43 sh
36
+ INSTALL_DIR=/usr/local/bin ORCA_VERSION=0.1.44 sh
37
37
  ```
38
38
 
39
39
  ### GitHub Releases
@@ -223,7 +223,7 @@ Built-in tools:
223
223
  | Tool | Description |
224
224
  |------|-------------|
225
225
  | `read_file` | Read file contents (UTF-8, truncated at 8KB) |
226
- | `glob` | Find files and directories by glob pattern; preferred for file discovery |
226
+ | `glob` | Find files and directories by glob pattern or fuzzy path query; preferred for file discovery |
227
227
  | `list_files` | Compatibility alias for directory listing |
228
228
  | `grep` | Search with ripgrep (regex, line numbers) |
229
229
  | `bash` | Execute shell commands via `sh -c` |
@@ -241,7 +241,7 @@ Built-in tools:
241
241
  | `list_skills` | List Markdown skills from user and project skill directories |
242
242
  | `read_skill` | Read a skill's Markdown instructions by id |
243
243
 
244
- Tools are registered through a canonical tool registry with capability metadata. Approval behavior is derived from those capabilities: read-only tools run directly, write tools follow write approval policy, shell tools follow shell approval policy, network tools follow network policy, and agent/workflow tools follow agent policy. `glob` is the model-facing file discovery tool; `list_files` remains accepted for older prompts and saved sessions. `request_user_input` stays deterministic in headless runs and becomes interactive in TUI sessions.
244
+ Tools are registered through a canonical tool registry with capability metadata. Approval behavior is derived from those capabilities: read-only tools run directly, write tools follow write approval policy, shell tools follow shell approval policy, network tools follow network policy, and agent/workflow tools follow agent policy. `glob` is the model-facing file discovery tool and supports both normal glob patterns and `mode: "fuzzy"` path queries; `list_files` remains accepted for older prompts and saved sessions. `request_user_input` stays deterministic in headless runs and becomes interactive in TUI sessions.
245
245
 
246
246
  Markdown skills live under `$ORCA_HOME/skills/*/SKILL.md`, `~/.orca/skills/*/SKILL.md`, or project `.orca/skills/*/SKILL.md`. The model can inspect them with `list_skills` and `read_skill`; when a prompt explicitly mentions a skill id such as `$debugging`, Orca injects that skill's instructions into the model context for the turn.
247
247
 
package/package.json CHANGED
@@ -12,12 +12,12 @@
12
12
  "node": ">=16"
13
13
  },
14
14
  "name": "@blade-ai/orca",
15
- "version": "0.1.43-linux-x64",
16
- "description": "Native Orca binary for linux/x64.",
15
+ "version": "0.1.44-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 df8e664..02dbe88 100755
Binary file