@mrciphersmith/keryx 0.2.16 → 0.2.17
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 +12 -0
- package/dist/cli.js +2585 -1672
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -315,6 +315,13 @@ Alternative install paths — the managed installer (`~/.keryx` with a wrapper i
|
|
|
315
315
|
Bare `keryx` prints the main commands; `keryx shell` starts the agent harness
|
|
316
316
|
described [above](#the-agent-harness).
|
|
317
317
|
|
|
318
|
+
Agent mode protects each user turn with nested unique-signature budgets: `48`
|
|
319
|
+
total, including at most `40` risk-`read` signatures and `8` non-read (or
|
|
320
|
+
unknown-risk) signatures. An identical `tool + normalized input` may retry up
|
|
321
|
+
to three times while occupying one unique slot. Reaching a limit exactly still
|
|
322
|
+
gives the model a normal round to answer; only a new signature beyond a pool or
|
|
323
|
+
a no-progress repeat loop forces the final tool-free wrap-up.
|
|
324
|
+
|
|
318
325
|
## Agent integrations
|
|
319
326
|
|
|
320
327
|
| Runtime | Integration |
|
|
@@ -328,6 +335,11 @@ After `init`, agents follow the root `AGENTS.md`/`CLAUDE.md` pointer to
|
|
|
328
335
|
`.metaproject/index.md`, which routes them to the right capability. Two commands
|
|
329
336
|
sharpen that routing:
|
|
330
337
|
|
|
338
|
+
`keryx orient` emits a bounded excerpt of the launch project's own
|
|
339
|
+
`.metaproject/index.md`, followed by the graph map and wiki index. The excerpt
|
|
340
|
+
directs the agent to read the full project-root entrypoint; it does not discover
|
|
341
|
+
or substitute an ancestor Metaproject.
|
|
342
|
+
|
|
331
343
|
```bash
|
|
332
344
|
keryx orient install-hook --runtime codex # graph + wiki map at turn start
|
|
333
345
|
keryx agents bootstrap install --runtime claude
|