@sickr/replay 0.9.0-beta.1 → 0.9.0-beta.2

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/live.js +1 -1
  2. package/package.json +1 -1
package/dist/live.js CHANGED
@@ -21,7 +21,7 @@ import { join } from 'node:path';
21
21
  import { setTimeout as sleep } from 'node:timers/promises';
22
22
  import { readCredentials } from './auth.js';
23
23
  import { runsDir } from './recorder.js';
24
- export const LIVE_BASE = (process.env.SICKR_LIVE_URL ?? 'https://sickr-live-service.arifmanasiya.workers.dev').replace(/\/+$/, '');
24
+ export const LIVE_BASE = (process.env.SICKR_LIVE_URL ?? 'https://live-service.sickr.ai').replace(/\/+$/, '');
25
25
  function pidPath() { return join(homedir(), '.sickr', 'live.pid'); }
26
26
  function inboxDir() { return join(homedir(), '.sickr', 'inbox'); }
27
27
  function offsetsPath() { return join(homedir(), '.sickr', 'live-offsets.json'); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sickr/replay",
3
- "version": "0.9.0-beta.1",
3
+ "version": "0.9.0-beta.2",
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", "sickr": "dist/cli.js" },