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

Related skills
Installs
137
GitHub Stars
622
First Seen
Jan 20, 2026