@sickr/replay 0.5.4 → 0.5.5

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 +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -380,7 +380,7 @@ async function handleShare(runId, yes, open) {
380
380
  if (!(await confirmPublish(yes, 'this run')))
381
381
  return;
382
382
  const url = await publishWithRetry(payload);
383
- process.stdout.write(`sickr: published → ${url}\nsickr: this link expires in 24h.\n`);
383
+ process.stdout.write(`sickr: published → ${url}\nsickr: this link expires in 24h.\nsickr: Replay Pro (live view + remote steer) — coming soon → https://sickr.ai/#waitlist\n`);
384
384
  if (open)
385
385
  openInBrowser(url);
386
386
  }
@@ -401,7 +401,7 @@ async function handleShareCombined(sel, yes, open) {
401
401
  if (!(await confirmPublish(yes, 'this combined replay')))
402
402
  return;
403
403
  const url = await publishWithRetry(payload);
404
- process.stdout.write(`sickr: published → ${url}\nsickr: this link expires in 24h.\n`);
404
+ process.stdout.write(`sickr: published → ${url}\nsickr: this link expires in 24h.\nsickr: Replay Pro (live view + remote steer) — coming soon → https://sickr.ai/#waitlist\n`);
405
405
  if (open)
406
406
  openInBrowser(url);
407
407
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sickr/replay",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
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" },