What problem does it solve? NanoClaw runs headless with no built-in visibility into agent groups, sessions, token usage, or message activity. This Skill adds a local monitoring dashboard and a pusher module so operators can observe the system in real time without manual log inspection. ## Core Features & Use Cases - Dashboard Installation: Installs the @nanoco/nanoclaw-dashboard npm package and copies a pusher module that POSTs JSON snapshots every 60 seconds and tails logs every 2 seconds. - Single Integration Point: Adds one colocated dynamic import and awaited startDashboard() call inside main() in src/index.ts, which no-ops when DASHBOARD_SECRET is unset. - Built-in Verification: Ships behavior and AST-based wiring tests that confirm the pusher posts real snapshots and that the code edit is present and correctly placed. - Use Case: An operator running NanoClaw on a Linux server applies this Skill, sets DASHBOARD_SECRET and DASHBOARD_PORT in .env, rebuilds, restarts the systemd service, and opens http://localhost:3100/dashboard to watch sessions, channels, users, token usage, and live logs. ## Quick Start Ask the AI to add the monitoring dashboard to your NanoClaw project and wire it into the startup sequence.