AgentHub is a self-hosted AI agent control plane for long-lived coding agents, structured ACP timelines, multi-agent Team workflows, and optional remote execution nodes.
It is designed for teams that want one product surface for long-running coding agents, structured ACP review, shared Team coordination, and remote execution without introducing a separate control plane.
Quick links: Docs Site Β· Install AgentHub Β· Why AgentHub Β· Remote Agent Nodes Β· Documentation Β· Developer Docs
Most agent tools are optimized for a single terminal session. AgentHub is built for the operational side of agent workflows.
It keeps long-running agents, structured ACP review, Team coordination, remote agent nodes, and persistent runtime state in one product surface instead of splitting them across disposable chats, terminal tabs, and ad hoc scripts.
In practice, AgentHub sits closer to an AI agent control plane or shared workbench than to a thin prompt UI.
- Create, start, stop, reconnect, and delete agents
- View ACP events such as messages, plans, tool calls, command output, and debug streams
- Run multi-agent Team workflows with coordinator/worker coordination
- Install AgentHub as an app-like PWA shell while still picking up fresh web deploys on refresh
- Register remote execution nodes and start agents on those nodes
- Persist session history and operational records in SQLite
- Receive completion notifications in the web UI
AgentHub publishes Homebrew release binaries through the
linkerdog/homebrew-tap tap.
brew tap linkerdog/homebrew-tap
brew install linkerdog/homebrew-tap/agenthubInstalled binaries:
agenthubagenthub-codex-acpagenthub-acp
To run AgentHub in the background:
brew services start linkerdog/homebrew-tap/agenthubAgentHub reads config from ~/.agenthub/config.toml.
To create that file interactively:
agenthub initMinimal example:
[server]
listen = "127.0.0.1:8080"Then open http://localhost:8080.
Current release binaries are available for:
- macOS Apple Silicon (
darwin-arm64) - Linux
x86_64 - Linux
aarch64
For local source development, contributor setup, repository layout, and common commands, see docs/developer-setup.md.
AgentHub is a Rust-based control plane for operating AI agents beyond one ephemeral terminal tab.
It combines:
- a single Rust backend
- an embedded React web UI
- ACP-based structured output rendering
- SQLite-backed persistence
- Team coordinator/worker orchestration
- optional remote execution over internal gRPC
The main design goal is simple: keep AI agents observable, controllable, and recoverable even when the browser closes, the task lasts for hours, or the work must be split across multiple agents and machines.
AgentHub is built for engineering teams that want a practical AI agent workspace instead of a disposable chat box.
β³Long-lived agent control- Keep coding agents alive across browser refreshes and disconnects
π§ΎStructured ACP timelines- Inspect plans, tool calls, command output, and replayable history
π₯Team workflows- Coordinate coordinator/worker execution with channels, Kanban, and ACP views
πRemote agent nodes- Run agents on other machines while keeping one main control plane
πΎPersistent runtime state- Store session history, operational state, and audit records in SQLite
In one product surface, you can:
- create, start, stop, reconnect, and delete agents
- keep sessions alive after the browser tab closes
- restart or recover stuck sessions without losing the operational surface
- review structured agent output and replayable history
- inspect per-agent execution details when runtime debugging is needed
- run multi-agent Team workflows in a shared workspace
- route execution to remote nodes when one machine is not enough
AgentHub includes a Team workbench for coordinator/worker coordination.
Core concepts:
Channelsfor shared coordination# allas the default Team laneKanbanas the canonical Team task surface- per-member ACP inspection when deep runtime debugging is needed
π₯Multi-agent collaboration- Organize multiple AI agents in one Team instead of one isolated session.
π§©Shared workspace- Keep people and agents in one workspace with shared context and progress.
π¬Channel-based communication- Talk to the whole Team in shared channels instead of scattered side sessions.
π§΅Threaded follow-up- Reply in thread for a specific question or update without derailing the main channel.
πTask coordination- Manage planning, ownership, and status transitions in a dedicated task surface.
πVisible progress- See what each agent is doing, what changed, and where work is blocked.
πPer-agent inspection- Open one member and inspect its ACP timeline and execution details directly.
β±οΈBuilt for long-running work- Let Team work continue beyond one browser session or one short interactive turn.
π οΈRole-based division of work- Split planning, implementation, review, and verification across different agents.
ποΈUnified control surface- Start, stop, inspect, and steer the whole Team from one product interface.
πRemote execution ready- Run Team members on different machines while keeping one shared control plane.
If you want remote execution, run the same agenthub binary on the remote
machine and enable internal gRPC on both the main node and the remote node.
[internal_grpc]
enabled = true
listen = "0.0.0.0:50051"
[internal_grpc.security]
mode = "mtls" # mtls | tls | disabled
cert_dir = "~/.agenthub/internal-grpc"
[internal_grpc.auth]
shared_secret = "replace-me"
issuer = "agenthub"
audience = "agenthub-internal"Then register the remote node from the Agents page or the agent_nodes API
with:
idgrpc_targettls_server_namedefault_worktree_root(optional)
For the current contract, see docs/features/agent-nodes.md.
- Docs site: doc.agenthub.hawkingrei.com
- Product overview: Product Overview
- Feature overview: Feature Overview
- Installation: Installation and Startup
- Team workbench guide: Team Workbench
- Agent nodes: Agent Nodes and Remote Execution
- Developer docs index: docs/README.md
- Developer setup: docs/developer-setup.md
- Architecture map: docs/architecture-map.md
- Active engineering backlog: docs/todo.md
- Project charter and constraints: AGENTS.md
AgentHub is a strong fit for:
- engineers running long-lived coding agents
- teams experimenting with coordinator/worker multi-agent workflows
- operators who need structured runtime visibility
- organizations that want self-hosted agent control instead of opaque hosted sessions
- users who need one control plane across local and remote execution targets
Source development workflow, repository layout, common commands, and CI expectations live in docs/developer-setup.md.
Apache-2.0