Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
nathan-gage avatar

Python Best Practices

  • 761 installs
  • 1 repo stars
  • Updated April 24, 2026
  • nathan-gage/python-skills

python-best-practices is a version 1.3.0 agent rule set with 70 Python engineering guidelines across 8 categories for developers who need consistent, high-signal patterns when generating or refactoring Python code.

About

python-best-practices is a version 1.3.0 skill in nathan-gage/python-skills (April 2026) optimized for AI agents that maintain, generate, or refactor Python codebases. It documents 70 rules across 8 categories, prioritized from data modeling and error handling down to naming and import hygiene. Each rule is observational: it states the pattern, cost of violation, incorrect versus correct code examples, and primary-source citations. Developers load it to cut Python slop, align agent output with production conventions, and shorten review cycles. The framing explicitly prioritizes consistency and pattern-matching for AI-assisted workflows over casual scripting advice.

  • 70 prioritized rules across 8 categories
  • Observational rules with incorrect/correct examples and primary sources
  • Optimized for AI agents and LLMs maintaining or generating Python code
  • Assumes Python 3.11+ baseline with version-specific callouts
  • Rule match acts as signal rather than automatic verdict

Python Best Practices by the numbers

  • 761 all-time installs (skills.sh)
  • +9 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #32 of 290 Python skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nathan-gage/python-skills --skill python-best-practices

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs761
repo stars1
Security audit3 / 3 scanners passed
Last updatedApril 24, 2026
Repositorynathan-gage/python-skills

What Python coding rules should AI agents follow?

Give their coding agent a consistent, high-signal rule set that dramatically reduces Python code slop and refactoring time.

Who is it for?

Developers using AI agents on Python APIs, libraries, or services who need a shared 70-rule engineering standard.

Skip if: Non-Python stacks or teams that only need one-off scripts with no consistency requirements across a codebase.

When should I use this skill?

A developer asks the agent to write, refactor, or review Python and wants enforced patterns for models, errors, naming, and imports.

What you get

Agent-generated Python aligned to 70 documented rules with incorrect/correct examples and cited sources.

  • Standards-compliant Python code
  • Refactoring guidance

By the numbers

  • Version 1.3.0 with 70 rules across 8 categories
  • Published April 2026 in nathan-gage/python-skills

Files

SKILL.mdMarkdownGitHub ↗

Python Best Practices

Guidelines for writing and reviewing Python. 70 rules across 8 categories, prioritized by impact.

A rule match is a signal, not a verdict. Most rules are design preferences for new code, not bugs to fix across the repo — check the rule's impact level before flagging in review or refactoring stable code.

When to Apply

  • Writing new Python modules, functions, classes, or data models
  • Reviewing code for correctness or type safety
  • Refactoring patterns in code that's being edited anyway

Avoid applying these rules as a blanket sweep across stable code — the churn rarely pays off.

Impact Levels

  • CRITICAL — prevents a real bug class (data corruption, swallowed cancellations, insecure defaults). Fix when found.
  • HIGH — meaningful correctness or maintainability win. Worth fixing in most contexts.
  • MEDIUM — good practice; clarity or drift prevention. Apply to new code; don't churn stable code.
  • LOW-MEDIUM / LOW — style or micro-optimizations. Apply opportunistically.

Python Version Baseline

Rules assume Python 3.11+. Rules depending on higher versions call it out inline:

  • warnings.deprecated() — 3.13+
  • zoneinfo — 3.9+
  • Union types in isinstance() — 3.10+
  • assert_never — 3.11+ (backport via typing_extensions)

Rules tagged applicability:pydantic are Pydantic-specific.

Rule Categories by Priority

PriorityCategoryImpactPrefix
1Data ModelingHIGHdata-
2Error HandlingMEDIUM-HIGHerror-
3Type SafetyMEDIUM-HIGHtypes-
4API DesignMEDIUMapi-
5Code SimplificationLOW-MEDIUMsimplify-
6PerformanceLOW-MEDIUMperf-
7NamingLOW-MEDIUMnaming-
8Imports & StructureLOWimports-

Section impact is a typical-case label; individual rules range one level above or below — check the rule file.

Quick Reference

Data Modeling (data-)

  • data-mutable-defaults — Never def f(items=[]); use None + body construction or default_factory
  • data-derive-dont-store — Compute booleans from state; don't cache flags that mirror each other
  • data-mutation-contract — Mutate OR return; not both
  • data-aware-datetimes — Timezone-aware datetime.now(timezone.utc); utcnow() is deprecated
  • data-discriminated-unions — Tag variants instead of optional-field bags
  • data-explicit-variants — Concrete classes per mode beat is_thread / is_edit flags
  • data-phased-composition — Group co-present optionals into one nested optional
  • data-encapsulate-mutable-state — Trap mutable state in the narrowest clear scope
  • data-sentinel-when-none-is-valid — Private sentinel when None is a meaningful value
  • data-newtype-for-idsNewType('UserId', str) so IDs aren't interchangeable
  • data-delete-dead-variants — Remove union arms that aren't constructed

