Claude Code Plugins

Community-maintained marketplace

Feedback

Python development standards and toolchain preferences. Use when (1) writing ANY Python code, (2) setting up Python projects with pyproject.toml, (3) creating standalone CLI scripts, (4) configuring Python tooling (ruff, mypy, pytest, nox, uv), (5) reviewing or refactoring Python code, or (6) advising on Python best practices. Enforces modern Pythonic style, strict type hints, and uv-based workflows.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name python
description Python development standards and toolchain preferences. Use when (1) writing ANY Python code, (2) setting up Python projects with pyproject.toml, (3) creating standalone CLI scripts, (4) configuring Python tooling (ruff, mypy, pytest, nox, uv), (5) reviewing or refactoring Python code, or (6) advising on Python best practices. Enforces modern Pythonic style, strict type hints, and uv-based workflows.

Python Development Standards

Before Writing Any Code

For applications and multi-file projects: Read references/tdd-workflow.md first. Follow TDD with mandatory verification after every change.

For CLI scripts and one-off utilities: Skip TDD workflow. Focus on working code.

Core Requirements

  1. Type hints everywhere - all functions, all parameters, all return types. No Any.
  2. Docstrings on all public interfaces - RST format for Sphinx compatibility
  3. Absolute imports only - never use relative imports
  4. Modern Python idioms - use latest features appropriate for target version
  5. Empty __init__.py - never add anything to __init__.py

Reference Files

Read based on task: