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/anthonyverriest/planwise/claude-mdgit clone --depth 1 https://github.com/anthonyverriest/planwiseWrote 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/anthonyverriest/planwise/claude-md)<a href="https://agentmods.dev/instructions/anthonyverriest/planwise/claude-md"><img src="https://agentmods.dev/badge/instructions/anthonyverriest/planwise/claude-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.01270 | $0.01270 |
| Opus 5 | $0.00635 | $0.00635 |
| Sonnet 5 | $0.00254 | $0.00254 |
| Haiku 4.5 | $0.00127 | $0.00127 |
Grade A, and why
planwise CLAUDE.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 — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE
Write correct, safe, consistent, maintainable Python code with strong typing.
<design_principles>
- Pragmatic Simplicity: Explicit over implicit. Apply YAGNI and KISS. Minimize accidental complexity; prefer simple, explicit logic over abstractions.
- SOLID & Clean Code: Apply SOLID principles—highly cohesive, loosely coupled, single-purpose components.
- Resilience & Fail-Safety: Design for failure and graceful degradation at system boundaries; assume components will fail.
- Observability First: Systems must be introspectable by default (metrics, structured logs, distributed tracing).
- Domain-Driven Design (DDD): Explicit Bounded Contexts, Ubiquitous Language, clear Aggregate boundaries.
- Hexagonal Architecture: Isolate pure domain logic from infrastructure for testability and flexibility.
- Asynchronous & Event-Driven: Prioritize eventual consistency and non-blocking communication for high-throughput scalability. </design_principles>
<code_rules>
- Maximize signal density: optimize signal-to-noise ratio, eliminate redundancy and noise.
- Write idiomatic Python: follow language conventions naturally, enable local reasoning.
- Fail-fast: validate inputs at boundaries, detect errors early.
- Use context managers (
withstatements) for resource management; useasync withfor async resources. - Choose concurrency model based on workload: asyncio for I/O-bound, multiprocessing for CPU-bound.
- Add concise docstrings (file-level: what it does, make greppable; function-level: Google-style purpose and behavior).
- Make code self-explanatory: use descriptive names that reveal intent (avoid abbreviations, single letters except iterators).
- Use Pydantic v2 models to define and validate structured data.
- Place all imports at top of file; remove unused imports.
- Follow PEP 8 best practices.
- Use clear visual separation: two blank lines between top-level definitions (functions, classes); one blank line between methods.
- Use guard clauses and early returns to flatten logic; invert conditions to reduce nesting.
- Log key decision points and state transitions at architectural boundaries for traceability and debugging.
- Apply Python 3 static typing using PEP 585.
- Use asserts extensively for catching bugs (verify invariants, pre/postconditions); they're development-time checks, not runtime guarantees. Use raise (not assert) for input validation at public API boundaries.
- Prefer pure functions and immutable data structures to minimize state-change bugs.
- Prioritize vectorized operations over explicit loops for numerical data.
- Prefer composition over inheritance.
- Prefer specific exceptions over generic ones; let exceptions propagate unless you can recover or add context.
- Minimize try/except scope: wrap only operations that raise exceptions, not entire function bodies.
- Mark internal APIs with single leading underscore. </code_rules>
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 · 85 lines · 1,270 tokens per session scan A 40809a56bfb9
planwise CLAUDE.md is an instructions file published in the GitHub repository anthonyverriest/planwise (3 stars, last pushed 3mo ago), licensed MIT. It adds 1,270 tokens to every session, about $0.0064 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
deepagents AGENTS.md
AGENTS.md instructions for langchain-ai/deepagents, covering global development guidelines for the deep agents monorepo, corridor security analysis, development workflow, suppressing ruff rules and pr conventions.
apm python.instructions.md
Python development guidelines.
lobster0 AGENTS.md
AGENTS.md instructions for NEDONION/lobster0, covering lobster0 agent 工程规范, 适用范围与优先级, 项目事实, 常用命令 and 首次安装或依赖变化后.
streamlit e2e_playwright.instructions.md
Instructions for streamlit/streamlit, covering streamlit e2e tests, test structure, key fixtures and utilities, external test mode and url handling (no localhost hardcoding).
pydantic-ai-gepa AGENTS.md
AGENTS.md instructions for indexedlabs/pydantic-ai-gepa, covering repository guidelines, mighty workflow, project structure & module organization, build, test, and development commands and coding style & naming conventions.
codexspec CLAUDE.md
Claude Code instructions for Zts0hg/codexspec, covering claude.md - codexspec development guide, project overview, purpose, technology stack and architecture.