ASD

Python Type Safety

Seguridad de tipos en Python con anotaciones, genéricos, protocolos y verificación estricta con mypy/pyright.

Estrellas
38.8k

en todo el repo

Actividad
47

0–100, la ruta de este skill

Actualizado
hace 2 meses

último commit aquí

Commits
1

últimos 90 días

Contexto
1.4k tok

52 tok en reposo

Paquete
2 archivos

11 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add wshobson/agents --skill python-type-safety --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Añade anotaciones de tipos a firmas públicas, funciones y clases
  • Aplica sintaxis moderna de uniones (T | None) en vez de Optional[T]
  • Implementa clases genéricas con TypeVar y Generic para preservar tipos
  • Define protocolos para interfaces estructurales sin herencia
  • Usa guardas de tipo para el estrechamiento (narrowing) dentro del código

Úsalo cuando

  • Al añadir anotaciones de tipo a código existente
  • Al crear clases genéricas y reutilizables
  • Al definir interfaces estructurales con protocolos
  • Al configurar mypy o pyright para verificación estricta

No lo uses cuando

    Qué lo activa

    Di cualquiera de estas frases y el agente debería cargar este skill.

    • Añade anotaciones de tipo a este módulo de Python
    • Crea una clase genérica Result[T, E] type-safe
    • Configura mypy --strict para este proyecto
    • Define un Protocol para esta interfaz sin usar herencia

    SKILL.md

    En inglés

    Python Type Safety

    Leverage Python's type system to catch errors at static analysis time. Type annotations serve as enforced documentation that tooling validates automatically.

    When to Use This Skill

    • Adding type hints to existing code
    • Creating generic, reusable classes
    • Defining structural interfaces with protocols
    • Configuring mypy or pyright for strict checking
    • Understanding type narrowing and guards
    • Building type-safe APIs and libraries

    Core Concepts

    1. Type Annotations

    Declare expected types for function parameters, return values, and variables.

    2. Generics

    Write reusable code that preserves type information across different types.

    3. Protocols

    Define structural interfaces without inheritance (duck typing with type safety).

    4. Type Narrowing

    Use guards and conditionals to narrow types within code blocks.

    Quick Start

    def get_user(user_id: str) -> User | None:
        """Return type makes 'might not exist' explicit."""
        ...
    
    # Type checker enforces handling None case
    user = get_user("123")
    if user is None:
        raise UserNotFoundError("123")
    print(user.name)  # Type checker knows user is User here
    

    Fundamental Patterns

    Pattern 1: Annotate All Public Signatures

    Every public function, method, and class should have type annotations.

    def get_user(user_id: str) -> User:
        """Retrieve user by ID."""
        ...
    
    def process_batch(
        items: list[Item],
        max_workers: int = 4,
    ) -> BatchResult[ProcessedItem]:
        """Process items concurrently."""
        ...
    
    class UserRepository:
        def __init__(self, db: Database) -> None:
            self._db = db
    
        async def find_by_id(self, user_id: str) -> User | None:
            """Return User if found, None otherwise."""
            ...
    
        async def find_by_email(self, email: str) -> User | None:
            ...
    
        async def save(self, user: User) -> User:
            """Save and return user with generated ID."""
            ...
    

    Use mypy --strict or pyright in CI to catch type errors early. For existing projects, enable strict mode incrementally using per-module overrides.

    Pattern 2: Use Modern Union Syntax

    Python 3.10+ provides cleaner union syntax.

    # Preferred (3.10+)
    def find_user(user_id: str) -> User | None:
        ...
    
    def parse_value(v: str) -> int | float | str:
        ...
    
    # Older style (still valid, needed for 3.9)
    from typing import Optional, Union
    
    def find_user(user_id: str) -> Optional[User]:
        ...
    

    Pattern 3: Type Narrowing with Guards

    Use conditionals to narrow types for the type checker.

    def process_user(user_id: str) -> UserData:
        user = find_user(user_id)
    
        if user is None:
            raise UserNotFoundError(f"User {user_id} not found")
    
        # Type checker knows user is User here, not User | None
        return UserData(
            name=user.name,
            email=user.email,
        )
    
    def process_items(items: list[Item | None]) -> list[ProcessedItem]:
        # Filter and narrow types
        valid_items = [item for item in items if item is not None]
        # valid_items is now list[Item]
        return [process(item) for item in valid_items]
    

    Pattern 4: Generic Classes

    Create type-safe reusable containers.

    from typing import TypeVar, Generic
    
    T = TypeVar("T")
    E = TypeVar("E", bound=Exception)
    
    class Result(Generic[T, E]):
        """Represents either a success value or an error."""
    
        def __init__(
            self,
            value: T | None = None,
            error: E | None = None,
        ) -> None:
            if (value is None) == (error is None):
                raise ValueError("Exactly one of value or error must be set")
            self._value = value
            self._error = error
    
        @property
        def is_success(self) -> bool:
            return self._error is None
    
        @property
        def is_failure(self) -> bool:
            return self._error is not None
    
        def unwrap(self) -> T:
            """Get value or raise the error."""
            if self._error is not None:
                raise self._error
            return self._value  # type: ignore[return-value]
    
        def unwrap_or(self, default: T) -> T:
            """Get value or return default."""
            if self._error is not None:
                return default
            return self._value  # type: ignore[return-value]
    
    # Usage preserves types
    def parse_config(path: str) -> Result[Config, ConfigError]:
        try:
            return Result(value=Config.from_file(path))
        except ConfigError as e:
            return Result(error=e)
    
    result = parse_config("config.yaml")
    if result.is_success:
        config = result.unwrap()  # Type: Config
    

    Detailed worked examples and patterns

    Detailed sections (starting with ## Advanced Patterns) live in references/details.md. Read that file when the navigation summary above is insufficient.

    Best Practices Summary

    1. Annotate all public APIs - Functions, methods, class attributes
    2. Use T | None - Modern union syntax over Optional[T]
    3. Run strict type checking - mypy --strict in CI
    4. Use generics - Preserve type info in reusable code
    5. Define protocols - Structural typing for interfaces
    6. Narrow types - Use guards to help the type checker
    7. Bound type vars - Restrict generics to meaningful types
    8. Create type aliases - Meaningful names for complex types
    9. Minimize Any - Use specific types or generics. Any is acceptable for truly dynamic data or when interfacing with untyped third-party code
    10. Document with types - Types are enforceable documentation

    Reproducido de wshobson/agents bajo licencia MIT. Leer esta página en markdown.

    Archivos

    2 archivos en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

    Antes de instalar

    Requiere Python 3.10+ para la sintaxis de uniones moderna (T | None), y mypy o pyright para la verificación estática.

    Detalles

    Creador
    wshobson
    Licencia
    MIT
    Recursos incluidos
    referencias
    Repositorio
    wshobson/agents
    Código fuente
    Ver SKILL.md

    Etiquetas

    Más de wshobson/agents

    Este repo incluye 180 skills. Si instalas uno, normalmente ya tienes los demás.

    Úsalo al seleccionar y colocar iconos, imágenes, SVGs, diagramas o infografías de apoyo aprobados en un PPTX editable.

    Costo de contexto al activarse
    344 tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 26 días
    documentos

    Úsalo cuando pidan optimizar un prompt, mejorar su rendimiento, diseñar una plantilla, aplicar chain-of-thought, few-shot prompting o técnicas avanzadas de prompt engineering para producción.

    Costo de contexto al activarse
    1.3k tok
    Tamaño del paquete
    10 archivos
    Última actualización
    el mes pasado
    herramientas desarrollo

    Úsalo al redactar o reparar una especificación JSON con coordenadas explícitas para un PPTX editable.

    Costo de contexto al activarse
    489 tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 26 días
    documentos

    Úsalo para validar o reparar un PPTX editable en cuanto a geometría, accesibilidad, editabilidad nativa, linaje de fuente e integridad del paquete OOXML.

    Costo de contexto al activarse
    409 tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 26 días
    documentos

    Úsalo para analizar un PPTX de referencia en modo solo lectura: estructura, tema, tipografía, ritmo de layout, diagnósticos, catálogos de plantillas derivados o inspección segura del paquete OOXML.

    Costo de contexto al activarse
    689 tok
    Tamaño del paquete
    8 archivos
    Última actualización
    hace 26 días
    documentos

    Úsalo al preparar la narrativa, las fuentes y el contexto de diseño para un nuevo deck PPTX editable.

    Costo de contexto al activarse
    415 tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 26 días
    documentos

    Skills relacionados

    Domina el sistema de tipos avanzado de TypeScript: generics, tipos condicionales, mapped types, template literals y utility types para aplicaciones type-safe.

    Costo de contexto al activarse
    2k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 2 meses
    herramientas desarrollo

    Patrones de resiliencia en Python: reintentos automáticos, backoff exponencial, timeouts y decoradores tolerantes a fallos para servicios.

    Costo de contexto al activarse
    1.5k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 2 meses
    herramientas desarrollo

    Organización de proyectos Python, arquitectura de módulos y diseño de APIs públicas con __all__, para nuevos proyectos o reorganización de directorios.

    Costo de contexto al activarse
    1.7k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 6 meses
    herramientas desarrollo