python

A set of coding rules for Python files covering types, formatting, imports, error handling, logging, and tests. They extend the project's general rules rather than replacing them.

In plain words
What is it for?
Use it when editing Python files to guide type annotations, dataclasses or validation models, import structure, Ruff or Black checks, and pytest test organization.
Why use it?
It gives Python code a consistent style and testing approach, reducing avoidable review issues and unclear error handling.

Cursor rule for Cursor

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 rules/sunnykgupta/ai-helpers/python
Clone the repo
git clone --depth 1 https://github.com/sunnykgupta/AI-Helpers

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 358 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.00358
Opus 5 $0.00000 $0.00179
Sonnet 5 $0.00000 $0.00072
Haiku 4.5 $0.00000 $0.00036

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

Security

Grade A, and why

python 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 2d 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.

cursor/.cursor/rules/python.mdc · 42 lines

What it actually says

Python Conventions

These rules apply only to .py files. They extend (not override) the baseline rules in project-always.mdc.


Types & Style

  • Use type annotations on all public functions and class methods (PEP 484).
  • Prefer dataclasses or pydantic models over plain dict for structured data.
  • No # type: ignore without a comment explaining why.
  • Follow PEP 8; enforce with ruff (or flake8 + isort if already configured).
  • Format with black; do not mix formatter and manual style changes in the same commit.

Imports

  • Group imports: stdlib → third-party → local, separated by blank lines.
  • Use absolute imports; avoid relative imports outside of package internals.
  • Never use wildcard imports (from module import *).

Error Handling

  • Raise built-in exceptions (ValueError, TypeError, RuntimeError) or custom subclasses — not bare Exception.
  • Use logging with structured fields; do not use print for diagnostics.

Testing

  • Use pytest; do not mix unittest and pytest in the same project.
  • Name test files test_<module>.py and test functions test_<behaviour>.
  • Use pytest.mark.parametrize for table-driven tests.

Dependencies & Packaging

  • Pin dependencies in requirements.txt or pyproject.toml; include a lock file (pip-tools / poetry.lock).
  • Do not add new packages without checking for existing equivalents in the project.
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. 2d ago First seen · 42 lines · 0 tokens per session scan A 76a2a740712a

Subscribe to this mod's changes

python is a cursor rule published in the GitHub repository sunnykgupta/AI-Helpers (70 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 358 tokens. 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.