subagent-dashboard
Web dashboard for real-time monitoring and management of OpenClaw subagents. Use when monitoring or managing subagents.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/austindixson/subagent-dashboardSubagent Dashboard Skill
Web dashboard for real-time monitoring and management of OpenClaw subagents.
Installation
cd workspace/skills/subagent-dashboard/scripts
./start_dashboard.sh
Or manually:
python3 -m venv venv
source venv/bin/activate
pip install -r ../requirements.txt
python3 dashboard.py
Usage
Start the dashboard and open http://localhost:8080 in your browser.
The dashboard shows:
- All sessions from sessions.json: main (orchestrator), subagents, and optionally cron jobs
- Real-time updates (auto-refresh every 3 seconds)
- Agent details: model, age, tokens, task progress; role badges (Main / Subagent / Cron)
- Transcript viewing for each agent
- Stalled agent detection (>30 min inactive)
Purpose
Provides a web UI to:
- Monitor active subagents in real-time
- View agent transcripts and activity
- Detect and manage stalled agents
- Track task progress and token usage
Dependencies
- Flask (web server)
- flask-cors (CORS support)
- Subagent-tracker skill (for data)
Configuration
Set PORT environment variable to change the server port (default: 8080).
Integration
The dashboard uses the subagent-tracker skill to fetch data. It reads:
~/.openclaw/agents/main/sessions/sessions.json- Session list~/.openclaw/agents/main/sessions/*.jsonl- Transcript files~/.openclaw/agents/main/subagents/runs.json- Task mapping (and legacy~/.openclaw/subagents/runs.json)
Completed column: For finished tasks to appear in the Completed column, the run in runs.json must have endedAt (timestamp) and outcome.status set to "ok", "completed", or "success" when the sub-agent finishes. The dashboard appends "recently completed" runs (within 24h) even if the session was removed from sessions.json.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-austindixson-subagent-dashboard": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
what-just-happened
When the gateway comes back online, check recent logs and post a short message about what happened (restart, SIGUSR1, auth change, reconnect). User sees the response in TUI or Telegram.
agent-loops
Multi-agent workflow orchestrator. Use when the user asks to build, create, make, ship, develop, or launch any software (apps, webapps, websites, mobile apps, APIs, tools, bots, dashboards, SaaS, MVPs); fix or debug bugs; review or audit code; research topics; refactor code; or publish skills.
composio-composer-xskill
Enables posting tweets to Twitter/X through Composio's integration platform via HTTP and BeautifulSoup. Use when posting tweets or integrating with Composio.
creative-agents
Integration scripts for the creative agent swarm managed by overstory (Claude Code). Use when configuring or running researcher, social media, blog, or scribe agents.
skill-doc-formatter
Formats SKILL.md (OpenClaw/Cursor skill docs) for optimal display on ClawHub. Produces a consistent structure—Description, Installation, Usage with benefit-focused examples, and Commands—so skill pages are clear and scannable.