CLI tool for launching multiple Claude Code terminals with interactive subagents, headless persistence, and real-time communication via hooks
Project description
hcom - Claude Hook Comms
CLI tool for launching multiple Claude Code terminals with interactive subagents, headless persistence, and real-time communication via hooks. Works on Mac, Linux, Windows, and Android with zero dependencies.
🥦 Usage
Run without installing (uv)
uvx hcom open 2
Install
pip install hcom
hcom open 2
| Commands | |
|---|---|
hcom open [n] |
Launch n instances or named agents |
hcom watch |
View live dashboard and messaging |
hcom stop |
Disable hcom chat for instance |
hcom start |
Enable hcom chat for instance |
🦆 What It Does
hcom open adds hooks to the .claude/settings.local.json file in the current folder and launches terminals with claude code that remain active, waiting to respond to messages in the shared chat. Normal Claude Code opened with claude remains unaffected by hcom, but can opt-in via hcom start and opt-out with hcom stop.
Interactive subagents in their own terminal
# Launch subagents from your .claude/agents
hcom open -a planner -a code-writer -a reviewer
Persistent headless instances
# Launch one headless instance (default 30min timeout)
hcom open -p
hcom stop # Stop it earlier than timeout
Groups and direct messages
hcom open 2 -t cool # Creates cool-hovoa7 & cool-homab8
hcom send '@cool hi, you are cool'
hcom send '@homab8 hi, you are cooler'
Toggle HCOM in Claude Code
claude # Start normal Claude Code
'run hcom start' # Start HCOM for this instance to receive messages
'run hcom stop' # Stop HCOM for this instance, continue as normal claude code
🦷 Features
- Multi-Terminal Launch - Launch Claude Code subagents in new terminals
- Background Mode - Run headless instances without terminal windows
- Interactive subagents - Run subagents in their own terminal window
- Live Dashboard - Real-time monitoring and messaging
- Multi-Agent Communication - Instances talk to each other via shared chat
- @Mention Targeting - Send messages to specific instances or teams
- Session Persistence - Resume previous conversations automatically
- Zero Dependencies - Pure Python stdlib, works everywhere
- Cross-platform - Native support for Windows, WSL, macOS, Linux, Android
🥨 All Commands
Usage:
hcom open [count] [-a agent]... [-t prefix] [-p] [-- claude-args]
hcom watch [--logs|--status|--wait [SEC]]
hcom stop [target] [--force]
hcom start [target]
hcom send "msg"
Commands:
open Launch Claude instances (default count: 1)
watch Monitor conversation dashboard
stop Stop instances, clear conversation, or remove hooks
start Start stopped instances
send Send message to instances
Open options:
[count] Number of instances per agent (default 1)
-a, --agent AGENT Agent to launch (repeatable)
-t, --prefix PREFIX Team prefix for names
-p, --background Launch in background
Stop targets:
(no arg) Stop HCOM for current instance (when inside)
<alias> Stop HCOM for specific instance
all Stop all instances + clear & archive conversation
hooking Remove hooks from current directory
hooking --all Remove hooks from all tracked directories
everything Stop all + clear conversation + remove all hooks
Start targets:
(no arg) Start HCOM for current instance (when inside)
<alias> Start HCOM for specific instance
hooking Install hooks in current directory
Watch options:
--logs Show message history
--status Show instance status JSON
--wait [SEC] Wait for new messages (default 60s)
Stop flags:
--force Force stop (deny Bash tool use)
🗿 Examples
# Launch 3 headless instances that time out after 60 seconds of inactivity
HCOM_WAIT_TIMEOUT="60" hcom open 3 -p
# Stop all instances
hcom stop all
# Launch multiple of the same subagent
hcom open 3 -a reviewer
# Launch mixed agents with team prefix
hcom open -t api -a backend -a frontend
# Launch agent with specific prompt
HCOM_INITIAL_PROMPT='write tests' hcom open -a test-writer
# Resume instance (hcom chat will continue)
hcom open -- --resume session_id
# Text appended to all messages recieved by instance
HCOM_INSTANCE_HINTS="remember where you came from" hcom open
# Pass multiple Claude flags
hcom open -a orchestrator -- --model sonnet --resume session_id
</details>
<details>
<summary><strong>🦖 Configuration</strong></summary>
### Configuration
Settings can be changed two ways:
#### Method 1: Environment variable (temporary, per-command/instance)
```bash
HCOM_INSTANCE_HINTS="always update chat with progress" hcom open nice-subagent-but-not-great-with-updates
Method 2: Config file (persistent, affects all instances)
Config File Location
~/.hcom/config.json
| Setting | Default | Environment Variable | Description |
|---|---|---|---|
wait_timeout |
1800 | HCOM_WAIT_TIMEOUT |
How long instances wait for messages (seconds) |
max_message_size |
1048576 | HCOM_MAX_MESSAGE_SIZE |
Maximum message length (1MB) |
max_messages_per_delivery |
50 | HCOM_MAX_MESSAGES_PER_DELIVERY |
Messages delivered per batch |
sender_name |
"bigboss" | HCOM_SENDER_NAME |
Your name in chat |
sender_emoji |
"🐳" | HCOM_SENDER_EMOJI |
Your emoji icon |
initial_prompt |
"Say hi in chat" | HCOM_INITIAL_PROMPT |
What new instances are told to do |
first_use_text |
"Essential, concise messages only" | HCOM_FIRST_USE_TEXT |
Welcome message for instances |
terminal_mode |
"new_window" | HCOM_TERMINAL_MODE |
How to launch terminals ("new_window", "same_terminal", "show_commands") |
terminal_command |
null | HCOM_TERMINAL_COMMAND |
Custom terminal command (see Terminal Options) |
cli_hints |
"" | HCOM_CLI_HINTS |
Extra text added to CLI outputs |
instance_hints |
"" | HCOM_INSTANCE_HINTS |
Extra text added to instance messages |
auto_watch |
true | HCOM_AUTO_WATCH |
Auto-launch watch dashboard after open |
env_overrides |
{} | - | Additional environment variables for Claude Code |
Examples
# Change your name for one command
HCOM_SENDER_NAME="coolguy" hcom send "LGTM!"
# Make instances timeout after 60 seconds instead of 30 minutes
HCOM_WAIT_TIMEOUT=60 hcom open 3
# Custom welcome message
HCOM_FIRST_USE_TEXT="Debug session for issue #123" hcom open 2
# Bigger delivery batches
HCOM_MAX_MESSAGES_PER_DELIVERY=100 hcom watch --logs
Windows PowerShell:
# Set environment variables in PowerShell
$env:HCOM_TERMINAL_MODE="same_terminal"; hcom open agent-name
$env:HCOM_WAIT_TIMEOUT="60"; hcom open 3
$env:HCOM_INITIAL_PROMPT="go home buddy!"; hcom open
Status Indicators
When running hcom watch, each instance shows its current state:
- ▶ active (green) - Working (processing/executing)
- ▷ delivered (cyan) - Just received a message
- ◉ waiting (blue) - Waiting for messages
- ■ blocked (yellow) - Permission request pending
- ○ inactive (red) - Closed/timed out/ended
- ○ unknown (gray) - No status data or stale
- (bg) suffix - Instance running in background headless mode
🎲 How It Works
Hooks!
hcom adds hooks to your project directory's .claude/settings.local.json:
- Sending: Claude uses
hcom send "message"to communicate - Receiving: Other Claudes get notified via Stop hook or immediate delivery after sending
- Waiting: Stop hook keeps Claude in a waiting state for new messages
- Identity: Each instance gets a unique name based on session ID (e.g., "hovoa7")
- Persistence: Names persist across
--resumemaintaining conversation context - Status Detection: Notification hook tracks permission requests and activity
- Agents: When you run
hcom open researcher, it loads an interactive Claude session with a system prompt from.claude/agents/researcher.md(local) or~/.claude/agents/researcher.md(global). Specifiedmodel:andtools:are carried over
Architecture
- Single conversation - All instances share one global conversation
- Opt-in participation - Only Claude code instances launched with
hcom openjoin automatically, normal instances can usehcom start/stop - @-mention filtering - Target messages to specific instances or teams
File Structure
~/.hcom/
├── hcom.log # Conversation log
├── instances/ # Instance tracking
├── logs/ # Background process logs
├── config.json # Configuration
└── archive/ # Archived sessions
your-project/
└── .claude/
└── settings.local.json # hcom hooks
🥔 Terminal Options
Terminal Mode
Configure terminal behavior in ~/.hcom/config.json:
"terminal_mode": "new_window"- Opens new terminal window(s) (default)"terminal_mode": "same_terminal"- Opens in current terminal
Running in current terminal temporarily
# For single instances
HCOM_TERMINAL_MODE=same_terminal hcom open
Default Terminals
- macOS: Terminal.app
- Linux: gnome-terminal, konsole, or xterm
- Windows & WSL: Windows Terminal / Git Bash
- Android: Termux
Custom Terminals
Configure terminal_command in ~/.hcom/config.json (permanent) or environment variables (temporary).
How to use this
The {script} placeholder is replaced by HCOM with the path to a temporary bash script that launches Claude Code.
Your custom command just needs to:
- Accept
{script}as a placeholder that will be replaced with a script path - Execute that script with bash
Example template: your_terminal_command --execute "bash {script}"
Custom Terminal Examples
iTerm2
"terminal_command": "open -a iTerm {script}"
ttab (new tab instead of new window in Terminal.app)
"terminal_command": "ttab {script}"
wttab (new tab in Windows Terminal)
"terminal_command": "wttab {script}"
More
# WezTerm Linux/Windows
"terminal_command": "wezterm start -- bash {script}"
# Tabs from within WezTerm
"terminal_command": "wezterm cli spawn -- bash {script}"
# WezTerm macOS:
"terminal_command": "open -n -a WezTerm.app --args start -- bash {script}"
# Tabs from within WezTerm macOS
"terminal_command": "/Applications/WezTerm.app/Contents/MacOS/wezterm cli spawn -- bash {script}"
# Wave Terminal Mac/Linux/Windows. From within Wave Terminal:
"terminal_command": "wsh run -- bash {script}"
# Alacritty macOS:
"terminal_command": "open -n -a Alacritty.app --args -e bash {script}"
# Alacritty Linux:
"terminal_command": "alacritty -e bash {script}"
# Kitty macOS:
"terminal_command": "open -n -a kitty.app --args {script}"
# Kitty Linux
"terminal_command": "kitty {script}"
tmux
"terminal_command": "tmux new-window -n hcom {script}"
# tmux commands work inside tmux, start a session with:
tmux new-session 'hcom open 3' # each instance opens in new tmux window
# Or one time split-panes:
# Start tmux with split panes and 3 claude instances in hcom chat
HCOM_TERMINAL_COMMAND="tmux split-window -h {script}" hcom open 3
Android (Termux)
-
Install Termux from F-Droid (not Google Play)
-
Setup:
pkg install python nodejs npm install -g @anthropic-ai/claude-cli pip install hcom
-
Enable:
echo "allow-external-apps=true" >> ~/.termux/termux.properties termux-reload-settings
-
Enable: "Display over other apps" permission for visible terminals
-
Run:
hcom open
⚗️ Remove
Archive Conversation / Start New
hcom stop all
Stop Running Instances
# Stop specific instance
hcom stop hovoa7
# Stop all and archive
hcom stop all
Start Stopped Instances
# Start specific instance
hcom start hovoa7
Remove HCOM hooks
# Current directory
hcom stop hooking
# All directories
hcom stop hooking --all
Remove hcom Completely
- Remove hcom:
rm /usr/local/bin/hcom(or wherever you installed hcom) - Remove all data:
rm -rf ~/.hcom
🦐 Requirements
- Python 3.10+
- Claude Code
🌮 License
- MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hcom-0.4.0.tar.gz.
File metadata
- Download URL: hcom-0.4.0.tar.gz
- Upload date:
- Size: 51.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9906866da75724ceda2427ff882e612d6519e0f17242f49bb5ea49994c676ca0
|
|
| MD5 |
31d75eb2a1a3e82461d6757a8551da90
|
|
| BLAKE2b-256 |
110af37f7ccea6b2be45a506666df445250c2c0bb9deea86e7d946240d26bdd4
|
File details
Details for the file hcom-0.4.0-py3-none-any.whl.
File metadata
- Download URL: hcom-0.4.0-py3-none-any.whl
- Upload date:
- Size: 45.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df513772930f79e46dd1784a38b744f1cd78e65c372d4a2a83dfde1fe50349c5
|
|
| MD5 |
bfa960a32a7d9496d3eeba5fc17c070f
|
|
| BLAKE2b-256 |
9daea833a35b7a04b60216b0a731d038c9c8f0ac0a1c2893e50fc52c00efa2d8
|