Design & media

OpenClaw Dashboard

Try it

Operate and extend the read-only OpenClaw dashboard backend, frontend tabs, and security model.

What it does

A modular operations dashboard for OpenClaw built around a backend with one provider file per data domain (sessions, ledger, cron, watchdog, DGX Spark, system, local API hub, meeting Copilot, ground truth, tasks, config) and a tab-based frontend (Overview, Cost, Cron, Health, Spark, Copilot, Config). Runtime state is stored outside the skill directory under `~/.openclaw/dashboard/`. The shipped surface is intentionally read-only — no task or file mutations, restarts, model changes, or package updates. Auth requires `OPENCLAW_AUTH_TOKEN`, uses an HttpOnly cookie or `Authorization: Bearer` header, and restricts CORS to loopback by default. Copilot and the config endpoint are off until explici…

When to use it

  • Adding or fixing a backend route under `backend/providers/`
  • Updating behavior in a `frontend/tabs/` tab or `frontend/shared/` helper
  • Auditing the dashboard before a public release for hardcoded tokens or absolute paths
  • Extending DGX Spark task history or enabling the opt-in meeting Copilot

The skill document

OpenClaw Dashboard Skill

Preview

The published screenshots use deterministic ?preview=1 sample data, never local host or workspace data.

OpenClaw Dashboard overview

OpenClaw Dashboard usage analytics

🛠️ Installation

Tell OpenClaw: "Install the openclaw-dashboard skill." The agent will handle the installation and configuration automatically.

2. Manual Installation (CLI)

openclaw skills install @jonathanjing/openclaw-dashboard

Mission

Keep this repository public-safe and easy to run. Prioritize:

  1. Secret sanitization
  2. Minimal setup steps
  3. Stable API/UI behavior

Architecture (v2.0)

The dashboard uses a modular backend + tab-based frontend architecture.

Backend entry point: backend/server.js
Business logic: backend/providers/ — one file per data domain
Frontend: frontend/tabs/ + frontend/shared/ — one JS file per tab
Runtime data: stored in ~/.openclaw/dashboard/ (outside skill dir, not Git-tracked)

Provider map

