agenthub/README.md
2026-06-25 12:43:05 +02:00

924 B

AgentHub

Local coordination layer for AI coding agents.

Install

npx agenthub init

Quick Start

agenthub init
agenthub task create --title "Implement DNS cache" --role implementer
agenthub handoff create --fromRole architect --toRole implementer
agenthub status --update

Supported Agents

  • Claude Code
  • Codex CLI
  • Kimi Code CLI

Network Mode

AgentHub can expose a project to other machines on the same network.

On the host machine (e.g. Mac):

cd my-project
agenthub init
agenthub server start --host 0.0.0.0 --port 3377

On another machine (e.g. Windows):

$env:AGENTHUB_SERVER="http://<mac-ip>:3377"
agenthub task create --title "Windows task" --role implementer
agenthub status

Use --server http://<ip>:3377 on each command instead of the environment variable if you prefer.

init always runs locally on the host machine.

License

MIT