claude-tmux 1.0.10 → 1.0.11

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