54 lines
1.1 KiB
Markdown
54 lines
1.1 KiB
Markdown
# AgentHub
|
|
|
|
Local coordination layer for AI coding agents.
|
|
|
|
## Install
|
|
|
|
```bash
|
|
npx agenthub init
|
|
```
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
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):
|
|
|
|
```bash
|
|
cd my-project
|
|
agenthub init
|
|
agenthub server start --host 0.0.0.0 --port 3377
|
|
```
|
|
|
|
On another machine (e.g. Windows) run `init` once and point it at the host:
|
|
|
|
```powershell
|
|
cd my-project
|
|
agenthub init --server http://<mac-ip>:3377
|
|
agenthub task create --title "Windows task" --role implementer
|
|
agenthub status
|
|
```
|
|
|
|
After `init`, every command automatically talks to the configured server. You can still override it per command with `--server http://<ip>:3377` or via the `AGENTHUB_SERVER` environment variable.
|
|
|
|
The `init --server` step only stores the server URL locally; it does not create a second project. The host machine keeps the single source of truth.
|
|
|
|
## License
|
|
|
|
MIT
|