python

Installation
SKILL.md

Python Skill


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:
    ...

Project Structure

Installs
207
GitHub Stars
696
First Seen
Jan 20, 2026
python — alinaqi/claude-bootstrap