openclaw-dashboard CLAUDE.md

openclaw-dashboard CLAUDE.md is an instructions file for Claude Code from mudrii/openclaw-dashboard. It costs 1,519 tokens per session, scanned A, original, MIT.

A project instruction document for a Go dashboard that serves an embedded web interface and collects OpenClaw bot metrics. It describes the project structure, constraints, packages, environment, and commands.

In plain words
What is it for?
Use it when changing the dashboard, especially when editing Go logic, the embedded frontend, internal packages, wrappers, or tests.
Why use it?
It gives coding agents the project rules they need to avoid suggesting unsupported dependencies or putting new code in the wrong place.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: built for openclaw.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/mudrii/openclaw-dashboard/claude-md
Clone the repo
git clone --depth 1 https://github.com/mudrii/openclaw-dashboard

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for openclaw-dashboard CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/mudrii/openclaw-dashboard/claude-md.svg)](https://agentmods.dev/instructions/mudrii/openclaw-dashboard/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/mudrii/openclaw-dashboard/claude-md"><img src="https://agentmods.dev/badge/instructions/mudrii/openclaw-dashboard/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,519 This file is loaded in full into every session.
When invoked 1,519 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.01519 $0.01519
Opus 5 $0.00759 $0.00759
Sonnet 5 $0.00304 $0.00304
Haiku 4.5 $0.00152 $0.00152

Measured 6d ago against content hash e91fed888cd6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

openclaw-dashboard CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 130 lines

How it starts

The opening of the file, as written. The whole thing — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Go Development Standards

Zero-dependency Go HTTP server with embedded SPA frontend for OpenClaw bot metrics.

Project Constraints

  • Zero third-party dependenciesgo.mod has no require block, no go.sum. Do not suggest adding external packages. Use stdlib only.
  • Embedded frontendweb/index.html is compiled into the binary via //go:embed. Frontend changes require a rebuild.
  • Root-package facade — Logic lives in internal/app<domain>/ packages. The root dashboard package has thin wrapper functions and type aliases that re-export internal APIs. New features: (1) add logic to internal/, (2) add root-level wrappers, (3) test at both levels.

Internal Packages

Package Purpose
appconfig Config struct definitions, JSON loading, dotenv
appruntime Directory resolution (repo root vs Homebrew), version detection
appchat AI gateway HTTP communication, system prompt building
apprefresh Core data collector: sessions, tokens, crons, daily aggregation
appserver HTTP server, routing, caching, rate limiting
appsystem System metrics (CPU/RAM/disk), version probes, OpenClaw runtime
appservice OS service management (launchd/systemd)

Environment

  • Go 1.26 (toolchain go1.26.4 per go.mod), darwin/arm64 + linux/amd64+arm64
  • Treat go.mod, toolchain, CI config as the source of truth
  • Prefer make targets over raw commands when a Makefile exists
  • make check is the canonical gate: vet, lint (golangci-lint with gosec + errorlint enabled), test -race, govulncheck
  • CGO_ENABLED=0 is set across all four build paths (Makefile, Dockerfile, .goreleaser.yml, flake.nix); keep it that way
  • Loopback-only HTTP bind is enforced at startup; container deployments opt in via OPENCLAW_DASHBOARD_ALLOW_NON_LOOPBACK=1

Commands

Check each project's Makefile for exact targets. Common conventions:

make build        # build binary
make test         # go test ./...
make lint         # golangci-lint
make fmt          # gofmt / gofumpt
make ci           # full gate (or make check, make all)

Read the full file on GitHub · 130 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 130 lines · 1,519 tokens per session scan A e91fed888cd6

Subscribe to this mod's changes

openclaw-dashboard CLAUDE.md is an instructions file published in the GitHub repository mudrii/openclaw-dashboard (454 stars, last pushed 5d ago), licensed MIT. It adds 1,519 tokens to every session, about $0.0076 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.