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/corbym/backlog-mcp/agents-mdgit clone --depth 1 https://github.com/corbym/backlog-mcpWhat 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.01106 | $0.01106 |
| Opus 5 | $0.00553 | $0.00553 |
| Sonnet 5 | $0.00221 | $0.00221 |
| Haiku 4.5 | $0.00111 | $0.00111 |
Grade A, and why
backlog-mcp 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 — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Instructions
Backlog (backlog-mcp)
Project stories and epics live in requirements/. Use the backlog-mcp MCP tools to interact with them — do not edit the index or backlog files by hand.
Tools
list_stories— list stories, optionally filtered byepic_idorstatusget_story— read the full markdown content and metadata for a storyset_story_status— update a story's status (draft,in-progress,done,blocked)add_story_note— append a timestamped note to a story filecomplete_story— mark a storydoneand append the completion summary note in one callget_index_summary— high-level epic/story counts by statusbulk_update_acceptance_criteria— patch checked state of multiple AC items on one story in a single callbulk_update_stories— update status, notes, and/or criteria across multiple stories at oncebulk_update_epics— update status and/or notes across multiple epics at once
Conventions
- Story IDs:
STORY-NNN(e.g.STORY-047) - Epic IDs:
EPIC-NNN(e.g.EPIC-003) - Always call
set_story_statuswhen you start work on a story (in-progress) - Always call
complete_storywhen you finish work on a story (do not useset_story_status+add_story_noteseparately) - Use
add_story_noteto record decisions, blockers, or progress — never edit story files directly - After
create_story, immediately callset_acceptance_criteriawith a concrete list of criteria before beginning implementation — a story with only the placeholder AC is not ready to implement - Branch names must include the story ID (e.g.
copilot/STORY-022-bulk-update-toolsorchore/STORY-022-description). Never start implementation on a branch without a story — create the story first, then branch.
Testing (mandatory)
- Always write tests first. No production code is written before a failing test exists that demands it.
- Always write outside-in. Start from the outermost entry point (tool handler, HTTP handler, public API) and work inward. The first test must exercise the full slice of behaviour from the outside; only then add lower-level unit tests as needed to drive internal design.
- The test must fail for the right reason before any implementation is written. Verify the failure message makes sense.
- Only write enough production code to make the current failing test pass, then refactor before moving on.
- Do not write tests after the fact to cover code that already exists — if you find yourself doing this, stop, delete the code, and restart test-first.
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 · 66 lines · 1,106 tokens per session scan A 5ad5dbd29a64
backlog-mcp AGENTS.md is an instructions file published in the GitHub repository corbym/backlog-mcp (3 stars, last pushed 1mo ago), licensed Unlicense. It adds 1,106 tokens to every session, about $0.0055 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
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
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.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
next.js AGENTS.md
Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.