hcom 0.1.6__tar.gz → 0.1.7__tar.gz

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.

Potentially problematic release.


This version of hcom might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hcom
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: Lightweight CLI tool for real-time communication between Claude Code subagents using hooks
5
5
  Author-email: aannoo <your@email.com>
6
6
  License: MIT
@@ -100,11 +100,12 @@ cd backend && hcom open api-specialist
100
100
  cd ../frontend && hcom open ui-specialist
101
101
 
102
102
  # Create named teams that can be @mentioned
103
- cd ~/api && hcom open --prefix api debugger
104
- cd ~/auth && hcom open --prefix auth debugger
103
+ cd ~/api && hcom open --prefix api debugger # Creates api-hovoa7
104
+ cd ~/auth && hcom open --prefix auth debugger # Creates auth-hovob8
105
105
 
106
- # Message specific teams
107
- hcom send "@api login works but API fails" # or in dashboard: hcom watch
106
+ # Message specific teams or instances
107
+ hcom send "@api login works but API fails" # Messages all api-* instances
108
+ hcom send "@hovoa7 can you check this?" # Message specific instance by name
108
109
  ```
109
110
 
110
111
 
@@ -120,7 +121,7 @@ hcom send "@api login works but API fails" # or in dashboard: hcom watch
120
121
  ### Automation Commands
121
122
  | Command | Description |
122
123
  |---------|-------------|
123
- | `hcom send 'message'` | Send message |
124
+ | `hcom send 'message'` | Send message to chat |
124
125
  | `hcom watch --logs` | View message history (non-interactive) |
125
126
  | `hcom watch --status` | Show instance status (non-interactive) |
126
127
  | `hcom watch --wait [timeout]` | Wait and notify for new messages |
@@ -195,7 +196,7 @@ HCOM_MAX_MESSAGE_SIZE=8192 hcom send "$(cat long_report.txt)"
195
196
 
196
197
  hcom adds hooks to your project directory's `.claude/settings.local.json`:
197
198
 
198
- 1. **Sending**: Claude writes messages with `echo "HCOM_SEND:message"` - captured by PostToolUse hook
199
+ 1. **Sending**: Claude agents use `echo "HCOM_SEND:message"` internally (you use `hcom send` from terminal)
199
200
  2. **Receiving**: Other Claudes get notified via Stop hook
200
201
  3. **Waiting**: Stop hook keeps Claude in a waiting state for new messages
201
202
 
@@ -72,11 +72,12 @@ cd backend && hcom open api-specialist
72
72
  cd ../frontend && hcom open ui-specialist
73
73
 
74
74
  # Create named teams that can be @mentioned
75
- cd ~/api && hcom open --prefix api debugger
76
- cd ~/auth && hcom open --prefix auth debugger
75
+ cd ~/api && hcom open --prefix api debugger # Creates api-hovoa7
76
+ cd ~/auth && hcom open --prefix auth debugger # Creates auth-hovob8
77
77
 
78
- # Message specific teams
79
- hcom send "@api login works but API fails" # or in dashboard: hcom watch
78
+ # Message specific teams or instances
79
+ hcom send "@api login works but API fails" # Messages all api-* instances
80
+ hcom send "@hovoa7 can you check this?" # Message specific instance by name
80
81
  ```
81
82
 
82
83
 
@@ -92,7 +93,7 @@ hcom send "@api login works but API fails" # or in dashboard: hcom watch
92
93
  ### Automation Commands
93
94
  | Command | Description |
94
95
  |---------|-------------|
95
- | `hcom send 'message'` | Send message |
96
+ | `hcom send 'message'` | Send message to chat |
96
97
  | `hcom watch --logs` | View message history (non-interactive) |
97
98
  | `hcom watch --status` | Show instance status (non-interactive) |
98
99
  | `hcom watch --wait [timeout]` | Wait and notify for new messages |
@@ -167,7 +168,7 @@ HCOM_MAX_MESSAGE_SIZE=8192 hcom send "$(cat long_report.txt)"
167
168
 
168
169
  hcom adds hooks to your project directory's `.claude/settings.local.json`:
169
170
 
170
- 1. **Sending**: Claude writes messages with `echo "HCOM_SEND:message"` - captured by PostToolUse hook
171
+ 1. **Sending**: Claude agents use `echo "HCOM_SEND:message"` internally (you use `hcom send` from terminal)
171
172
  2. **Receiving**: Other Claudes get notified via Stop hook
