skalpel 4.0.3 → 4.0.4

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/install.mjs +1 -0
  2. package/package.json +1 -1
package/install.mjs CHANGED
@@ -40,6 +40,7 @@ function stageHookRuntime() {
40
40
  // this rule and is guarded by the all-or-nothing check below instead).
41
41
  // a hook entrypoint staged without a module it imports — the exact 0.3.12–0.3.16 bug shape.
42
42
  copyFileSync(join(PKG_DIR, "insights.mjs"), join(HOOKS_DIR, "insights.mjs")); // hooks import ./insights.mjs
43
+ copyFileSync(join(PKG_DIR, "reveal.mjs"), join(HOOKS_DIR, "reveal.mjs")); // both hooks import ./reveal.mjs
43
44
  copyFileSync(join(PKG_DIR, "skalpel-hook.mjs"), HOOK_FILE);
44
45
  copyFileSync(join(PKG_DIR, "skalpel-hook-session.mjs"), SESSION_FILE);
45
46
  copyFileSync(join(PKG_DIR, "incremental-ingest.mjs"), join(HOOKS_DIR, "incremental-ingest.mjs"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skalpel",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
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": {