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
2
Repository
alinaqi/maggy
GitHub Stars
689
First Seen
May 21, 2026
python — alinaqi/maggy