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/waterplanai/agentic-config/agents-mdgit clone --depth 1 https://github.com/WaterplanAI/agentic-configWrote 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/waterplanai/agentic-config/agents-md)<a href="https://agentmods.dev/instructions/waterplanai/agentic-config/agents-md"><img src="https://agentmods.dev/badge/instructions/waterplanai/agentic-config/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 | $0.00911 | $0.00911 |
| Opus 5 | $0.00456 | $0.00456 |
| Sonnet 5 | $0.00182 | $0.00182 |
| Haiku 4.5 | $0.00091 | $0.00091 |
Grade A, and why
agentic-config 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 4d 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 — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Project Guidelines
Environment & Tooling
- Package Manager: uv
- Type Checking: uv run pyright
- Linting: uv run ruff check [--fix]
- Build: Only when explicitly requested
- After edits: uv run ruff check --fix && uv run pyright
Core Rules
- Before dispatching pimux agents, read
.pi/pimux.yamland use its provider/model/thinking defaults unless the user explicitly overrides. - Current pimux default: provider
openai-codex, modelopenai-codex/gpt-5.5, thinkingxhigh. - Verify over assume; failures first; always re-raise (never swallow exceptions)
- Type hints for all public functions, descriptive names, small pure functions
- Minimal changes; avoid ambiguity; no placeholders
- EFFICIENCY in application and UX - reflect in every implementation
- Glob excludes hidden dirs: use explicit non-hidden roots, e.g.
Glob(pattern="*.md", path="plugins/ac-tools/skills/x")
Skill Triggering
MANDATORY - No exceptions:
\<name>= look up in.claude/commands/,.claude/skills/(if present), andplugins/*/skills/; invoke via Skill tool- 1% match = invoke. Never skip. Never reimplement skill behavior manually.
- Explicit user request (e.g., "/mux", "/spec") = invoke IMMEDIATELY
Content & PII
- DO NOT use emojis in markdown files
- All git-tracked content: project-agnostic, anonymized (no real names, emails, companies)
- Use: John Smith, Jane Doe, Example Corp, example.com,
<email>,abc123 - NEVER add
outputs/content to git - Pre-commit hook enforces PII. Confirm
PII_AUDIT: PASS. Fix and re-commit if blocked. - Check
## Exceptionsfor special cases.
Git Workflow
- Base branch: main (not master); never commit to main
- NEVER amend unless user says 'amend commit'
- NEVER commit gitignored files; do NOT
git add -f - Use CWD-relative paths from git status for git add
- Conventional Commits:
<type>(<scope>): <description>- Types: feat, fix, docs, chore, refactor, test, style, perf, build, ci
- Body sections: Added, Changed, Fixed, Removed
- Squashed commits include original commit list
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.
- 4d ago First seen · 77 lines · 911 tokens per session scan A 7a41f938d84a
agentic-config AGENTS.md is an instructions file published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 911 tokens to every session, about $0.0046 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
COG-second-brain CLAUDE.md
Instructions for huytieu/COG-second-brain, covering cog second brain — framework instructions, verification harness (opt-in, off by default), visual verification (always apply, ui/ux tasks), delegation cap (always apply) and model routing — always apply.
agentic-playwright skill-creator.instructions.md
Instructions for idavidov13/agentic-playwright, covering skill creator, communicating with the user, creating a skill, capture intent and interview and research.
agentic-playwright common-tasks.instructions.md
Instructions for idavidov13/agentic-playwright, covering ai prompt templates for agentic playwright, critical, instructions, phase 1: identify the task category and resolve paths and phase 2: select and customize the matching prompt template.
agentic-playwright debugging.instructions.md
Instructions for idavidov13/agentic-playwright, covering debugging, critical, capture defaults (this scaffold), built-in npm scripts for debugging and instructions.
agentic-playwright ai-native-workflow.instructions.md
Instructions for idavidov13/agentic-playwright, covering ai-native workflow, critical, main workflow (8 phases), phase 4 — confidence-gate format (mandatory) and proposal.
agentic-playwright data-strategy.instructions.md
Instructions for idavidov13/agentic-playwright, covering data strategy, critical, file locations, instructions and phase 1: classify the value you need.