ProviderRoutesResponsibility
sessions.js/ops/sessions, /api/sessionsSession stats + model
ledger.js/ops/ledger/*, /api/cost/*SQLite token/cost data
cron.js/ops/cron, /ops/cron-costs, /cron/todayCron jobs + run history + cost breakdown
watchdog.js/ops/watchdogWatchdog state + timeline
spark.js/ops/dgx-status, /api/spark/*DGX Spark inference node
system.js/ops/systemHost metrics (CPU/RAM/disk)
local-api-hub.js/ops/local-api-hub/*Unified local control-plane status
spark-tasks.js/api/spark/tasks/*DGX task history and PR Hunter output
copilot.js/api/copilot/status, /api/copilot/wsOpt-in realtime transcript/RAG/insights
ground-truth.js/api/ground-truth/*, /ops/modelsModel registry + colors
tasks.js/tasks, /tasks/:id, /logsRead-only task/history views
config.js/ops/config, /files, /skillsRead-only config, file, and skill views
ops-legacy.js/ops/channels, /ops/alltime, /ops/audit, /memoryRead-only compatibility views

Frontend tab map

TabFileKey functions
Overviewtabs/overview.jsloadSessions(), loadTasks()
Costtabs/cost.jsloadOpsChannels(), loadOpsAlltime()
Crontabs/cron.jsloadCronEnhanced(), loadCronCosts(), loadCronRuns()
Healthtabs/health.jsrenderAgentMonitor(), loadSystemInfo(), renderWatchdogStatus()
Sparktabs/spark-monitor.jsloadSparkMonitor(), task history, GPU activity
Copilottabs/copilot.jscapability check, microphone stream, transcript/RAG/insights
Configtabs/config.jsloadConfig(), loadSkills(), loadFileList()
Sharedshared/api.jsAuth, apiFetch(), watchdog renderers, toast, markdown
Sharedshared/ui-utils.jstimeSince(), task state
Sharedshared/boot.jsInit, week nav, chart renderers, confirm dialog

Apply when

Use this skill for:

  • Dashboard feature requests (sessions, cost, cron, watchdog, operations)
  • Backend route additions/fixes in backend/providers/
  • Frontend behavior updates in frontend/tabs/ or frontend/shared/
  • README, setup, and environment simplification
  • Public release checks for accidental sensitive data

Key rules for agents editing this codebase

  1. No duplicate function definitions across api.js and ui-utils.js. Shared utilities belong in api.js (loaded first). ui-utils.js only holds timeSince() and task state.
  2. Cross-tab function calls are implicit — JS shares the same window scope. Keep shared helpers in shared/ files.
  3. Runtime data goes to ~/.openclaw/dashboard/, not skill root. Path is set in backend/lib/config.js via OPENCLAW_DASHBOARD_TASKS env or default.
  4. /ops/models returns { registry: {...object...}, colors, displayNames, models }registry must be an object keyed by alias, not an array.
  5. /ops/cron-costs returns { summary, jobs, dailyTrend, review, rows } — all five keys required for Cron tab to render correctly.
  6. hideStale query param on /ops/sessions filters sessions with no activity for 7+ days.
  7. Frontend API calls are same-origin. Never reintroduce a hardcoded dashboard/gateway port list.
  8. Copilot is opt-in. Require OPENCLAW_ENABLE_COPILOT=1, an API key, authenticated WebSocket upgrade, and safe dependency failure states.
  9. Parse request URLs against a fixed internal base. Never build a URL from the request Host header.
  10. Treat query-token login as a compatibility handoff only. Set the cookie and redirect before serving HTML; never accept query tokens on API routes.
  11. Parse cookies per fragment. Split on the first =, catch percent-decoding errors, and encode cookie values when setting them.
  12. Keep the shipped dashboard read-only. Do not add task/file mutations, restart/doctor actions, model changes, package updates, backup/restore, or legacy proxying.
  13. Scope Copilot Redis events by meeting ID. Permit unscoped legacy channels only for the first active meeting.
  14. Track the launcher and test harness. Keep start.sh and scripts/test-dashboard.js in both Git and package.json#files.
  15. Use theme tokens in canvas rendering. Never hardcode light-only chart text or borders.

OpenClaw design alignment

  • Reuse the current Control UI tokens: Inter/system typography, layered neutral surfaces, thin borders, 10–14px radii, red primary accent, semantic green/yellow/red/blue.
  • Keep the desktop shell as left navigation + sticky topbar; use bottom navigation on narrow screens.
  • Prefer flat cards and strong information hierarchy over gradients, glow, or decorative motion.
  • Support dark and light modes, visible focus states, reduced motion, and responsive layouts.
  • Keep IDs and data-tab contracts stable when changing navigation or visual structure.

Public-safety guardrails

  • Never hardcode tokens, API keys, cookies, or host-specific secrets.
  • Require OPENCLAW_AUTH_TOKEN; do not start the dashboard without authentication.
  • Never commit machine-specific absolute paths.
  • Prefer process.env.* and safe defaults based on HOME.
  • Keep examples as placeholders (your_token_here, /path/to/...).
  • If uncertain, redact first and ask the user before exposing details.
  • Keep sensitive behaviors opt-in (do not silently load local secret files).

Runtime access declaration

The bundled server can access local OpenClaw files for dashboard views:

  • Sessions, cron runs, watchdog state under ~/.openclaw/...
  • Local workspace files under OPENCLAW_WORKSPACE
  • Task data in ~/.openclaw/dashboard/tasks.json
  • Task attachments in ~/.openclaw/dashboard/attachments/

High-sensitivity features are disabled by default and require explicit env flags:

  • OPENCLAW_ENABLE_CONFIG_ENDPOINT=1 to expose /ops/config
  • OPENCLAW_ENABLE_COPILOT=1 plus ALIBABA_CLOUD_API_KEY to enable meeting Copilot

Network security:

  • CORS restricted to loopback by default.
  • Auth via HttpOnly cookie (ds) or Authorization: Bearer header.
  • Set DASHBOARD_COOKIE_SECURE=1 only when the dashboard origin uses HTTPS.
  • Set OPENCLAW_CONTROL_UI_URL to the complete runtime URL when Gateway TLS or gateway.controlUi.basePath is enabled.
  • Set DASHBOARD_CORS_ORIGINS (comma-separated) for external origins.

Default implementation workflow

  1. Identify which provider or tab file owns the feature.
  2. Implement the smallest change that preserves behavior.
  3. Check: does any other tab/shared file also define the same function? If yes, deduplicate.
  4. Run a sensitive-string scan before finalizing.
  5. Run npm test, git diff --check, and npm pack --dry-run --json.
  6. Ensure docs match the actual runtime defaults.

Sensitive-data checks

Before final response, scan for:

  • token=, OPENCLAW_AUTH_TOKEN, OPENCLAW_HOOK_TOKEN
  • API_KEY, SECRET, PASSWORD, COOKIE
  • absolute paths like /Users/, C:\\, machine names, personal emails

If found: replace with env-based values or placeholders, and mention what was sanitized.

Files to touch most often

  • backend/providers/*.js — server behavior and API routes
  • frontend/tabs/*.js — tab-specific UI logic
  • frontend/shared/api.js — auth, fetch, shared renderers
  • backend/lib/config.js — path and env configuration
  • README.md — quick start and operator docs
  • env.example.txt — ClawHub-compatible public-safe environment template
  • env.example — compatibility mirror for Git/npm workflows

Questions people ask

Does this dashboard mutate OpenClaw tasks, files, or packages?
No. The shipped dashboard is read-only by rule — task/file mutations, restart and doctor actions, model changes, package updates, and backup/restore are explicitly out of scope.
How is access protected?
`OPENCLAW_AUTH_TOKEN` is required to start the server; requests authenticate via an HttpOnly `ds` cookie or `Authorization: Bearer`; CORS is restricted to loopback unless `DASHBOARD_CORS_ORIGINS` is set.
Where does runtime data live?
Runtime files go to `~/.openclaw/dashboard/` (configurable via `OPENCLAW_DASHBOARD_TASKS`), never inside the skill directory, keeping the repository Git-clean and public-safe.

Related skills

Route OpenClaw CLI requests to the right command family and profile, then verify the outcome.

337 installs7 stars

Diagnose, audit, and repair OpenClaw hosts when an agent, gateway, plugin, cron, model route, memory engine, channel, approval policy, or update looks broken...

10 installs1 stars

Deploy, diagnose, and operate an unattended GitHub-repo optimization loop for OpenClaw with multi-CLI failover, layered timeout controls, report-only audit g...

10 installs

Use when updating OpenClaw or debugging an OpenClaw instance after an update. This skill acts as a structured update runbook with emphasis on gateway startup...

21 installs2 stars

Query the local OpenClaw docs index for accurate answers about configuration, features, CLI commands, channels, providers, plugins, cron, sessions, agents, protocol, and troubleshooting. Faster and more accurate than relying on training data for OpenClaw specifics. Zero API calls, sub-10ms queries. Useful for: openclaw, configure, gateway, channel, cron, provider, plugin, session, heartbeat, protocol, skill, model, agent questions.

32 installs

Monitor OpenClaw gateway health and report incidents to Discord with read-only checks and cooldown dedupe.

41 installs