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/specdog/dotdog/agents-mdgit clone --depth 1 https://github.com/specdog/dotdogWhat 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.00509 | $0.00509 |
| Opus 5 | $0.00254 | $0.00254 |
| Sonnet 5 | $0.00102 | $0.00102 |
| Haiku 4.5 | $0.00051 | $0.00051 |
Grade A, and why
dotdog AGENTS.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.
What it actually says
AGENTS.md — dotdog
This repo is the dotdog CLI tool. For spec graphs, use
npx dotdog serve(MCP) ordotdog compile.
Quick Start (read this first)
NEVER read .dog files directly. Query the .dag via MCP. The .dog is human format. The .dag is agent format.
- .md: read for context (README, docs, blog) but NOT for entity/relationship/project structure
- .dog: NEVER read. Human writes it. Agent never touches it.
- .dag: ALWAYS query via MCP. This is your source of truth for project structure.
- If .dag doesn't have it: report "unverified" — never fall back to .dog
MCP: npx dotdog serve (7 tools: getEntity, traverse, search, schema, summary, listProjects, infraVerify)
Workflow (lean):
- 1 issue → 1 PR → 1 merge
- spec/.dag first, code second
- no unrelated edits
- verify with targeted test, then full
bun test - update docs/spec in the same PR if behavior changes
- never merge without explicit user ask
Token efficiency:
- keep truth in .dag/spec, not chat
- preserve IDs, file paths, and test results verbatim
- compress chatter/logs, not constraints or state
- prefer short status: changed / verified / next
Public site/docs: keep README, docs, and specdog.github.io in sync when adding commands, docs, blog posts, or discovery pages.
Commands (when modifying dotdog source)
dotdog validate → check completeness (run before commits)
dotdog doctor → baseline health check (run before commits)
dotdog analyze → gap detection + contradiction checking
dotdog compile → rebuild .dag from .dog files
dotdog index → build search index
dotdog search "q" → semantic search across specs
dotdog staleness → detect spec/reality drift
Key Rules
- Use conventional commits (feat:, fix:, docs:, chore:)
- Never commit dist/
- Every code change touching
packages/dotdog/src/orpackage.jsonmust bump version - Dogfood: test against
npx dotdog@latest validatebefore shipping
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 · 50 lines · 509 tokens per session scan A 61322e71c825
dotdog AGENTS.md is an instructions file published in the GitHub repository specdog/dotdog (4 stars, last pushed 1mo ago), licensed MIT. It adds 509 tokens to every session, about $0.0025 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-31.
Other instructions, from other repositories
agents
Startup protocol — safe for all collaborators. MCP section is conditional.
claude
Startup protocol for Claude-style agents — safe for all collaborators.
spec-kit AGENTS.md
Instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
comet CLAUDE.md
Instructions for rpamis/comet, covering 回复语言, 测试, 提交前检查, commit 规范 and 项目结构规范.
agent-spec AGENTS.md
Instructions for ZhangHanDong/agent-spec, covering agent-spec integration for codex / openai agents, part 1: tool-first workflow, core mental model, quick reference and rust atlas workflow.
modelcontextprotocol CLAUDE.md
Claude Code instructions for modelcontextprotocol/modelcontextprotocol, a project described as: Specification and documentation for the Model Context Protocol.