@sickr/replay 0.5.1 → 0.5.3
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/dist/cli.js +11 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -30,6 +30,8 @@ Commands:
|
|
|
30
30
|
runs to ~/.sickr/runs (secrets redacted).
|
|
31
31
|
--codex install for Codex (.codex/hooks.json) instead of
|
|
32
32
|
Claude Code (.claude/settings.json)
|
|
33
|
+
--all install for BOTH Claude Code and Codex (so the
|
|
34
|
+
combined "open --today" view sees everything)
|
|
33
35
|
--no-name label your prompts "Human" instead of your
|
|
34
36
|
login/git name (default is your login name)
|
|
35
37
|
open [run] Render a run to a local HTML timeline and open it. 100% local.
|
|
@@ -430,9 +432,16 @@ async function main() {
|
|
|
430
432
|
case 'record':
|
|
431
433
|
handleRecord(await readStdin(), provider);
|
|
432
434
|
return;
|
|
433
|
-
case 'init':
|
|
434
|
-
|
|
435
|
+
case 'init': {
|
|
436
|
+
const noName = rest.includes('--no-name');
|
|
437
|
+
if (rest.includes('--all')) {
|
|
438
|
+
handleInit('claude', noName);
|
|
439
|
+
handleInit('codex', noName);
|
|
440
|
+
return;
|
|
441
|
+
}
|
|
442
|
+
handleInit(provider, noName);
|
|
435
443
|
return;
|
|
444
|
+
}
|
|
436
445
|
case 'open': {
|
|
437
446
|
const sel = selectWindow(rest);
|
|
438
447
|
if (sel) {
|
package/package.json
CHANGED