@ricsam/r5dctl 0.0.60 → 0.0.62
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 +20 -11
- package/dist/cjs/cli.cjs +691 -235
- package/dist/cjs/package.json +1 -1
- package/dist/mjs/cli.mjs +681 -230
- package/dist/mjs/package.json +1 -1
- package/dist/types/cli.d.ts +114 -48
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -69,21 +69,26 @@ r5dctl -s <session-id> conversation --raw # raw JSON message/tool p
|
|
|
69
69
|
r5dctl -s <session-id> conversation --tools # include provider-shaped tool definitions
|
|
70
70
|
r5dctl -s <session-id> conversation --system # include system prompt messages
|
|
71
71
|
r5dctl -s <session-id> conversation --raw --tools --system # exact raw agent request transcript
|
|
72
|
+
r5dctl -s <session-id> conversation -f # print current transcript, then follow new output (--watch also works)
|
|
72
73
|
r5dctl conversation overview <session-id> # dialogue/thinking with tool work omitted
|
|
73
74
|
r5dctl conversation inspect-node <session-id> <node-id> # raw persisted node plus traversal metadata
|
|
74
75
|
r5dctl conversation inspect-work <session-id> <work-id> # compact call list for one omitted turn
|
|
75
76
|
r5dctl conversation inspect-work <session-id> <work-id> --summary
|
|
76
77
|
r5dctl conversation inspect-work <session-id> <work-id> --full
|
|
77
|
-
r5dctl
|
|
78
|
-
r5dctl -s <session-id> answer-questions -a1 "Recipe Collection" -a2 "Both Manual & AI"
|
|
79
|
-
r5dctl -s <session-id> answer-env-request -e KEY=value --context "Generate the remaining salts"
|
|
78
|
+
r5dctl session prompt --worker <label> --mode plan --model max <session-id> "..."
|
|
79
|
+
r5dctl -s <session-id> answer-questions --worker <label> --mode plan --model max -a1 "Recipe Collection" -a2 "Both Manual & AI"
|
|
80
|
+
r5dctl -s <session-id> answer-env-request --worker <label> --mode agent --model max -e KEY=value --context "Generate the remaining salts"
|
|
80
81
|
|
|
81
|
-
r5dctl -p <project>
|
|
82
|
-
r5dctl
|
|
83
|
-
r5dctl
|
|
84
|
-
r5dctl
|
|
85
|
-
r5dctl
|
|
86
|
-
|
|
82
|
+
r5dctl -p <project> session start --worker <label> --worktree main --model max "Explore the failure"
|
|
83
|
+
r5dctl -p <project> session start --worker <label> --new-worktree fix/tests --source worktree:main --model max -f "Fix the failing tests"
|
|
84
|
+
r5dctl session status <session-id>
|
|
85
|
+
r5dctl session prompt --worker <label> --mode agent --model max <session-id> "Also check the migration"
|
|
86
|
+
r5dctl session stop <session-id>
|
|
87
|
+
|
|
88
|
+
r5dctl -p <project> merge fix/tests
|
|
89
|
+
r5dctl -p <project> merge --worker <label> --create-conflict-worktree fix/tests
|
|
90
|
+
r5dctl -p <project> merge --worker <label> --launch-conflict-resolution-agent fix/tests
|
|
91
|
+
r5dctl -p <project> merge finish --worker <label> conflicts/fix-tests --summary "Resolved the conflicts"
|
|
87
92
|
|
|
88
93
|
r5dctl -p <project> -b <branch> shell
|
|
89
94
|
r5dctl -p <project> -b <branch> shell -c "bun test"
|
|
@@ -99,7 +104,11 @@ r5dctl k8s usage --window 7d
|
|
|
99
104
|
r5dctl k8s usage --workload default/api --window 7d --json
|
|
100
105
|
```
|
|
101
106
|
|
|
102
|
-
|
|
107
|
+
`session start` creates an ordinary agent-mode chat on an explicitly selected existing worktree, or creates a named worktree from an explicit `worktree:<branch>` source. It requires project, worker, model, and prompt and never infers them from the current shell. Starts and prompts return after durable enqueue while execution continues asynchronously. Task specialization belongs in the prompt; there are no predefined debug, explore, research, or test agents.
|
|
108
|
+
|
|
109
|
+
Add `-f`/`--follow`/`--watch` to `session start` to attach after enqueue, or to `conversation` to print the current transcript and follow new output. Assistant text is written to stdout and lifecycle/tool progress to stderr; `--tools` includes tool calls and results. With global `--json`, follow mode emits one JSON event per line. Ctrl-C only detaches and never stops the session. The CLI reconnects transiently interrupted event streams and resynchronizes committed conversation revisions without repeating assistant text.
|
|
110
|
+
|
|
111
|
+
`merge` merges a managed source worktree into its recorded parent. By default conflicts are reported without creating more work. `--create-conflict-worktree` prepares a manual conflict worktree, while `--launch-conflict-resolution-agent` starts the dedicated merge-conflict resolver; those strategies are mutually exclusive. A worker-bound shell credential supplies its own worker automatically; otherwise pass `--worker`. Finish a reviewed manual resolution with `merge finish`.
|
|
103
112
|
|
|
104
113
|
`shell` connects to the same live worker PTY as the web Shell tab. Without `-c` it attaches the local terminal interactively. With `-c`/`--command`, it runs the supplied shell expression, streams combined PTY output, and exits with the remote command's status. Because command output uses a PTY, stdout and stderr are combined and programs may emit colors or other terminal control sequences.
|
|
105
114
|
|
|
@@ -120,7 +129,7 @@ Conversation output is human-readable by default and excludes both the system pr
|
|
|
120
129
|
|
|
121
130
|
When available, conversation rendering uses the newest complete persisted model-request snapshot on the active conversation branch, so its mode, tier, model, thinking mode, tools, and messages reflect the request that actually ran. Legacy or empty sessions without snapshots fall back to reconstruction from the latest conversation context.
|
|
122
131
|
|
|
123
|
-
`conversation overview` is a deterministic active-branch projection for
|
|
132
|
+
`conversation overview` is a deterministic active-branch projection for recovering earlier work after a fresh-context boundary. It keeps user messages, injected context, assistant thinking/commentary/final responses, and user decisions, while replacing each turn's tool batches with a stable work ID and numbered call ranges. Adjacent tool batches with no visible content between them are coalesced into one range. Use `conversation inspect-work` with that session and work ID to inspect the omitted calls. Inspection is compact by default; `--summary` adds bounded targets/outcomes and `--full` renders persisted inputs and results with the normal tool renderers. The explicit `--compact`, `--summary`, and `--full` flags are mutually exclusive. Compact and summary output are designed to be narrowed with `grep`, `head`, `tail`, `sed`, or `cat -n`.
|
|
124
133
|
|
|
125
134
|
`conversation inspect-node` reads one exact persisted conversation node as formatted JSON. Its header includes the previous node, every direct next node, the next node on the active branch, whether the selected node is active, and the containing `work_...` ID when one is available. This allows callers that start with only a copied chat node ID to traverse nearby nodes or zoom out with `conversation inspect-work`.
|
|
126
135
|
|