172
173
  3. **Waiting**: Stop hook keeps Claude in a waiting state for new messages
173
174
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hcom"
7
- version = "0.1.6"
7
+ version = "0.1.7"
8
8
  description = "Lightweight CLI tool for real-time communication between Claude Code subagents using hooks"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.6"
@@ -1,3 +1,3 @@
1
1
  """Claude Hook Comms - Real-time messaging between Claude Code agents."""
2
2
 
3
- __version__ = "0.1.5"
3
+ __version__ = "0.1.7"
@@ -1284,18 +1284,21 @@ def cmd_help():
1284
1284
 
1285
1285
  Usage:
1286
1286
  hcom open [n] Launch n Claude instances
1287
+ hcom open <agent> Launch named agent from .claude/agents/
1287
1288
  hcom open --prefix name n Launch with name prefix
1288
1289
  hcom watch View conversation dashboard
1289
- hcom clear Clear and archive conversation
1290
- hcom cleanup Remove hooks from current directory
1291
- hcom cleanup --all Remove hooks from all tracked directories
1292
- hcom help Show this help
1290
+ hcom clear Clear and archive conversation
1291
+ hcom cleanup Remove hooks from current directory
1292
+ hcom cleanup --all Remove hooks from all tracked directories
1293
+ hcom help Show this help
1293
1294
 
1294
1295
  Automation:
1295
- hcom send 'msg' Send message
1296
- hcom send '@prefix msg' Send to specific instances
1297
- hcom watch --logs Show logs
1298
- hcom watch --status Show status""")
1296
+ hcom send 'msg' Send message
1297
+ hcom send '@prefix msg' Send to specific instances
1298
+ hcom watch --logs Show logs
1299
+ hcom watch --status Show status
1300
+
1301
+ Docs: https://raw.githubusercontent.com/aannoo/claude-hook-comms/main/README.md""")
1299
1302
  return 0
1300
1303
 
1301
1304
  def cmd_open(*args):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hcom
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: Lightweight CLI tool for real-time communication between Claude Code subagents using hooks
5
5
  Author-email: aannoo <your@email.com>
6
6
  License: MIT
@@ -100,11 +100,12 @@ cd backend && hcom open api-specialist
100
100
  cd ../frontend && hcom open ui-specialist
101
101
 
102
102
  # Create named teams that can be @mentioned
103
- cd ~/api && hcom open --prefix api debugger
104
- cd ~/auth && hcom open --prefix auth debugger
103
+ cd ~/api && hcom open --prefix api debugger # Creates api-hovoa7
104
+ cd ~/auth && hcom open --prefix auth debugger # Creates auth-hovob8
105
105
 
106
- # Message specific teams
107
- hcom send "@api login works but API fails" # or in dashboard: hcom watch
106
+ # Message specific teams or instances
107
+ hcom send "@api login works but API fails" # Messages all api-* instances
108
+ hcom send "@hovoa7 can you check this?" # Message specific instance by name
108
109
  ```
109
110
 
110
111
 
@@ -120,7 +121,7 @@ hcom send "@api login works but API fails" # or in dashboard: hcom watch
120
121
  ### Automation Commands
121
122
  | Command | Description |
122
123
  |---------|-------------|
123
- | `hcom send 'message'` | Send message |
124
+ | `hcom send 'message'` | Send message to chat |
124
125
  | `hcom watch --logs` | View message history (non-interactive) |
125
126
  | `hcom watch --status` | Show instance status (non-interactive) |
126
127
  | `hcom watch --wait [timeout]` | Wait and notify for new messages |
@@ -195,7 +196,7 @@ HCOM_MAX_MESSAGE_SIZE=8192 hcom send "$(cat long_report.txt)"
195
196
 
196
197
  hcom adds hooks to your project directory's `.claude/settings.local.json`:
197
198
 
198
- 1. **Sending**: Claude writes messages with `echo "HCOM_SEND:message"` - captured by PostToolUse hook
199
+ 1. **Sending**: Claude agents use `echo "HCOM_SEND:message"` internally (you use `hcom send` from terminal)
199
200
  2. **Receiving**: Other Claudes get notified via Stop hook
200
201
  3. **Waiting**: Stop hook keeps Claude in a waiting state for new messages
201
202
 
File without changes
File without changes
File without changes