Skip to content

Python Dev

Chris Purcell edited this page Apr 7, 2026 · 1 revision

This page is auto-generated from the plugin's README. Do not edit directly — changes will be overwritten on the next sync.

Python Dev

11 Python development skills that load automatically when relevant, plus /python-code-review for comprehensive code audits across all domains in one pass.

Summary

Python projects accumulate quality debt in specific, well-known patterns: no retry on external calls, hardcoded config, missing type annotations, untested error paths. Rather than relying on a developer to remember which domain applies, this plugin loads the right guidance automatically: the async skill appears when you write async code, the resilience skill appears when you call external APIs, and so on.

/python-code-review brings all 11 domains together into a single structured audit that identifies critical issues, prioritizes what to fix first, and highlights what the code already does well.

Principles

[P1] Context-triggered, not explicitly invoked: Skills load when the AI determines they are relevant. No user action required for routine coding sessions.

[P2] Audit without false positives: The review command checks only for concrete, demonstrable issues. Each finding maps to a specific anti-pattern with an identifiable location.

[P3] Domain isolation: Each skill covers exactly one concern. Overlap between skills is intentional cross-reference, not duplication.

Included Skills

Skill When it loads
async-python-patterns Writing async/await code
python-resilience External API calls, retries
python-observability Logging, metrics, tracing
python-testing-patterns Writing tests
python-type-safety Type annotations, generics
python-configuration Config, env vars, secrets
python-resource-management Context managers, cleanup
python-background-jobs Background tasks, queues
python-code-style Linter/formatter setup
python-design-patterns Class refactoring
python-anti-patterns Pre-PR quality check

Installation

/plugin marketplace add L3DigitalNet/Claude-Code-Plugins
/plugin install python-dev@l3digitalnet-plugins

Usage

Skills load automatically. For a one-pass audit:

/python-code-review              # audit current directory
/python-code-review src/api/     # audit a subdirectory

Clone this wiki locally