@dolusoft/claude-collab 1.6.3 → 1.7.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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -54,9 +54,9 @@ claude mcp add claude-collab -- claude-collab --name alice --server 192.168.1.5:
54
54
 
55
55
  | Tool | Description |
56
56
  |------|-------------|
57
- | `ask` | Ask another peer a question. Waits up to 5 minutes for a response. |
58
- | `reply` | Reply to an incoming question (called automatically by Claude). |
59
- | `peers` | Show currently connected peers. |
57
+ | `ask` | Ask another peer a question by name. Waits up to 5 minutes for a response. |
58
+ | `reply` | Reply to an incoming question (called automatically by Claude when a question arrives). |
59
+ | `peers` | Show currently connected peers and your own name. |
60
60
  | `history` | Show past questions and answers from this session. |
61
61
 
62
62
  ## Example
@@ -77,12 +77,12 @@ reply("q_abc123", "Returns JSON: { id, name, email }")
77
77
  src/
78
78
  ├── infrastructure/
79
79
  │ ├── hub/
80
- │ │ ├── hub-server.ts # WebSocket hub — routes messages by name
81
- │ │ ├── hub-client.ts # Connects to hub, implements ICollabClient
82
- │ │ └── hub-protocol.ts # Wire protocol types
83
- │ └── terminal-injector/ # Injects incoming questions into Claude Code
80
+ │ │ ├── hub-server.ts # WebSocket hub — routes messages by name
81
+ │ │ ├── hub-client.ts # Connects to hub, implements ICollabClient
82
+ │ │ └── hub-protocol.ts # Wire protocol types
83
+ │ └── terminal-injector/ # Injects incoming questions into Claude Code
84
84
  └── presentation/
85
- └── mcp/ # MCP server + tools
85
+ └── mcp/ # MCP server + tools (ask, reply, peers, history)
86
86
  ```
87
87
 
88
88
  ## Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dolusoft/claude-collab",
3
- "version": "1.6.3",
3
+ "version": "1.7.0",
4
4
  "description": "Real-time team collaboration between Claude Code terminals via MCP",
5
5
  "type": "module",
6
6
  "main": "./dist/mcp-main.js",