@mrciphersmith/keryx 0.2.37 → 0.2.38
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 +4 -3
- package/dist/cli.js +2410 -1487
- package/package.json +1 -1
- package/src/gdskills/bundled/skills/orchestration/flow-orchestrator/SKILL.md +47 -11
package/README.md
CHANGED
|
@@ -214,9 +214,10 @@ What is in it today:
|
|
|
214
214
|
change the loop, the tools or the policy.
|
|
215
215
|
- **Durable sessions, per project.** JSONL transcripts on disk, resume across a
|
|
216
216
|
process restart, and context compaction that keeps the full archive.
|
|
217
|
-
`/resume`, `/sessions`, `/compact`, `/new`, and
|
|
218
|
-
`fork` branches a conversation into a new
|
|
219
|
-
without editing a transcript by hand.
|
|
217
|
+
`/resume`, `/sessions`, `/status`, `/flows`, `/compact`, `/new`, and
|
|
218
|
+
`keryx sessions list|fork|export` — `fork` branches a conversation into a new
|
|
219
|
+
session that keeps its ancestry, without editing a transcript by hand.
|
|
220
|
+
`/status` is the session inspector; `/session-info` and `/info` are not aliases.
|
|
220
221
|
- **Responsive busy-turn UX.** A running main turn can be interrupted with
|
|
221
222
|
`/interrupt`; additional prompts are queued and answered as read-only side workers
|
|
222
223
|
(`side-1`) in the TUI so the shell stays usable under long-running turns.
|