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/agno-agi/dash/claude-mdgit clone --depth 1 https://github.com/agno-agi/dashWhat 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 | $0.02286 | $0.02286 |
| Opus 5 | $0.01143 | $0.01143 |
| Sonnet 5 | $0.00457 | $0.00457 |
| Haiku 4.5 | $0.00229 | $0.00229 |
Grade A, and why
dash 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 yesterday.
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 — 189 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Project Overview
Dash is a self-learning data agent that delivers insights, not just SQL results. It uses a team of specialists (Analyst + Engineer) coordinated by a leader to handle data queries and build computed data assets. Built on Agno. Runs in Slack, the terminal, or the AgentOS web UI.
Structure
dash/
├── team.py # Dash team (leader, coordinate mode)
├── settings.py # Shared config (DB, model, knowledge bases, Slack)
├── instructions.py # Instruction builders per agent role
├── paths.py # Path constants
├── __main__.py # CLI entry point (python -m dash)
├── agents/
│ ├── analyst.py # SQL queries, data analysis, insights (read-only)
│ └── engineer.py # Views, summary tables, computed data (dash schema)
├── context/ # Runtime prompt builders (reads knowledge/)
│ ├── semantic_model.py # Table metadata → system prompt
│ └── business_rules.py # Business rules → system prompt
└── tools/
├── build.py # Tool assembly per agent role (schema boundaries)
├── introspect.py # Runtime schema inspection (both schemas)
├── save_query.py # Save validated queries to knowledge
└── update_knowledge.py # Record schema changes to knowledge
knowledge/ # Data files loaded into vector DB (1:1 mapping)
├── tables/ # Table metadata JSON files (SaaS metrics)
├── queries/ # Validated SQL query patterns
└── business/ # Business rules, metrics, gotchas
app/
├── main.py # AgentOS entry point (teams, scheduler, Slack interface)
└── config.yaml # Quick prompts
db/
├── __init__.py # Re-exports: db_url, get_postgres_db, get_sql_engine, etc.
├── session.py # PostgreSQL + PgVector + dual schema (public/dash)
└── url.py # Database URL builder
evals/ # Evaluation framework (Agno eval classes)
├── run.py # Unified eval runner
└── cases/ # Test cases by category
├── accuracy.py # AccuracyEval — data correctness
├── routing.py # ReliabilityEval — team routes correctly
├── security.py # AgentAsJudgeEval — no credential leaks
├── governance.py # AgentAsJudgeEval — refuses destructive SQL
└── boundaries.py # AgentAsJudgeEval — schema access boundaries
scripts/
├── generate_data.py # Generate SaaS sample data
├── load_knowledge.py # Load knowledge into vector DB
├── venv_setup.sh # Create virtualenv (uses uv)
├── format.sh # ruff format + import sorting
├── validate.sh # ruff check + mypy
├── generate_requirements.sh # uv pip compile → requirements.txt
├── build_image.sh # Multi-platform Docker build
├── entrypoint.sh # Docker entrypoint (DB wait, banner)
├── railway_up.sh # First-time Railway setup
├── railway_redeploy.sh # Redeploy to Railway
└── railway_env.sh # Sync .env.production to Railway
docs/
├── SLACK_CONNECT.md # Slack app setup guide with manifest
└── TEST_QUESTIONS.md # Manual test questions (routing, data quality, edge cases)
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.
- yesterday First seen · 189 lines · 2,286 tokens per session scan A 408a4b51df38
dash CLAUDE.md is an instructions file published in the GitHub repository agno-agi/dash (2,257 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 2,286 tokens to every session, about $0.0114 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
scout AGENTS.md
Instructions for agno-agi/scout, covering agents.md, project overview, architecture, contextprovider and one write surface.
WrenAI AGENTS.md
AGENTS.md instructions for Canner/WrenAI: Repository-wide instructions live in .claude/CLAUDE.md. Please refer to that file for shared build commands, architecture, and conventions.
agentscope-runtime copilot-instructions.md
Instructions for agentscope-ai/agentscope-runtime, covering agentscope runtime code review guide, 1. code quality, 2. [must] code security, 3. [must] testing & dependencies and 4. code standards.
context AGENTS.md
Instructions for agno-agi/context, covering @context, what this is, architecture, key files and the owner/guest security model.
vibe-video CLAUDE.md
Instructions for agno-agi/vibe-video, covering vibe video, architecture, team structure, key concepts and structure.
mcp-server-mas-sequential-thinking CLAUDE.md
Claude Code instructions for FradSer/mcp-server-mas-sequential-thinking, covering claude.md, essential commands, setup & development, testing framework (using makefile) and direct pytest commands.