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/micro/go-micro/agents-mdgit clone --depth 1 https://github.com/micro/go-microWhat 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.00418 | $0.00418 |
| Opus 5 | $0.00209 | $0.00209 |
| Sonnet 5 | $0.00084 | $0.00084 |
| Haiku 4.5 | $0.00042 | $0.00042 |
Grade A, and why
go-micro 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
Repository agent instructions
These instructions apply to the entire repository.
Pull requests from Codex tasks
When a Codex task makes repository changes and the requested outcome is a PR:
-
Keep the change focused on the assigned issue or prompt.
-
Run the relevant verification commands and capture their results (
go build ./...,go test ./...,golangci-lint run ./...). -
Check
git status --shortand review the diff before finishing. -
Create a uniquely-named branch under the
codex/prefix (do not work onmaster, and do not use a generic name likework):git switch -c codex/<issue-number>-<short-slug> -
Stage the intended files and commit on that branch.
-
Open the pull request yourself with the GitHub CLI, which is installed in the environment and whose
originpoints at this repository, then enable auto-merge so GitHub merges it once the required CI checks pass:git push -u origin HEAD gh pr create --base master --label codex \ --title "<concise title>" \ --body "<summary of the change and testing, including 'Closes #<issue>'>" gh pr merge --squash --auto --delete-branch
The branch should start with codex/ and the PR should carry the codex
label. Auto-merge waits for the required status checks (build, tests,
golangci-lint) — never merge a PR manually before CI is green.
Do not just say that a PR was opened, and do not rely on the make_pr tool:
in this environment make_pr only records the title/body and never pushes a
branch or creates a PR. The task is not complete until gh pr create has opened
a real pull request and printed its URL.
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 · 40 lines · 418 tokens per session scan A c325aebd6224
go-micro AGENTS.md is an instructions file published in the GitHub repository micro/go-micro (23,048 stars, last pushed 2d ago), licensed Apache-2.0. It adds 418 tokens to every session, about $0.0021 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-30.
Other instructions, from other repositories
ollama AGENTS.md
Instructions for ollama/ollama, covering agents.md and building.
ollama CLAUDE.md
Instructions for ollama/ollama: See AGENTS.md for the shared agent instructions for this repository.
sq AGENTS.md
Instructions for neilotoole/sq, covering agents.md, about sq, key documents, common commands and conventions.
azure-sdk-for-go go-examples.instructions.md
Instructions for Azure/azure-sdk-for-go, a project described as: This repository is for active development of the Azure SDK for Go. For consumers of the SDK we recommend visiting our public developer docs at.
azure-sdk-for-go go-code.instructions.md
Instructions for Azure/azure-sdk-for-go: All code should follow the guidelines from the Azure Go SDK Guidelines. This document is a summary of the most important guidelines to follow when contributing to the Azure Go SDK.
gorest AGENTS.md
Instructions for pilinux/gorest, covering agents.md, project overview, build and run commands, build and tidy dependencies.