@mrciphersmith/keryx 0.2.48 → 0.2.50

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
@@ -41,6 +41,19 @@ keryx init --yes
41
41
  keryx gdgraph build
42
42
  ```
43
43
 
44
+ No bun, git, or node? Install the standalone binary instead — same CLI, no
45
+ runtime dependency:
46
+
47
+ ```bash
48
+ curl -fsSL https://raw.githubusercontent.com/MrCipherSmith/keryx/main/scripts/install-binary.sh | bash
49
+ ```
50
+
51
+ or via Homebrew:
52
+
53
+ ```bash
54
+ brew install MrCipherSmith/keryx/keryx
55
+ ```
56
+
44
57
  Local-first · deterministic core · offline by default · MIT
45
58
 
46
59
  ## Why keryx
@@ -241,6 +254,18 @@ What is in it today:
241
254
  `subagent-dispatch`/`subagent-result` contracts, token budgets per child,
242
255
  bounded parallel scheduling, and an offline fleet report over a recorded event
243
256
  log (`keryx agents monitor <events-file>`).
257
+ - **Vendor CLIs as child agents — off by default.** keryx can hand a bounded,
258
+ **read-only** task to a coding CLI you already have installed (`codex exec`,
259
+ `claude -p`) and host it as a child of the same harness: a disposable git
260
+ worktree, a stripped environment, a restricted tool roster, the same budget
261
+ ledger and depth caps, and the same completion. `keryx agents external list`
262
+ shows the registry; `/delegate <agent> <task>` starts a run. It takes an
263
+ explicit opt-in in your own user config, and is hard disabled on a remote
264
+ transport and under CI. keryx never reads a vendor credential store — not even to check
265
+ whether you are logged in — so it reports *"installed … login not verified —
266
+ keryx cannot know"* rather than a tick. **No vendor sanction is claimed**, and
267
+ nothing here has yet been run against a real vendor process: the whole layer is
268
+ verified offline against recorded transcripts.
244
269
  - **Completion you can audit.** The completion gate blocks on missing evidence: a
245
270
  run that cannot produce the evidence its flow requires does not get to claim
246
271
  it finished.
@@ -434,6 +459,7 @@ graph falls back to its deterministic resolver when a grammar is absent.
434
459
  | No bundled embedding runtime | No semantic ranking in memory search | Lexical memory search remains fully available |
435
460
  | ripgrep is external | `keryx ctx rg` needs `rg` on `PATH` | Install ripgrep, or let the agent read files directly |
436
461
  | Model commands need a credential | Four of the five commands above exit non-zero without one; `wiki enrich` exits `0` and marks the affected pages skipped | Everything else runs deterministically offline |
462
+ | External agents are read-only, and unproven against a live vendor process | A delegated CLI can read and search but never write; `worktree-write` is refused with a named reason. The parent gets the child's result and nothing before it — supervision of a running external child is not implemented. Everything is verified offline against recorded transcripts | Use keryx's own child agents for work that must mutate the tree |
437
463
 
438
464
  Full detail, including known defects and platform caveats:
439
465
  [limitations](docs/docs/limitations.md).