claude-tmux 1.0.11 → 1.0.13

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
@@ -56,7 +56,7 @@ send("task-name", "do something else")
56
56
 
57
57
  ### list
58
58
 
59
- List all active Claude tmux sessions. Useful for discovery across conversations.
59
+ List all active Claude tmux sessions.
60
60
 
61
61
  ```
62
62
  list()
package/dist/index.js CHANGED
@@ -106,8 +106,8 @@ Spawn Claude Code instances in tmux sessions for long-running, independent tasks
106
106
  ## Tools
107
107
  - **spawn**: Start a new Claude session with a prompt.
108
108
  - **read**: Wait for a session to finish and return output.
109
- - **send**: Send a follow-up message mid-task. Call read after.
110
- - **list**: List active sessions (useful for discovery across conversations).
109
+ - **send**: Send a follow-up message to a session.
110
+ - **list**: List active sessions.
111
111
  - **kill**: Terminate a session.
112
112
 
113
113
  ## Tips
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-tmux",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "MCP server for orchestrating multiple Claude Code instances via tmux",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",