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/d-oit/rust-2026-template/agents-mdgit clone --depth 1 https://github.com/d-oit/rust-2026-templateWhat 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.01700 | $0.01700 |
| Opus 5 | $0.00850 | $0.00850 |
| Sonnet 5 | $0.00340 | $0.00340 |
| Haiku 4.5 | $0.00170 | $0.00170 |
Grade A, and why
rust-2026-template 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 2d 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 — 127 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Coding Contract
2026 Best Practice Rust Template - This is the single canonical instruction file for all AI agents. Tool-specific files (
CLAUDE.md,GEMINI.md, etc.) are thin adapters that point here.
Quick Reference
| Task | Command |
|---|---|
| Build | cargo build --workspace |
| Quality | ./scripts/quality-gates.sh |
| Tests | cargo nextest run --workspace |
| Setup | ./scripts/bootstrap.sh |
| Diagnostics | ./scripts/doctor.sh |
Project Structure
.agents/skills/: Executable task knowledge and canonical workflows..agents/skills/harness/: Harness engineering — sensor response protocol and self-correction.crates/: Workspace members (libraries and applications).scripts/: Development, quality, and release automation.plans/adr/: Architecture Decision Records..githooks/: Pre-commit quality enforcement.AGENTS.md: THIS FILE (Canonical Project Contract).
Agent Skills (.agents/skills/)
The skills index is auto-generated from skill frontmatter. Do not edit the table below manually.
Regenerate after adding/modifying skills:
bash scripts/generate-skills-md.sh
Consult .agents/SKILLS.md for the complete skills index, or read individual skill docs at .agents/skills/<name>/SKILL.md.
Multi-Agent Support
Skill symlinks are managed automatically. After cloning, run:
./scripts/bootstrap.sh # One-command setup
./scripts/doctor.sh # Environment diagnostics
CLI-specific directories read from .agents/skills/ via symlinks:
.claude/skills/→ Claude Code.qwen/skills/→ Qwen Code.gemini/,.opencode/,.windsurf/→ Read directly
Session Bootstrap
The repository includes a SessionStart hook to auto-inject project context at the start of an agent session. This helps agents orient themselves quickly without manual discovery.
- Hook:
hooks/session-start.sh - Config:
docflow.json - Integration: Registered in
.claude/settings.jsonfor Claude.
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.
- 2d ago First seen · 127 lines · 1,700 tokens per session scan A c1fb825f66c9
rust-2026-template AGENTS.md is an instructions file published in the GitHub repository d-oit/rust-2026-template (10 stars, last pushed 3d ago), licensed MIT. It adds 1,700 tokens to every session, about $0.0085 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
svelte-axum-template AGENTS.md
Instructions for AndreiBozantan/svelte-axum-template, covering svelaxum - fullstack webapp template, repo structure, workflow, coding style and backend structure.
agentgateway copilot-instructions.md
Copilot instructions for agentgateway/agentgateway: Do not check for, speculate about, or report compilation errors during code review. Compilation diagnostics from review are frequently incorrect; rely on CI to detect and report compilation failures.
playwright-rust CLAUDE.md
Instructions for padamson/playwright-rust, covering claude.md, project, repository layout, skills (procedural reference) and documentation hierarchy.
cookiecutter-mlops-package AGENTS.md
Instructions for fmind/cookiecutter-mlops-package, covering agents.md, project overview, setup & core commands, definition of done and conventions & idioms.
flox AGENTS.md
AGENTS.md instructions for flox/flox, covering claude.md, project overview, development setup, already in dev shell (innixshell is set) — run directly and not in dev shell — wrap with nix develop -c.
codemark GEMINI.md
Instructions for DanielCardonaRojas/codemark, covering development workflow and debugging with the tui logging system.