@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.
Files changed (2) hide show
  1. package/dist/cli.js +11 -2
  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
- handleInit(provider, rest.includes('--no-name'));
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sickr/replay",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "type": "module",
5
5
  "description": "npx @sickr/replay — local Claude Code audit + one-click share. The free wedge into SICKR.",
6
6
  "bin": { "replay": "dist/cli.js" },