skalpel 4.0.51 → 4.0.52

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/analytics.mjs CHANGED
@@ -264,7 +264,7 @@ export function renderStatic(data) {
264
264
  L.push("");
265
265
  L.push(' nothing caught yet — keep coding, I\'ll log every "done" your agent claims.');
266
266
  L.push("");
267
- L.push(" Enable the shadow with SKALPEL_VERIFY_SHADOW=1; every completion claim gets its own");
267
+ L.push(" Arm the live catch with `skalpel verify on`; every completion claim gets its own");
268
268
  L.push(" proof re-run and appended to the local ledger. Nothing here is ever estimated.");
269
269
  L.push("");
270
270
  return L.join("\n");
@@ -377,7 +377,7 @@ function listLines(data, cols, rows, state) {
377
377
  );
378
378
  L.push("");
379
379
  L.push(
380
- ` ${DIM}Enable the shadow with ${RESET}${BOLD}SKALPEL_VERIFY_SHADOW=1${RESET}${DIM} — every completion claim gets its${RESET}`,
380
+ ` ${DIM}Arm the live catch with ${RESET}${BOLD}skalpel verify on${RESET}${DIM} — every completion claim gets its${RESET}`,
381
381
  );
382
382
  L.push(
383
383
  ` ${DIM}own proof re-run and appended locally. Nothing here is ever estimated.${RESET}`,
package/card.mjs CHANGED
@@ -296,9 +296,7 @@ function renderNoCatch({ id }) {
296
296
  ` ${D}and skalpel re-ran its OWN proof and it genuinely FAILED. Nothing is invented.${X}`,
297
297
  );
298
298
  L.push("");
299
- L.push(
300
- ` ${D}Turn the live shadow on with ${X}${B}SKALPEL_VERIFY_SHADOW=1${X}${D}, keep coding, and${X}`,
301
- );
299
+ L.push(` ${D}Arm the live catch with ${X}${B}skalpel verify on${X}${D}, keep coding, and${X}`);
302
300
  L.push(` ${D}run ${X}${B}skalpel card${X}${D} again the next time a claim doesn't hold up.${X}`);
303
301
  L.push("");
304
302
  return L.join("\n");
package/ledger.mjs CHANGED
@@ -246,7 +246,7 @@ export function renderLedger(ledger, { logPath = VERIFY_LOG_PATH } = {}) {
246
246
  L.push("");
247
247
  L.push(" No claim-verification history yet on this machine.");
248
248
  L.push(
249
- " Enable the shadow with SKALPEL_VERIFY_SHADOW=1, then keep coding — every turn your agent",
249
+ " Arm the live catch with `skalpel verify on`, then keep coding — every turn your agent",
250
250
  );
251
251
  L.push(' claims "done / tests pass" gets its own proof re-run and appended to the ledger.');
252
252
  L.push("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skalpel",
3
- "version": "4.0.51",
3
+ "version": "4.0.52",
4
4
  "description": "Behavioral graph for AI-assisted coding — learns how you work and steers Claude Code + Codex in real time.",
5
5
  "type": "module",
6
6
  "bin": {
package/skalpel-setup.mjs CHANGED
@@ -77,10 +77,10 @@ const KNOWN_SUBS = new Set([
77
77
  const VALUE_FLAGS = new Set(["--api", "--user"]);
78
78
  // Boolean flags that take no value. `--purge` on `uninstall` also removes auth + all local data.
79
79
  const BOOL_FLAGS = new Set(["--purge"]);
80
- const USAGE = `skalpel — connect your coding history to your behavioral graph
80
+ const USAGE = `skalpel — your AI says "done." skalpel re-runs its own tests and shows you the truth.
81
81
 
82
82
  usage:
83
- skalpel [setup] [--api <url>] [--user <id>] sign in, learn your history, wire the hooks
83
+ skalpel [setup] [--api <url>] [--user <id>] set up the catch: scan your history, wire the live check
84
84
  skalpel login (re-)run the Google sign-in
85
85
  skalpel logout clear the saved session
86
86
  skalpel autopsy local, read-only receipt of your verified patterns
@@ -273,7 +273,9 @@ ${R} ███████╗██╗ ██╗ █████╗ ██╗
273
273
  ╚════██║██╔═██╗ ██╔══██║██║ ██╔═══╝ ██╔══╝ ██║
274
274
  ███████║██║ ██╗██║ ██║███████╗██║ ███████╗███████╗
275
275
  ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚══════╝╚══════╝${X}`);
276
- console.log(`\n ${D}your AI coding sessions, learned — and steered in real time${X}\n`);
276
+ console.log(
277
+ `\n ${D}when your AI says "done," skalpel re-runs its own tests — and tells you the truth${X}\n`,
278
+ );
277
279
  }
278
280
 
279
281
  const FRAMES = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"];