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/helderberto/dotfiles/agents-mdgit clone --depth 1 https://github.com/helderberto/dotfilesWhat 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.00575 | $0.00575 |
| Opus 5 | $0.00287 | $0.00287 |
| Sonnet 5 | $0.00115 | $0.00115 |
| Haiku 4.5 | $0.00057 | $0.00057 |
Grade A, and why
dotfiles 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 — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
- Extreme concision in all interactions and commits. Sacrifice grammar for brevity.
- Always TDD: failing test first, even for vague asks ("fix bug" → reproducing test)
- Refactor: suite green before AND after, no behavior change
- Prefer CLI over MCP; MCP only when the CLI can't do it
- Repetitive edits → write a script, don't hand-edit N files
- 3 failed attempts → stop, report what you learned, ask
Before Coding
- State assumptions explicitly. Multiple interpretations → present all, don't pick silently
- Ambiguity that changes the work → stop, name it, ask. Routine ambiguity → state assumption, proceed
- If simpler approach exists, say so. Push back when warranted — no sycophancy or superficial agreement
Surgical Changes
- Don't improve adjacent code, comments, or formatting
- Match existing style, even if you'd do it differently
- Only remove orphans YOUR changes created
- Unrelated dead code → mention, don't delete
- Every changed line must trace to the request
Verification
- Multi-step tasks: state plan as
step → verify: checkbefore coding - For UI changes: take before/after screenshots, compare
- 8+ files → break into phases first
Code Principles
Goal: predictable, maintainable, testable code
Simplicity
- Minimum code that solves the problem. Nothing speculative
- No abstractions for single-use code
- No flexibility/config that wasn't requested
- No error handling for impossible scenarios
- 200 lines that could be 50 → rewrite. "Would a senior call this overcomplicated?" → simplify
Immutability (JS/TS, new code only — overrides "match existing style")
- No in-place mutation of shared data:
push,splice,shift,unshift,sort,reverse,delete - Use: spread,
slice,map,toSorted,toReversed,with - OK: local accumulators, constructors, refs
Suppressions (JS/TS)
- Don't silence errors to pass:
eslint-disable,@ts-ignore,@ts-expect-error - If unavoidable, comment the reason
- No
as any— when there's no option,as unknownand narrow
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 · 65 lines · 575 tokens per session scan A afd475e6767c
dotfiles AGENTS.md is an instructions file published in the GitHub repository helderberto/dotfiles (115 stars, last pushed 19d ago), licensed MIT. It adds 575 tokens to every session, about $0.0029 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
dotfiles AGENTS.md
Instructions for sfc-gh-eraigosa/dotfiles, covering dotfiles repository, repository structure, usage guidelines, asking the user (blocking questions must be colorized) and portability & best practices.
dotfiles AGENTS.md
AGENTS.md instructions for denysdovhan/dotfiles, covering agents repository guidelines, project structure & module organization, build, test, and development commands, workflow and coding style & naming conventions.
dotfiles AGENTS.md
AGENTS.md instructions for GrimLink/dotfiles, covering project instructions, readme maintenance, homebrew, shell configuration and safety.
dotfiles CLAUDE.md
Claude Code instructions for GrimLink/dotfiles, a project described as: 🔧 My DEV env setup.
dotfiles CLAUDE.md
Instructions for sfc-gh-eraigosa/dotfiles, a project described as: Ubuntu Bash Home profile setup, includes vimrc's profiles some git commands.
dotfiles CLAUDE.md
Instructions for joshukraine/dotfiles, covering claude.md, about this repository, repository structure, common commands and setup and installation.