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/daocodotorg/basic-blog/agents-mdgit clone --depth 1 https://github.com/daocodotorg/basic-blogWhat 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.00618 | $0.00618 |
| Opus 5 | $0.00309 | $0.00309 |
| Sonnet 5 | $0.00124 | $0.00124 |
| Haiku 4.5 | $0.00062 | $0.00062 |
Grade A, and why
basic-blog 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 — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent notes — basic-blog monorepo
Scope
Monorepo for basic-blog-convex-blog-cms (npm package under packages/convex-blog-cms/), examples, and CI. Agents should prefer small, task-focused diffs and match existing patterns in touched files.
npm release (automatic when version changes)
Publishing is not triggered by commits to main alone. The GitHub Action Release (.github/workflows/release.yml) runs only when a version tag is pushed:
- Tag pattern:
v*(e.g.v0.1.9). - The workflow checks that the tag without the leading
vequalspackages/convex-blog-cms/package.json→version. Mismatch fails the job.
When to tag
After you (or a user) bump packages/convex-blog-cms/package.json version and that change is on main (merged / pushed), finish the release by pushing the matching tag so CI publishes to npm and creates a GitHub Release.
Commands (agent should run these unless the user opts out)
Replace X.Y.Z with the exact version string from packages/convex-blog-cms/package.json. Use main (or the specific release commit SHA) as the tag target.
cd /path/to/basic-blog
git fetch origin
V="X.Y.Z" # must match package.json, e.g. 0.1.9
# Remove a wrong or stale tag on the remote (safe if absent)
git push origin ":refs/tags/v${V}"
# Remove local tag if it exists so we can recreate
git tag -d "v${V}" 2>/dev/null || true
# Point the tag at the commit that contains the bumped package.json
git tag "v${V}" origin/main # or: git tag "v${V}" <sha>
git push origin "v${V}"
Then confirm Actions → Release succeeded.
Rules of thumb
- Never invent a tag version that does not match
package.json. - If the user asks to re-run a release for the same version, delete the remote tag and recreate it on the correct commit, then push again (re-pushing an identical tag does not retrigger
pushworkflows on GitHub). - Trusted publishing /
NPM_PUBLISH_TOKENis configured on the repo; agents do not need to runnpm publishlocally for the canonical release.
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 · 50 lines · 618 tokens per session scan A 47f2a0a21f6e
basic-blog AGENTS.md is an instructions file published in the GitHub repository daocodotorg/basic-blog (4 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 618 tokens to every session, about $0.0031 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
ledric CLAUDE.md
Claude Code instructions for getledric/ledric, covering claude.md, repo shape, common commands, workspace-wide and single-package.
payload CLAUDE.md
Instructions for payloadcms/payload, covering claude.md, project structure, key directories, architecture notes and quick start.
payload AGENTS.md
Instructions for payloadcms/payload, a project described as: Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications.
sonicjs AGENTS.md
Instructions for SonicJs-Org/sonicjs, covering sonicjs agent guidelines, decision tree — code exploration, rtk (rust token killer), caveman mode and delegation — cavecrew subagents.
openrouter-mcp-multimodal AGENTS.md
Instructions for stabgan/openrouter-mcp-multimodal, covering agent instructions, before you ship, releasing (read this before publishing), short version and version files (must all match package.json).
sonicjs CLAUDE.md
Instructions for SonicJs-Org/sonicjs, covering sonicjs ai development guidelines, core technology stack, workspace boundary (conductor), architecture direction: document model (authoritative) and the 5 document tables (migration 0002documents.sql).