splashshell 0.2.0 → 0.4.0

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/README.md CHANGED
@@ -20,10 +20,12 @@ A universal MCP server that exposes any shell (bash, pwsh, powershell, cmd) as a
20
20
 
21
21
  No global install is required — `npx` fetches and runs splashshell on demand. The only prerequisite is the [.NET 9 Desktop Runtime](https://dotnet.microsoft.com/download/dotnet/9.0) (the package bundles a ~5.6 MB native `splash.exe` that needs it).
22
22
 
23
+ > The `@latest` tag is important: without it, npx will happily keep reusing a stale cached copy even after a new version ships.
24
+
23
25
  ### Claude Code
24
26
 
25
27
  ```bash
26
- claude mcp add-json splash -s user '{"command":"npx","args":["-y","splashshell"]}'
28
+ claude mcp add-json splash -s user '{"command":"npx","args":["-y","splashshell@latest"]}'
27
29
  ```
28
30
 
29
31
  ### Claude Desktop
@@ -35,7 +37,7 @@ Add to `%APPDATA%\Claude\claude_desktop_config.json`:
35
37
  "mcpServers": {
36
38
  "splash": {
37
39
  "command": "npx",
38
- "args": ["-y", "splashshell"]
40
+ "args": ["-y", "splashshell@latest"]
39
41
  }
40
42
  }
41
43
  }
@@ -97,7 +99,7 @@ splashshell tracks the cwd of every console and can switch transparently between
97
99
  | Switch to a different shell | Warns to confirm cwd (cross-shell path translation is not implemented) |
98
100
  | User manually `cd`'d in the active console | Warns so the AI can verify the new cwd before running its next command |
99
101
 
100
- Window titles use the format `#PID Name` (e.g., `#12345 Sapphire`) so you can identify each console at a glance. When the parent MCP process exits, titles change to `#PID ____` to indicate the console is up for re-claim.
102
+ Window titles use the format `#PID Name` (e.g., `#12345 Sapphire`) so you can identify each console at a glance. When the parent MCP process exits, titles change to `#PID ~~~~` to indicate the console is up for re-claim.
101
103
 
102
104
  ## Platform support
103
105
 
package/dist/splash.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "splashshell",
3
- "version": "0.2.0",
3
+ "version": "0.4.0",
4
4
  "description": "Shared console MCP server for any shell (bash, pwsh, cmd) — AI and user work in the same terminal. Real-time command visibility, interactive prompt support, session persistence, multi-shell management with automatic cwd handoff.",
5
5
  "license": "MIT",
6
6
  "author": "Yoshifumi Tsuda",