skalpel 3.2.9 → 3.2.10

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.md +2 -0
  2. package/package.json +6 -6
package/INSTALL.md CHANGED
@@ -82,6 +82,8 @@ Per-OS service registration is performed by the npm `postinstall` script (`posti
82
82
 
83
83
  ## Updates
84
84
 
85
+ After install or upgrade, `skalpel --version` should report the same semver as `npm view skalpel version` (for example `skalpel v3.2.10` when the registry shows `3.2.10`). The release pipeline enforces that match before publish; if they diverge, reinstall with `npx --yes skalpel@latest`.
86
+
85
87
  `npx skalpel@latest` and `npm update -g skalpel` are the two update paths. Both update both binaries atomically: the new `skalpel` and the new `skalpeld` arrive together, and the old `skalpel` and old `skalpeld` are replaced together. There is no window during which the binaries are at different versions on disk.
86
88
 
87
89
  The CLI auto-update polling described in `INFRASTRUCTURE.md` (CLI Distribution, the `cli/latest` endpoint) surfaces a non-blocking notice when a newer version is available. The user runs the update command themselves; the TUI does not perform an in-place upgrade. After an update, the next `skalpel` invocation launches the new TUI, which in turn starts the new `skalpeld` if needed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skalpel",
3
- "version": "3.2.9",
3
+ "version": "3.2.10",
4
4
  "description": "Skalpel — local proxy and TUI for coding agents (skalpel + skalpeld bundle).",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://skalpel.ai",
@@ -58,10 +58,10 @@
58
58
  "x64"
59
59
  ],
60
60
  "optionalDependencies": {
61
- "@skalpelai/skalpel-darwin-arm64": "3.2.9",
62
- "@skalpelai/skalpel-darwin-x64": "3.2.9",
63
- "@skalpelai/skalpel-linux-arm64": "3.2.9",
64
- "@skalpelai/skalpel-linux-x64": "3.2.9",
65
- "@skalpelai/skalpel-win32-x64": "3.2.9"
61
+ "@skalpelai/skalpel-darwin-arm64": "3.2.10",
62
+ "@skalpelai/skalpel-darwin-x64": "3.2.10",
63
+ "@skalpelai/skalpel-linux-arm64": "3.2.10",
64
+ "@skalpelai/skalpel-linux-x64": "3.2.10",
65
+ "@skalpelai/skalpel-win32-x64": "3.2.10"
66
66
  }
67
67
  }