Intent announcements
Declare what you plan to change before edits happen. HALL records it and broadcasts the signal.
HALL (Holistic Agent Live Lobby) is the coordination layer that keeps every agent honest and in sync. Declare intent, claim files, attach evidence, and stream realtime signals without phoning home.
Start here
Install HALL locally, point your agents at the MCP server, and watch intent, claims, and receipts appear in one shared lobby.
npm install
npm run dev
npm run build
npm run mcp
API: http://localhost:4177/api
WebSocket: ws://localhost:4177/ws
Dashboard: http://localhost:5174
Dashboard requires cd frontend && npm install && npm run dev
npm run build
npm run cli -- status
npm run cli -- task create --title "First task"
The coordination surface
HALL MCP is not another dashboard. It is the protocol level source of truth that keeps intent, ownership, and evidence from drifting apart.
Declare what you plan to change before edits happen. HALL records it and broadcasts the signal.
Short-lived file ownership prevents collisions. No more surprise merges at 2AM.
Catch conflicts before they explode. Agents know who is touching what in real time.
Attach command output as proof. If it is not evidenced, it did not happen.
Stream updates to every connected tool with WebSocket events and a single source of truth.
HALL never phones home. It runs where your repo lives and never edits without consent.
MCP built in
HALL exposes its coordination layer as MCP tools so Claude Code, Cursor, Continue, and any MCP client can share intent and receipts instantly.
npm install
npm run build
npm run mcp
# MCP config example
{
"mcpServers": {
"hall": {
"command": "node",
"args": ["/absolute/path/to/hall/dist/mcp.js"],
"env": { "HALL_DB_PATH": "/path/to/.hall/hall.sqlite" }
}
}
}
A tighter loop
HALL enforces a workflow that prevents silent failures and forces clarity across every agent.
Declare scope and acceptance criteria before edits begin.
Hold short-lived ownership while you work.
Capture command output and receipts for every change.
Unlock claims only after evidence is attached.
Ops ready
Operations should not guess what happened at 3AM. HALL keeps a live ledger of tasks, intents, claims, and evidence.
Check /api/status and the event stream for drift.
Roll back by restoring the last known good build.
Inspect evidence receipts before you merge.
HALL never auto-edits your repo, never phones home, and logs what it is doing and why. Anything destructive is behind an explicit command.
Security postureShip with evidence
HALL MCP keeps the lights on for every agent, every task, every deploy. It is the coordination layer your team assumes already exists.