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.
npx agentmods add instructions/mudrii/openclaw-dashboard/claude-mdgit clone --depth 1 https://github.com/mudrii/openclaw-dashboardWrote 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.
[](https://agentmods.dev/instructions/mudrii/openclaw-dashboard/claude-md)<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>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.
| Model | Per session | Once 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 |
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.
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 dependencies —
go.modhas norequireblock, nogo.sum. Do not suggest adding external packages. Use stdlib only. - Embedded frontend —
web/index.htmlis compiled into the binary via//go:embed. Frontend changes require a rebuild. - Root-package facade — Logic lives in
internal/app<domain>/packages. The rootdashboardpackage has thin wrapper functions and type aliases that re-export internal APIs. New features: (1) add logic tointernal/, (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.4pergo.mod), darwin/arm64 + linux/amd64+arm64 - Treat
go.mod,toolchain, CI config as the source of truth - Prefer
maketargets over raw commands when a Makefile exists make checkis the canonical gate:vet,lint(golangci-lint withgosec+errorlintenabled),test -race,govulncheckCGO_ENABLED=0is 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)
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.
- 6d ago First seen · 130 lines · 1,519 tokens per session scan A e91fed888cd6
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.
Other instructions, from other repositories
clawmetry AGENTS.md
AGENTS.md instructions for vivekchand/clawmetry, covering agents.md — for ai coding agents, quick context, where new code goes (open-core split), the rules that bite and common tasks.
clawmetry CLAUDE.md
Claude Code instructions for vivekchand/clawmetry, covering claude.md — clawmetry, what is this?, architecture, key files and core.
technocore-chat AGENTS.md
AGENTS.md instructions for flop-labs/technocore-chat: CI runs exactly these — run them before pushing.
foundry-local python-cffi-pointer-types.instructions.md
Use when working on the Python SDK's native bindings (cffi), especially when defining new Item subclasses, working with flItemQueue, or extending Request/Session methods that pass native handles.
pydantic-ai-gepa AGENTS.md
AGENTS.md instructions for indexedlabs/pydantic-ai-gepa, covering repository guidelines, mighty workflow, project structure & module organization, build, test, and development commands and coding style & naming conventions.
genmedia-izumi-agent GEMINI.md
Gemini CLI instructions for GoogleCloudPlatform/genmedia-izumi-agent.