Borrowing it
Nothing to install: this file belongs to andreaswasita/copilot-agents-dojo. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/andreaswasita/copilot-agents-dojo/main/AGENTS.mdgit clone --depth 1 https://github.com/andreaswasita/copilot-agents-dojoWrote 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/andreaswasita/copilot-agents-dojo/agents-md)<a href="https://agentmods.dev/instructions/andreaswasita/copilot-agents-dojo/agents-md"><img src="https://agentmods.dev/badge/instructions/andreaswasita/copilot-agents-dojo/agents-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.03194 | $0.03194 |
| Opus 5 | $0.01597 | $0.01597 |
| Sonnet 5 | $0.00639 | $0.00639 |
| Haiku 4.5 | $0.00319 | $0.00319 |
Grade B, and why
copilot-agents-dojo AGENTS.md scanned grade B with 1 finding 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 8d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- Linux (apt): `sudo apt install jq` How it starts
The opening of the file, as written. The whole thing — 242 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Copilot Agents Dojo — Contributor Guide
Authoritative reference for humans (and AI assistants) modifying the dojo itself. If you're just using the dojo in your own repo, start with README.md. If you're inside an agent session running on the dojo, the runtime prompt is .github/copilot-instructions.md.
This file is load-bearing. Reviewers may reject PRs that violate the rules below.
Project Structure
File counts shift constantly — don't treat the tree below as exhaustive. The canonical source is the filesystem.
copilot-agents-dojo/
├── AGENTS.md # this file — contributor reference
├── README.md # user-facing onboarding
├── SOUL.md # agent identity charter (who / how / limits)
├── skills.md # GENERATED — skills index grouped by tier
├── spec/
│ └── copilot-skills-spec.md # the HARDLINE skill spec (v1)
├── template/
│ └── SKILL.md # canonical starter for new skills
├── skills/ # core + practical skills (always discoverable)
│ ├── plan-before-code/SKILL.md # tier: core
│ ├── code-review/SKILL.md # tier: practical
│ └── …
├── optional-skills/ # heavy / niche skills (installed explicitly)
├── scripts/
│ ├── init.sh # scaffold tasks/{todo,lessons}.md
│ ├── verify.sh # the lint/test/invariant gate
│ ├── run-checks.ps1 # Windows parity for verify.sh
│ ├── regen-skills-index.sh # rebuilds skills.md from frontmatter
│ ├── lesson-updater.sh # cache-aware skill amendments
│ └── curator.sh # skill lifecycle (pin/archive/restore)
├── tasks/
│ ├── todo.md # current plan (rollup of tasks/board/)
│ ├── lessons.md # postmortem log
│ └── board/ # durable per-task markdown files
├── agents/ # persona briefs (architect, TPM, etc.)
├── mcp/
│ ├── registry.yaml # MCP server catalog
│ ├── servers/ # per-server JSON manifests
│ └── scripts/ # mcp-subprocess wrappers
├── cli/
│ └── dojo_cli/ # optional Python CLI (marketplace + scanner)
├── .github/
│ ├── copilot-instructions.md # runtime prompt for sessions in this repo
│ ├── known-pitfalls.md # imperative DO NOT register
│ └── workflows/dojo-enforce.yml # PR enforcement
└── .dojo/ # per-clone state (telemetry, profiles); gitignored
└── skill-usage.json # curator telemetry sidecar
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.
- 8d ago First seen · 242 lines · 3,194 tokens per session scan B 4597dc47c9f1
copilot-agents-dojo AGENTS.md is an instructions file published in the GitHub repository andreaswasita/copilot-agents-dojo (51 stars, last pushed today), licensed MIT. It adds 3,194 tokens to every session, about $0.0160 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
ai-agent-rules-generator ratelimitting.instructions.md
Instructions for savedpixel/ai-agent-rules-generator, covering rate limit prevention (critical), rules, output length limits and visibility.
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.
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).
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
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).