claude-tmux 1.0.13 → 1.0.14
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/dist/index.js +3 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -99,9 +99,9 @@ const server = new McpServer({
|
|
|
99
99
|
name: "claude-tmux",
|
|
100
100
|
version: "1.1.0",
|
|
101
101
|
}, {
|
|
102
|
-
instructions: `# claude-tmux
|
|
102
|
+
instructions: `# claude-tmux
|
|
103
103
|
|
|
104
|
-
Spawn Claude Code instances in tmux sessions for long-running
|
|
104
|
+
Spawn Claude Code instances in tmux sessions for long-running tasks.
|
|
105
105
|
|
|
106
106
|
## Tools
|
|
107
107
|
- **spawn**: Start a new Claude session with a prompt.
|
|
@@ -111,8 +111,7 @@ Spawn Claude Code instances in tmux sessions for long-running, independent tasks
|
|
|
111
111
|
- **kill**: Terminate a session.
|
|
112
112
|
|
|
113
113
|
## Tips
|
|
114
|
-
- Verify
|
|
115
|
-
- User can attach manually: \`tmux attach -t claude-<name>\``,
|
|
114
|
+
- Verify completion before killing. Idle sessions are fine.`,
|
|
116
115
|
});
|
|
117
116
|
server.tool("spawn", "Launch a new Claude Code instance in a tmux session. Creates an interactive session you can communicate with via send/read. The session runs until killed. Use for multi-turn conversations or tasks requiring steering.", {
|
|
118
117
|
name: z.string().min(1).max(50).describe("Unique session name (e.g., 'refactor-auth', 'debug-api')"),
|