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/lay4u/awesome-ai-rules/copilot-instructionsgit clone --depth 1 https://github.com/Lay4U/awesome-ai-rulesWrote 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/lay4u/awesome-ai-rules/copilot-instructions)<a href="https://agentmods.dev/instructions/lay4u/awesome-ai-rules/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/lay4u/awesome-ai-rules/copilot-instructions.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.00396 | $0.00396 |
| Opus 5 | $0.00198 | $0.00198 |
| Sonnet 5 | $0.00079 | $0.00079 |
| Haiku 4.5 | $0.00040 | $0.00040 |
Grade A, and why
awesome-ai-rules copilot-instructions.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 6d 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.
What it actually says
GitHub Copilot Instructions: Go
Inline Completion Priorities
- Suggest idiomatic Go first, clever abstractions second.
- Default to explicit error checks with immediate returns.
- Prefer readable control flow over compressed one-liners.
- Keep generated snippets aligned with existing package style.
Go API Conventions
- Package names: short, lowercase, no underscores.
- Export only what callers need; keep helpers unexported.
- Favor composition via struct fields over inheritance-style hierarchies.
- Avoid
init()unless a framework requires automatic registration.
Interfaces
- Prefer small interfaces focused on behavior.
- Accept interfaces in inputs where mocking/substitution is needed.
- Return concrete structs from constructors and factories.
- Avoid generating broad "god interfaces".
Error Patterns
- Use
if err != nil { return ... }consistently. - Wrap with
fmt.Errorf("context: %w", err)when propagating. - Use
errors.Is/errors.Asfor branching logic. - Do not ignore returned errors from I/O, close, or encode/decode calls.
Concurrency
- Include
context.Contextas first argument for cancellable work. - Suggest goroutines only with clear synchronization (
WaitGroup, channels,errgroup). - Avoid channel misuse: sender closes, receiver ranges.
- Prefer race-safe patterns and recommend
go test -racewhen relevant.
Testing
- Generate table-driven tests for function matrices.
- Use subtests for each table row with descriptive names.
- Prefer
testify/requirefor setup-critical assertions. - Keep fixtures lightweight and deterministic.
Tooling Awareness
- Assume
gofmt/goimportswill run; produce format-stable code. - Keep code compatible with
golangci-lintdefaults. - Favor stdlib dependencies unless a third-party package is clearly justified.
- Keep module imports tidy and consistent with
go.mod.
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.
- 6d ago First seen · 44 lines · 396 tokens per session scan A 6a79c099b326
awesome-ai-rules copilot-instructions.md is an instructions file published in the GitHub repository Lay4U/awesome-ai-rules (5 stars, last pushed 6mo ago), licensed MIT. It adds 396 tokens to every session, about $0.0020 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
awesome-go AGENTS.md
AGENTS.md instructions for avelino/awesome-go, covering awesome-go · llm contribution guide, project snapshot, when modifying the awesome list, coding guidelines and testing & validation.
awesome-go copilot-instructions.md
Copilot instructions for avelino/awesome-go, a project described as: A curated list of awesome Go frameworks, libraries and software.
awesome-quant CLAUDE.md
Claude Code instructions for wilsonfreitas/awesome-quant, covering claude.md, project overview, architecture, commands and install dependencies (uses uv, requires python 3.11+).
codingbuddy typescript.instructions.md
Instructions for JeremyDev87/codingbuddy, covering typescript code review, type safety, patterns and imports.
awesome-ai-rules copilot-instructions.md
Copilot instructions for shumatsumonobu/awesome-ai-rules, covering copilot instructions, code style, database and don't.
awesome-ai-rules react.instructions.md
Instructions for shumatsumonobu/awesome-ai-rules: This file activates ONLY when Copilot is working on .tsx files (controlled by the applyTo pattern above). The main copilot-instructions.md applies globally; this adds React-specific rules on top.