Error Handling (error-)

  • error-specific-exceptions — Catch specific types; never bare except: or except BaseException: (breaks Ctrl-C and async cancellation); except Exception: is cancellation-safe on 3.8+
  • error-context-managerswith / async with for files, locks, sessions
  • error-assert-debug-onlyassert vanishes under -O; not for runtime contracts
  • error-validate-at-boundaries — Fail fast at system edges before expensive work
  • error-trust-validated-state — Trust immutable, locally-constructed state
  • error-consolidate-try-except — Merge blocks with the same catch and handling
  • error-assert-never-exhaustivenesstyping.assert_never for exhaustiveness
  • error-raise-from-for-chainsraise NewErr(...) from original to preserve causality
  • error-inherit-base-exceptions — New exceptions inherit existing bases for compatibility
  • error-log-exception-contextlogger.exception(...) inside except; keep the traceback in the log
  • error-repr-in-messagesf"tool {name!r}" for identifiers in error text

Type Safety (types-)

  • types-fix-errors-not-ignore — Fix type errors; # type: ignore is a last resort
  • types-avoid-any — Protocols, TypeVars, unions over Any
  • types-typeddict-over-dict-anyTypedDict / dataclass when structure is known
  • types-literal-for-fixed-setsLiteral["a", "b"] for fixed strings
  • types-fix-types-not-cast — Fix the definition; cast() only when runtime genuinely narrows
  • types-isinstance-for-narrowingisinstance() over hasattr / type(x).__name__
  • types-narrow-to-runtime-reality — Annotations match what control flow actually allows
  • types-trust-the-checker — Drop runtime checks the types already enforce
  • types-remove-redundant-optional — Drop | None when values are guaranteed present
  • types-type-checking-importsif TYPE_CHECKING: for optional or heavy imports

API Design (api-)

  • api-required-before-optional — Required fields before optional (Python enforces this)
  • api-keyword-only-params* marker for optional/config params
  • api-no-boolean-flag-paramsLiteral / Enum over True, False soup
  • api-immutable-transforms — Return new collections; don't mutate inputs
  • api-model-cohesion — Flat models; no duplicate or single-key-wrapped fields
  • api-underscore-for-private_prefix for internals; exclude from __all__
  • api-deprecated-aliaseswarnings.deprecated() (3.13+) for renamed APIs
  • api-no-private-access — Don't reach into _prefixed names from outside the module
  • api-instance-vs-module-fn — Pick the namespace that matches ownership

Code Simplification (simplify-)

  • simplify-early-return — Return early; don't nest the happy path
  • simplify-extract-after-duplication — Second copy is the decision point; third is the safe default
  • simplify-cached-property@cached_property on immutable instances; not thread-safe
  • simplify-comprehensions — Comprehensions over for + .append()
  • simplify-any-all-builtinsany() / all() over manual flag + break
  • simplify-fallback-orx or default when falsy values aren't semantic
  • simplify-flatten-nested-ifif cond1 and cond2: when no intervening code
  • simplify-inline-single-use-vars — Drop intermediates used once
  • simplify-remove-dead-code — Delete commented-out code; git preserves history

Performance (perf-)

  • perf-set-for-membershipset for repeated in checks
  • perf-dict-index-over-nested-loops — Build a dict for lookups
  • perf-lru-cache-pure-fnsfunctools.lru_cache / functools.cache on pure functions
  • perf-generator-over-list — Stream with generators when memory or latency matters
  • perf-combine-iterations — Fuse filter + map into one pass
  • perf-compile-regex-module-level — Compile static regex at module scope; matters in tight loops
  • perf-type-adapter-constant — Module-scope TypeAdapter (applicability: pydantic)
  • perf-isinstance-tuple-syntax — Tuple form is marginally faster; profiled hot paths only

Naming (naming-)

  • naming-rename-on-behavior-change — Rename when behavior changes; stale names mislead
  • naming-consistent-terminology — Same concept, same word across code/docs/errors
  • naming-specific-over-generictoolset_id; not bare id
  • naming-drop-redundant-prefixesToolConfig.description; not ToolConfig.tool_description
  • naming-upper-case-constantsMAX_RETRIES; _ prefix for internal
  • naming-no-type-suffixes — No _dict / _list suffixes; types annotate types

Imports & Structure (imports-)

  • imports-no-side-effects — Modules must be cheap to import — no network/model/env reads at import
  • imports-top-of-file — Imports at the top; documented exceptions for circular / optional / deferred
  • imports-optional-dependenciestry / except ImportError with install hints
  • imports-scope-helpers-to-usage — Define helpers near where they're used
  • imports-remove-unused — Delete unused imports
  • imports-no-duplicates — One import per name

How to Use

Read individual rule files for detail:

rules/data-mutable-defaults.md
rules/error-specific-exceptions.md

Each rule has:

  • Impact level in frontmatter
  • Brief explanation
  • Incorrect example
  • Correct example
  • Optional note on edge cases

For the full compiled guide with all rules expanded: AGENTS.md.

Related skills

How it compares

Pick python-best-practices when you need a dense 70-rule agent playbook rather than a short linter config or language tutorial.

FAQ

How many rules does python-best-practices include?

python-best-practices version 1.3.0 defines 70 rules organized into 8 categories, prioritized from high-impact data modeling and error handling down to naming and import hygiene.

Who is python-best-practices written for?

python-best-practices is optimized for AI agents and LLMs that generate or refactor Python codebases, with observational rules showing incorrect and correct examples plus primary-source citations.

Is Python Best Practices safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Pythonbackend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.