python-conventions-skills CLAUDE.md

python-conventions-skills CLAUDE.md is an instructions file for coding agents from HermeticOrmus/python-conventions-skills. It costs 844 tokens per session, scanned A, original, MIT.

A set of Python coding rules for modern Python projects, including type annotations, standard-library choices, data models, asynchronous code, and logging.

In plain words
What is it for?
Use it when writing or reviewing Python files, pyproject.toml files, and dependency lists, especially in Python 3.11 or newer projects.
Why use it?
It keeps Python code consistent and makes interfaces, data, errors, and dependencies clearer to maintain.

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/hermeticormus/python-conventions-skills/claude-md
Clone the repo
git clone --depth 1 https://github.com/HermeticOrmus/python-conventions-skills

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 python-conventions-skills CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/hermeticormus/python-conventions-skills/claude-md.svg)](https://agentmods.dev/instructions/hermeticormus/python-conventions-skills/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/hermeticormus/python-conventions-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/hermeticormus/python-conventions-skills/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 844 This file is loaded in full into every session.
When invoked 844 The same file — it is already loaded in full.
Security scan A 1 finding. 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.00844 $0.00844
Opus 5 $0.00422 $0.00422
Sonnet 5 $0.00169 $0.00169
Haiku 4.5 $0.00084 $0.00084

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

Security

Grade A, and why

python-conventions-skills CLAUDE.md scanned grade A with 1 finding 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 3d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- `subprocess.run()` over `os.system` — actual return-code handling
CLAUDE.md · 88 lines

How it starts

The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

Python conventions for modern (3.11+) projects. Apply to every .py, pyproject.toml, and requirements*.txt.

Tradeoff: bias toward strict-but-modern defaults. For one-off scripts or legacy codebases (3.8-, untyped, old Django), use judgment.

Type discipline

  • Type hints required on every function signature, public attribute, and return value
  • from __future__ import annotations at top of files — gives forward-reference types and PEP 604 union (A | B) on older runtimes
  • Pydantic v2 for any external/IO model — never plain dict[str, Any] at API boundaries
  • TypedDict for internal dict shapes that don't need validation
  • Literal["a", "b"] for string-literal enums (lighter than enum.Enum)

Stdlib preferences

  • pathlib.Path over os.path — composable, type-safe
  • dataclasses (or Pydantic) over manually-written __init__ for data containers
  • subprocess.run() over os.system — actual return-code handling
  • f-strings over % or .format() — except for logging, where lazy formatting matters
  • match statements (3.10+) for tagged-union dispatch — cleaner than chained isinstance

Async

  • async def end-to-end — don't mix sync requests into an async stack; use httpx
  • asyncio.gather for parallel; asyncio.TaskGroup (3.11+) for structured concurrency with proper cancellation
  • Never time.sleep() in async code — await asyncio.sleep() only

Logging

  • structlog if available in the project; else stdlib logging with structured extras
  • Never print() in library code — only allowed in CLIs / scripts where stdout is the deliverable
  • Lazy formatting: logger.info("user %s logged in", user_id) not logger.info(f"user {user_id}...") — avoids string interpolation when log level is filtered

Tooling defaults

  • ruff for lint + format (replaces black + flake8 + isort)
  • mypy --strict for type checking when the codebase tolerates it
  • pytest with fixtures over class-based setup/teardown
  • uv over pip for new projects (faster, lockfile by default)

Read the full file on GitHub · 88 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. 3d ago First seen · 88 lines · 844 tokens per session scan A ae4ad67acc07

Subscribe to this mod's changes

python-conventions-skills CLAUDE.md is an instructions file published in the GitHub repository HermeticOrmus/python-conventions-skills (2 stars, last pushed 3mo ago), licensed MIT. It adds 844 tokens to every session, about $0.0042 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.