@sickr/replay 0.5.2 → 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 +3 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -30,9 +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
|
-
--
|
|
34
|
-
combined
|
|
35
|
-
--today ` view sees everything)
|
|
33
|
+
--all install for BOTH Claude Code and Codex (so the
|
|
34
|
+
combined "open --today" view sees everything)
|
|
36
35
|
--no-name label your prompts "Human" instead of your
|
|
37
36
|
login/git name (default is your login name)
|
|
38
37
|
open [run] Render a run to a local HTML timeline and open it. 100% local.
|
|
@@ -435,7 +434,7 @@ async function main() {
|
|
|
435
434
|
return;
|
|
436
435
|
case 'init': {
|
|
437
436
|
const noName = rest.includes('--no-name');
|
|
438
|
-
if (rest.includes('--
|
|
437
|
+
if (rest.includes('--all')) {
|
|
439
438
|
handleInit('claude', noName);
|
|
440
439
|
handleInit('codex', noName);
|
|
441
440
|
return;
|
package/package.json
CHANGED