python-typing-ops

Installation
SKILL.md

Python Typing Patterns

Modern type hints for safe, documented Python code.

Basic Annotations

# Variables
name: str = "Alice"
count: int = 42
items: list[str] = ["a", "b"]
mapping: dict[str, int] = {"key": 1}

# Function signatures
def greet(name: str, times: int = 1) -> str:
    return f"Hello, {name}!" * times
Installs
36
GitHub Stars
24
First Seen
Mar 9, 2026
python-typing-ops — 0xdarkmatter/claude-mods