hcom 0.2.2__tar.gz → 0.3.0__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.
- {hcom-0.2.2/src/hcom.egg-info → hcom-0.3.0}/PKG-INFO +11 -11
- {hcom-0.2.2 → hcom-0.3.0}/README.md +9 -9
- {hcom-0.2.2 → hcom-0.3.0}/pyproject.toml +2 -2
- {hcom-0.2.2 → hcom-0.3.0}/src/hcom/__init__.py +1 -1
- {hcom-0.2.2 → hcom-0.3.0}/src/hcom/__main__.py +754 -840
- {hcom-0.2.2 → hcom-0.3.0/src/hcom.egg-info}/PKG-INFO +11 -11
- {hcom-0.2.2 → hcom-0.3.0}/MANIFEST.in +0 -0
- {hcom-0.2.2 → hcom-0.3.0}/setup.cfg +0 -0
- {hcom-0.2.2 → hcom-0.3.0}/src/hcom.egg-info/SOURCES.txt +0 -0
- {hcom-0.2.2 → hcom-0.3.0}/src/hcom.egg-info/dependency_links.txt +0 -0
- {hcom-0.2.2 → hcom-0.3.0}/src/hcom.egg-info/entry_points.txt +0 -0
- {hcom-0.2.2 → hcom-0.3.0}/src/hcom.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hcom
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: CLI tool for launching multiple Claude Code terminals with interactive subagents, headless persistence, and real-time communication via hooks
|
|
5
5
|
Author: aannoo
|
|
6
6
|
License-Expression: MIT
|
|
@@ -22,13 +22,13 @@ Classifier: Topic :: Communications :: Chat
|
|
|
22
22
|
Classifier: Topic :: Software Development
|
|
23
23
|
Classifier: Topic :: System :: Monitoring
|
|
24
24
|
Classifier: Topic :: Terminals
|
|
25
|
-
Requires-Python: >=3.
|
|
25
|
+
Requires-Python: >=3.10
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
27
27
|
|
|
28
28
|
# hcom - Claude Hook Comms
|
|
29
29
|
|
|
30
30
|
[](https://pypi.org/project/hcom/)
|
|
31
|
-
[](https://opensource.org/license/MIT) [](https://opensource.org/license/MIT) [](https://python.org) [](https://deepwiki.com/aannoo/claude-hook-comms)
|
|
32
32
|
|
|
33
33
|
CLI tool for launching multiple Claude Code terminals with interactive [subagents](https://docs.anthropic.com/en/docs/claude-code/sub-agents), headless persistence, and real-time communication via [hooks](https://docs.anthropic.com/en/docs/claude-code/hooks). Works on Mac, Linux, Windows, and Android with zero dependencies.
|
|
34
34
|
|
|
@@ -233,12 +233,12 @@ $env:HCOM_INITIAL_PROMPT="go home buddy!"; hcom open
|
|
|
233
233
|
|
|
234
234
|
When running `hcom watch`, each instance shows its current state:
|
|
235
235
|
|
|
236
|
-
-
|
|
237
|
-
- ▷ **
|
|
238
|
-
- ▶ **executing** (green) - Running tools
|
|
236
|
+
- ▶ **active** (green) - Working (processing/executing)
|
|
237
|
+
- ▷ **delivered** (cyan) - Just received a message
|
|
239
238
|
- ◉ **waiting** (blue) - Waiting for messages
|
|
240
|
-
- ■ **blocked** (yellow) - Permission
|
|
241
|
-
- ○ **inactive** (red) - Timed out/
|
|
239
|
+
- ■ **blocked** (yellow) - Permission request pending
|
|
240
|
+
- ○ **inactive** (red) - Timed out/disconnected
|
|
241
|
+
- ○ **unknown** (gray) - No status data
|
|
242
242
|
- **(bg)** suffix - Instance running in background headless mode
|
|
243
243
|
|
|
244
244
|
</details>
|
|
@@ -250,8 +250,8 @@ When running `hcom watch`, each instance shows its current state:
|
|
|
250
250
|
|
|
251
251
|
hcom adds hooks to your project directory's `.claude/settings.local.json`:
|
|
252
252
|
|
|
253
|
-
1. **Sending**: Claude agents use
|
|
254
|
-
2. **Receiving**: Other Claudes get notified via
|
|
253
|
+
1. **Sending**: Claude agents use `$HCOM send "message"` internally (you use `hcom send` from terminal or dashboard)
|
|
254
|
+
2. **Receiving**: Other Claudes get notified via Stop hook or immediate delivery after sending
|
|
255
255
|
3. **Waiting**: Stop hook keeps Claude in a waiting state for new messages
|
|
256
256
|
|
|
257
257
|
- **Identity**: Each instance gets a unique name based on session ID (e.g., "hovoa7")
|
|
@@ -437,7 +437,7 @@ hcom cleanup --all
|
|
|
437
437
|
|
|
438
438
|
## 🦐 Requirements
|
|
439
439
|
|
|
440
|
-
- Python 3.
|
|
440
|
+
- Python 3.10+
|
|
441
441
|
- [Claude Code](https://claude.ai/code)
|
|
442
442
|
|
|
443
443
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# hcom - Claude Hook Comms
|
|
2
2
|
|
|
3
3
|
[](https://pypi.org/project/hcom/)
|
|
4
|
-
[](https://opensource.org/license/MIT) [](https://opensource.org/license/MIT) [](https://python.org) [](https://deepwiki.com/aannoo/claude-hook-comms)
|
|
5
5
|
|
|
6
6
|
CLI tool for launching multiple Claude Code terminals with interactive [subagents](https://docs.anthropic.com/en/docs/claude-code/sub-agents), headless persistence, and real-time communication via [hooks](https://docs.anthropic.com/en/docs/claude-code/hooks). Works on Mac, Linux, Windows, and Android with zero dependencies.
|
|
7
7
|
|
|
@@ -206,12 +206,12 @@ $env:HCOM_INITIAL_PROMPT="go home buddy!"; hcom open
|
|
|
206
206
|
|
|
207
207
|
When running `hcom watch`, each instance shows its current state:
|
|
208
208
|
|
|
209
|
-
-
|
|
210
|
-
- ▷ **
|
|
211
|
-
- ▶ **executing** (green) - Running tools
|
|
209
|
+
- ▶ **active** (green) - Working (processing/executing)
|
|
210
|
+
- ▷ **delivered** (cyan) - Just received a message
|
|
212
211
|
- ◉ **waiting** (blue) - Waiting for messages
|
|
213
|
-
- ■ **blocked** (yellow) - Permission
|
|
214
|
-
- ○ **inactive** (red) - Timed out/
|
|
212
|
+
- ■ **blocked** (yellow) - Permission request pending
|
|
213
|
+
- ○ **inactive** (red) - Timed out/disconnected
|
|
214
|
+
- ○ **unknown** (gray) - No status data
|
|
215
215
|
- **(bg)** suffix - Instance running in background headless mode
|
|
216
216
|
|
|
217
217
|
</details>
|
|
@@ -223,8 +223,8 @@ When running `hcom watch`, each instance shows its current state:
|
|
|
223
223
|
|
|
224
224
|
hcom adds hooks to your project directory's `.claude/settings.local.json`:
|
|
225
225
|
|
|
226
|
-
1. **Sending**: Claude agents use
|
|
227
|
-
2. **Receiving**: Other Claudes get notified via
|
|
226
|
+
1. **Sending**: Claude agents use `$HCOM send "message"` internally (you use `hcom send` from terminal or dashboard)
|
|
227
|
+
2. **Receiving**: Other Claudes get notified via Stop hook or immediate delivery after sending
|
|
228
228
|
3. **Waiting**: Stop hook keeps Claude in a waiting state for new messages
|
|
229
229
|
|
|
230
230
|
- **Identity**: Each instance gets a unique name based on session ID (e.g., "hovoa7")
|
|
@@ -410,7 +410,7 @@ hcom cleanup --all
|
|
|
410
410
|
|
|
411
411
|
## 🦐 Requirements
|
|
412
412
|
|
|
413
|
-
- Python 3.
|
|
413
|
+
- Python 3.10+
|
|
414
414
|
- [Claude Code](https://claude.ai/code)
|
|
415
415
|
|
|
416
416
|
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "hcom"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.3.0"
|
|
8
8
|
description = "CLI tool for launching multiple Claude Code terminals with interactive subagents, headless persistence, and real-time communication via hooks"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
11
|
license = "MIT"
|
|
12
12
|
authors = [{name = "aannoo"}]
|
|
13
13
|
keywords = ["claude", "claude-code", "hooks", "agents", "cli", "multi-agent", "orchestration", "terminal"]
|