python

Installation
SKILL.md

Python Skill

Load with: base.md


Type Hints

  • Use type hints on all function signatures
  • Use typing module for complex types
  • Run mypy --strict in CI
def process_user(user_id: int, options: dict[str, Any] | None = None) -> User:
    ...

Installs
1
GitHub Stars
1
First Seen
Jul 2, 2026
python — artofrawr/claude-control