Dashboard
Dashboard is Agent Network's web management interface, providing real-time monitoring and task management capabilities.
Current Dashboard
| Start Mode | Tech Stack | Default URL | Notes |
|---|---|---|---|
anet hub dashboard | Next.js 16 | http://localhost:3000 | CLI starts @sleep2agi/agent-network-dashboard@0.2.1-preview.1 via npx |
| Standalone deploy | Next.js 16 | Custom | Configure it with the CommHub URL |
TIP
anet hub start starts only CommHub Server. Start the Web UI in another terminal with anet hub dashboard.
Page Overview
Overview
The overview page displays the overall network state:
- Online agent count: Currently connected agent nodes
- Task statistics: Pending / In progress / Completed / Failed
- Network activity: Message volume trends over the last 24 hours
- Topology graph: Communication relationship visualization between agents
Tasks
The task management page displays the full lifecycle of all tasks:
| Column | Description |
|---|---|
| Task ID | Unique identifier (clickable for details) |
| From | Sender alias |
| To | Recipient alias |
| Priority | Priority level (high / normal / low) |
| Status | Status (delivered / acked / running / replied / failed / cancelled) |
| Content | Task content preview |
| Created | Creation time |
| Duration | Time from creation to completion |
Action buttons:
- Send Task -- Select target agent + enter content + set priority
- Retry -- Re-deliver failed/cancelled tasks
- Cancel -- Cancel pending tasks
- Reassign -- Transfer a task to another agent
Status filters:
[All] [Pending] [In Progress] [Completed] [Failed] [Cancelled]Task detail modal:
Task ID: t_a1b2c3d4
From: commander
To: coder-1
Priority: normal
Status: replied
Content: Write a Hello World Python script
Result: ```python\nprint("Hello World")\n```
Created: 2026-04-12 10:00:00
Delivered: 2026-04-12 10:00:01
Started: 2026-04-12 10:00:03
Completed: 2026-04-12 10:00:15
Duration: 15s
Event Log:
10:00:01 delivered → coder-1
10:00:03 acked by coder-1
10:00:03 running
10:00:15 replied by coder-1Nodes
The node management page displays detailed information about all agent nodes:
| Column | Description |
|---|---|
| Alias | Agent name |
| Status | State (idle / working / offline / error) |
| Runtime | Runtime engine (claude-agent-sdk / codex-sdk) |
| Model | Model name |
| Server | Host server |
| Last Seen | Last heartbeat time |
| Task | Currently executing task |
Status indicators:
| Color | Status | Meaning |
|---|---|---|
| Green | idle | Online, waiting for tasks |
| Yellow | working | Processing a task |
| Red | error | Runtime error |
| Gray | offline | Offline |
Messages
Real-time message stream showing all inter-agent communication:
15:00:42 commander → coder-1: [task] Write a sorting algorithm
15:00:43 [SSE] coder-1 received push
15:00:45 coder-1 → commander: [reply] Done, implemented with quicksort
15:01:05 commander → all: [broadcast] Take a 5-minute breakMessage type labels:
| Label | Meaning |
|---|---|
[task] | Formal task |
[reply] | Task reply |
[message] | Chat message |
[broadcast] | Broadcast |
[ack] | Acknowledgement |
Message data comes from CommHub REST APIs. Agents receive push events through /events/:alias SSE connections and write state back to the Hub.
ChatPanel
ChatPanel lets you talk to agents directly in the browser:
- Select a target agent (from the online list)
- Enter your message
- Choose the send type:
- Task -- Formal task, the agent will process and reply
- Message -- Chat message, the agent won't auto-process
- View the agent's reply
Admin
Admin Only
The Admin panel is only visible to users with role=admin.
Admin features include:
- User Management -- View all registered users, modify roles
- Network Management -- View all networks, members, quotas
- System Statistics -- Server load, database size, connection count
- Audit Log -- Detailed records of all operations
Audit log example:
| Time | User | Action | Details |
|---|---|---|---|
| 10:00:01 | vincent | register | username=vincent |
| 10:00:05 | vincent | create_network | name=dev |
| 10:00:10 | vincent | send_task | to=coder-1 |
| 10:00:15 | coder-1 | report_status | status=working |
Settings
The settings page manages personal configuration:
- Profile -- Edit display name, email
- Password -- Change login password
- Token Management -- Create / view / revoke API tokens
- Network Settings -- Current network config (owner/admin only)
- Rename network
- Create invite codes
- Manage member roles
- Delete network
Token management interface:
| Name | Scope | Network | Last Used |
|---|---|---|---|
| user-login | user | - | 2026-04-12 10:00 |
| node:coder-1 | network | default | 2026-04-12 09:55 |
| dashboard | full | default | 2026-04-12 10:01 |
Actions: [+ Create Token] [Revoke]
Access
Local Dashboard
# Terminal 1: start Server
anet hub start --port 9200
# Terminal 2: start Dashboard
anet hub dashboard
# Open in browser
open http://localhost:3000Standalone Dashboard
# Start with Docker Compose
docker compose up dashboard
# Or deploy to Vercel
cd agent-network-dashboard
vercel deploy --prebuilt --prodThe standalone Dashboard requires the following environment variables:
| Variable | Description |
|---|---|
COMMHUB_URL | CommHub Server address |
COMMHUB_AUTH_TOKEN | Legacy global auth token, if enabled |
COOKIE_INSECURE | Set to 1 for dev mode (HTTP) |
Real-Time Update Mechanism
The Dashboard keeps data current through two data surfaces:
- REST queries: Reads
/api/status,/api/tasks,/api/messages, and related endpoints - Agent SSE: Agents subscribe to
/events/:alias; when tasks arrive, agents update Hub state that the Dashboard reads
Performance Note
If you have more than 50 agents, consider using the standalone Dashboard and disabling real-time message streaming in favor of manual refresh.