Add clidash (CLI-derived read-only dashboard)
Installs a zero-dependency, read-only web dashboard that builds its tabs and tables at runtime from any CLI that lists resources as JSON.
Dev & CodingIntermediate★ 30,840⑂ 12,826AI score 7/10Last updated: Sep 23, 2026
What it does
- Copies a self-contained
tools/clidash/directory into your repo — no dependencies, no build step, no changes to NanoClawsrc/. - Runs the CLIs listed in your config (
ncl,docker,kubectl, …), parses their JSON, and assembles the UI at runtime: one tab per resource, table columns derived from the rows themselves. - Ships pre-wired for NanoClaw with an Agents overview (green <15m / amber <2h / red older), per-session message activity charts, a log tail over an allowlist of files, and a read-only viewer for group skills,
CLAUDE.md, and profiles. - Walks you through config copy →
npm testwith a stub CLI →node server.json127.0.0.1:4690→curlverification, plus systemd/launchd service samples and a troubleshooting list.
Who it's for
- NanoClaw operators who want a live view of agent groups and sessions.
- Anyone who wants a lightweight internal ops page without adding npm packages or a push pipeline.
- Infra folks who'd like JSON-emitting CLIs rendered as browsable web tables.
Examples
- Ask "add clidash" — the skill copies the tool, creates
clidash.config.json, gitignores it, and runs the test suite. - Verify discovery with
curl -s http://127.0.0.1:4690/api/clisand a real table via/api/r/ncl/groups. - Add
dockeras ajsonlinesCLI in config to get a container tab with zero code. - Set
BINDto a private tailnet IP and keep it running as a systemd user service.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/nanocoai/nanoclaw/HEAD/.claude/skills/add-clidash/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .claude/skills/add-clidash folder from the GitHub repo nanocoai/nanoclaw into my ~/.claude/skills/add-clidash/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/nanocoai/nanoclaw.git && mkdir -p ~/.claude/skills && cp -R nanoclaw/.claude/skills/add-clidash ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal in your working directory.
- Clone the repo:
git clone https://github.com/nanocoai/nanoclaw.git - Copy the skill into Claude's skills folder:
mkdir -p ~/.claude/skills && cp -R nanoclaw/.claude/skills/add-clidash ~/.claude/skills/ - Confirm Node.js 22.5 or newer with
node -v. - Start Claude Code from the NanoClaw repo root and ask it to "add clidash".
- Follow the steps: copy
tools/clidash, thencp clidash.config.example.json clidash.config.json. - Run
cd tools/clidash && npm test, thennode server.js, and openhttp://127.0.0.1:4690/. - To reach it from another device, set
BINDto a private (tailnet) IP only — never a public interface, since there is no auth.
View source on GitHub ↗License: MIT