skalpel 3.2.7 → 3.2.8
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/INSTALL.md +2 -2
- package/package.json +6 -6
package/INSTALL.md
CHANGED
|
@@ -57,13 +57,13 @@ The primary, guided path is the website signup wizard, which mints a one-time, v
|
|
|
57
57
|
npx --yes skalpel@<latest> login --activation <token>
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
-
`login --activation` is **auth-only**: it claims the token, writes `auth.json`,
|
|
60
|
+
`login --activation` is **auth-only with respect to the TUI**: it claims the token, writes `auth.json`, and never launches the TUI (the magic flow is a deliberate terminal handoff). Before exiting it chains directly into harness setup so the single pasted command also walks the user through wrapping their coding agents: in an interactive terminal it runs the same detection + checkbox prompt as `skalpel setup`; in a non-interactive shell (CI, piped) it only prints what it detected and points at `skalpel setup`, never editing shell startup files unattended. Browser-loopback `skalpel login` is unchanged and still lands the user on the dashboard.
|
|
61
61
|
|
|
62
62
|
A user who independently runs `npm install -g skalpel` is still supported: `postinstall` prints a best-effort pointer to `https://launch.skalpel.ai/signup`, and the first `skalpel` run repeats that pointer where output is guaranteed.
|
|
63
63
|
|
|
64
64
|
### `skalpel setup` — detect and wrap coding agents
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
Harness setup runs automatically at the tail of `login --activation` (see above), and is also available as a standalone command for re-running later or for `npm install -g` users. `skalpel setup` detects which coding-agent harnesses are installed (cross-platform on Linux, Windows, and macOS) via PATH and per-user config probes:
|
|
67
67
|
|
|
68
68
|
- **Claude Code** and **Codex CLI** — detected and wrappable.
|
|
69
69
|
- **Cursor** — detected for display only (no Skalpel wrapper today).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skalpel",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.8",
|
|
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.
|
|
62
|
-
"@skalpelai/skalpel-darwin-x64": "3.2.
|
|
63
|
-
"@skalpelai/skalpel-linux-arm64": "3.2.
|
|
64
|
-
"@skalpelai/skalpel-linux-x64": "3.2.
|
|
65
|
-
"@skalpelai/skalpel-win32-x64": "3.2.
|
|
61
|
+
"@skalpelai/skalpel-darwin-arm64": "3.2.8",
|
|
62
|
+
"@skalpelai/skalpel-darwin-x64": "3.2.8",
|
|
63
|
+
"@skalpelai/skalpel-linux-arm64": "3.2.8",
|
|
64
|
+
"@skalpelai/skalpel-linux-x64": "3.2.8",
|
|
65
|
+
"@skalpelai/skalpel-win32-x64": "3.2.8"
|
|
66
66
|
}
|
|
67
67
|
}
|