agentic-config AGENTS.md

agentic-config AGENTS.md is an instructions file for Codex, OpenCode from WaterplanAI/agentic-config. It costs 911 tokens per session, scanned A, original, MIT.

Repository instructions for agentic-config, a Python project managed with uv, a tool for Python environments and commands. They define coding rules, checks, build expectations, and how project skills should be triggered.

In plain words
What is it for?
Use them when editing this project, running its formatter and type checker, deciding whether a build is allowed, or following its agent-dispatch and privacy rules.
Why use it?
They make the agent follow the repository's required workflow and catch type or style problems after changes.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/waterplanai/agentic-config/agents-md
Clone the repo
git clone --depth 1 https://github.com/WaterplanAI/agentic-config

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for agentic-config AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/waterplanai/agentic-config/agents-md.svg)](https://agentmods.dev/instructions/waterplanai/agentic-config/agents-md)
Your own site
<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>
Per session 911 This file is loaded in full into every session.
When invoked 911 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 7a41f938d84a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 77 lines

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.yaml and use its provider/model/thinking defaults unless the user explicitly overrides.
  • Current pimux default: provider openai-codex, model openai-codex/gpt-5.5, thinking xhigh.
  • 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), and plugins/*/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 ## Exceptions for 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

Read the full file on GitHub · 77 lines

Changes

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.

  1. 4d ago First seen · 77 lines · 911 tokens per session scan A 7a41f938d84a

Subscribe to this mod's changes

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.

Related

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.

huytieu/COG-second-brain · 4,002 tokens

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.

idavidov13/agentic-playwright · 7,227 tokens

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.

idavidov13/agentic-playwright · 5,109 tokens

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.

idavidov13/agentic-playwright · 4,500 tokens

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.

idavidov13/agentic-playwright · 2,744 tokens

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.

idavidov13/agentic-playwright · 2,684 tokens