hcom 0.1.7__py3-none-any.whl → 0.2.0__py3-none-any.whl

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.7
3
+ Version: 0.2.0
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
@@ -66,7 +66,7 @@ uv tool install hcom
66
66
  # or pip
67
67
  pip install hcom
68
68
  # then use with:
69
- hcom open 3
69
+ hcom open
70
70
  ```
71
71
 
72
72
 
@@ -85,15 +85,18 @@ hcom open 2 backend-coder frontend-coder
85
85
  # Launch multiple of the same agent
86
86
  hcom open reviewer reviewer reviewer # 3 separate reviewers
87
87
 
88
- # Launch agents in background with specific prompts
89
- hcom open test-writer --claude-args "-p 'write tests for any new code'"
88
+ # Launch instances as background processes (no terminal window, managed with 'hcom kill')
89
+ hcom open --background
90
+ hcom open -p 2 code-writer # -p is shorthand for --background
90
91
 
91
- # Launch watchers that respond to notifications
92
- hcom open reviewer --claude-args "-p 'review when @mentioned'"
92
+ # Launch agent with specific prompt
93
+ HCOM_INITIAL_PROMPT='write tests' hcom open test-writer
94
+
95
+ # Resume instance (hcom chat will continue)
96
+ hcom open --claude-args "--resume session_id" # get session_id from hcom watch
93
97
 
94
98
  # Pass multiple Claude flags
95
- hcom open orchestrator --claude-args "--model claude-3-opus
96
- --resume session_id"
99
+ hcom open orchestrator --claude-args "--model sonnet --resume session_id"
97
100
 
98
101
  # Launch in specific directories
99
102
  cd backend && hcom open api-specialist
@@ -114,9 +117,11 @@ hcom send "@hovoa7 can you check this?" # Message specific instance by name
114
117
  | Command | Description |
115
118
  |---------|-------------|
116
119
  | `hcom open [n]` | Launch n Claude instances (or named agents) |
120
+ | `hcom open -p` | Launch instances as background processes |
117
121
  | `hcom watch` | Conversation/status dashboard |
118
122
  | `hcom clear` | Clear and archive conversation |
119
123
  | `hcom cleanup` | Remove HCOM hooks from current directory |
124
+ | `hcom kill [name]` | Kill specific instance or all with --all |
120
125
 
121
126
  ### Automation Commands
122
127
  | Command | Description |
@@ -167,10 +172,10 @@ HCOM_INSTANCE_HINTS="always update chat with progress" hcom open nice-subagent-b
167
172
 
168
173
  ```bash
169
174
  # Change your name for one command
170
- HCOM_SENDER_NAME="reviewer" hcom send "LGTM!"
175
+ HCOM_SENDER_NAME="coolguy" hcom send "LGTM!"
171
176
 
172
- # Make instances wait 30 minutes instead of 10
173
- HCOM_WAIT_TIMEOUT=1800 hcom open 3
177
+ # Make instances timeout after 60 seconds instead of 30 minutes
178
+ HCOM_WAIT_TIMEOUT=60 hcom open 3
174
179
 
175
180
  # Custom welcome message
176
181
  HCOM_FIRST_USE_TEXT="Debug session for issue #123" hcom open 2
@@ -186,6 +191,7 @@ HCOM_MAX_MESSAGE_SIZE=8192 hcom send "$(cat long_report.txt)"
186
191
  - ◉ **waiting** (blue) - Waiting for messages
187
192
  - ■ **blocked** (yellow) - Permission blocked
188
193
  - ○ **inactive** (red) - Timed out/dead
194
+ - **(bg)** suffix - Instance running in background mode
189
195
 
190
196
  </details>
191
197
 
@@ -214,8 +220,10 @@ hcom adds hooks to your project directory's `.claude/settings.local.json`:
214
220
  ```
215
221
  ~/.hcom/
216
222
  ├── hcom.log # Conversation log
217
- ├── hcom.json # Instance tracking
218
- └── config.json # Configuration
223
+ ├── instances/ # Instance tracking
224
+ ├── logs/ # Background process logs
225
+ ├── config.json # Configuration
226
+ └── archive/ # Archived sessions
219
227
 
220
228
  your-project/
221
229
  └── .claude/
@@ -308,6 +316,15 @@ Configure `terminal_command` in `~/.hcom/config.json` to use your preferred term
308
316
  hcom clear
309
317
  ```
310
318
 
319
+ ### Kill Running Instances
320
+ ```bash
321
+ # Kill specific instance
322
+ hcom kill hovoa7
323
+
324
+ # Kill all instances
325
+ hcom kill --all
326
+ ```
327
+
311
328
  ### Remove HCOM hooks from current directory
312
329
  ```bash
313
330
  hcom cleanup
@@ -0,0 +1,7 @@
1
+ hcom/__init__.py,sha256=OTLgmiORAs0PeavpKv2TStEiSchd2KDp4ZCGzWNWsAs,96
2
+ hcom/__main__.py,sha256=CdWcj4qvpDjFELcShpKZQ30RTVQxE2AdCDPd83pwD2c,93850
3
+ hcom-0.2.0.dist-info/METADATA,sha256=ZPianbn_y61bLc-mW3htCOPryQg_EJZi15Xs9y8a93k,10934
4
+ hcom-0.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
+ hcom-0.2.0.dist-info/entry_points.txt,sha256=cz9K9PsgYmORUxNKxVRrpxLS3cxRJcDZkE-PpfvOhI8,44
6
+ hcom-0.2.0.dist-info/top_level.txt,sha256=8AS1nVUWA26vxjDQ5viRxgJnwSvUWk1W6GP4g6ldZ-0,5
7
+ hcom-0.2.0.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- hcom/__init__.py,sha256=yxqzLIr5XxsUrfSe-inggLeqMM300Z4PrewklOE1FCk,96
2
- hcom/__main__.py,sha256=VsTjMMUpknJ_D638HT9KrLX7Aid0c9dPq8p020c5gZA,75178
3
- hcom-0.1.7.dist-info/METADATA,sha256=rYV5yFW1j2FFvxKSvKrSKzGSq3FzFrM3pD04x2xRpwY,10370
4
- hcom-0.1.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
- hcom-0.1.7.dist-info/entry_points.txt,sha256=cz9K9PsgYmORUxNKxVRrpxLS3cxRJcDZkE-PpfvOhI8,44
6
- hcom-0.1.7.dist-info/top_level.txt,sha256=8AS1nVUWA26vxjDQ5viRxgJnwSvUWk1W6GP4g6ldZ-0,5
7
- hcom-0.1.7.dist-info/RECORD,,
File without changes