Install
openclaw skills install token-burn-monitorReal-time token consumption monitoring dashboard for OpenClaw agents. Tracks per-agent token usage, cost breakdown by model, cache hit rates, cron job status, and 30-day historical trends. Use when setting up cost monitoring, checking daily token burn, or reviewing cron job health. User prompts are redacted by default.
openclaw skills install token-burn-monitorZero-dependency Node.js dashboard. Core API + swappable frontend themes.
server.js → Core API (stable, don't modify)
themes/default/ → Default dark dashboard theme
themes/<custom>/ → User/agent-generated themes
API.md → API contract for theme developers
config.json → Port, theme, agents, pricing overrides
bash start.sh # Start (default port 3847)
bash start.sh status # Check status
bash start.sh restart # Restart after config change
bash start.sh stop # Stop
Copy config.default.json to config.json:
{
"port": 3847,
"theme": "default",
"agents": {
"main": { "name": "Karl", "icon": "/assets/karl.png" }
},
"modelPricing": {}
}
themes/. Default: "default"PORT env var.Set OPENCLAW_AGENTS_DIR to override agent directory (default: /home/node/.openclaw/agents).
Themes live in themes/<name>/. Minimum: one index.html that fetches data from the API.
To create a custom theme:
API.md for all available endpointsthemes/my-theme/index.html"theme": "my-theme" in config.jsonThe default theme (themes/default/) is a full reference implementation.
All endpoints return JSON. GET-only. Server binds to localhost. Full docs in API.md.
| Endpoint | Description |
|---|---|
GET /api/config | Agent names and icons |
GET /api/stats?date= | All agents aggregated |
GET /api/agent/:id?date= | Single agent with per-call breakdown |
GET /api/history?days= | 30-day cost history |
GET /api/pricing | Model pricing table |
GET /api/crons | Scheduled jobs (read from filesystem) |
GET /api/cron/:id/runs | Job run history |
127.0.0.1 by default (localhost only)[redacted]), opt-in via showPrompts: true in configconnect-src 'self'; font-src 'self'OPENCLAW_AGENTS_DIR points to correct agents directory.PORT=4000 bash start.shthemes/<name>/index.html exists.