planwise CLAUDE.md

planwise CLAUDE.md is an instructions file for coding agents from anthonyverriest/planwise. It costs 1,270 tokens per session, scanned A, original, MIT.

A set of instructions for writing Python code that is clear, strongly typed, maintainable, and designed to handle failures. It promotes simple structure, separate responsibilities, logging, and event-driven systems.

In plain words
What is it for?
Use it when designing or changing Python applications, especially systems with domain logic, infrastructure services, asynchronous work, events, metrics, logs, or tracing.
Why use it?
It gives an agent consistent engineering rules when a Python project has many design choices. This helps reduce hidden dependencies, hard-to-test code, and unclear failure behavior.

Instructions file

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/anthonyverriest/planwise/claude-md
Clone the repo
git clone --depth 1 https://github.com/anthonyverriest/planwise

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 planwise CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/anthonyverriest/planwise/claude-md.svg)](https://agentmods.dev/instructions/anthonyverriest/planwise/claude-md)
Your own site
<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>
Per session 1,270 This file is loaded in full into every session.
When invoked 1,270 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.01270 $0.01270
Opus 5 $0.00635 $0.00635
Sonnet 5 $0.00254 $0.00254
Haiku 4.5 $0.00127 $0.00127

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

Security

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.

CLAUDE.md · 85 lines

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 (with statements) for resource management; use async with for 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>

Read the full file on GitHub · 85 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 · 85 lines · 1,270 tokens per session scan A 40809a56bfb9

Subscribe to this mod's changes

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.