@mrciphersmith/keryx 0.2.48 → 0.2.49
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 +13 -0
- package/dist/cli.js +5062 -1530
- package/package.json +1 -1
- package/src/gdskills/contracts/subagent-dispatch.schema.json +40 -0
package/README.md
CHANGED
|
@@ -241,6 +241,18 @@ What is in it today:
|
|
|
241
241
|
`subagent-dispatch`/`subagent-result` contracts, token budgets per child,
|
|
242
242
|
bounded parallel scheduling, and an offline fleet report over a recorded event
|
|
243
243
|
log (`keryx agents monitor <events-file>`).
|
|
244
|
+
- **Vendor CLIs as child agents — off by default.** keryx can hand a bounded,
|
|
245
|
+
**read-only** task to a coding CLI you already have installed (`codex exec`,
|
|
246
|
+
`claude -p`) and host it as a child of the same harness: a disposable git
|
|
247
|
+
worktree, a stripped environment, a restricted tool roster, the same budget
|
|
248
|
+
ledger and depth caps, and the same completion. `keryx agents external list`
|
|
249
|
+
shows the registry; `/delegate <agent> <task>` starts a run. It takes an
|
|
250
|
+
explicit opt-in in your own user config, and is hard disabled on a remote
|
|
251
|
+
transport and under CI. keryx never reads a vendor credential store — not even to check
|
|
252
|
+
whether you are logged in — so it reports *"installed … login not verified —
|
|
253
|
+
keryx cannot know"* rather than a tick. **No vendor sanction is claimed**, and
|
|
254
|
+
nothing here has yet been run against a real vendor process: the whole layer is
|
|
255
|
+
verified offline against recorded transcripts.
|
|
244
256
|
- **Completion you can audit.** The completion gate blocks on missing evidence: a
|
|
245
257
|
run that cannot produce the evidence its flow requires does not get to claim
|
|
246
258
|
it finished.
|
|
@@ -434,6 +446,7 @@ graph falls back to its deterministic resolver when a grammar is absent.
|
|
|
434
446
|
| No bundled embedding runtime | No semantic ranking in memory search | Lexical memory search remains fully available |
|
|
435
447
|
| ripgrep is external | `keryx ctx rg` needs `rg` on `PATH` | Install ripgrep, or let the agent read files directly |
|
|
436
448
|
| 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 |
|
|
449
|
+
| 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
450
|
|
|
438
451
|
Full detail, including known defects and platform caveats:
|
|
439
452
|
[limitations](docs/docs/limitations.md).
|