con un clic
python-core-idioms
Modern Python 3.12+ patterns, type hinting, and iconic constructs.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Modern Python 3.12+ patterns, type hinting, and iconic constructs.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Bootstraps a new project with standard folder structure, git init, basic files, planning doc skeletons, and initial memory.json. Triggers on new project creation keywords. CRITICAL for first-time setup.
Configuration for Virtual Hosts, .htaccess, and PHP-FPM in LAMP stacks.
Principles for REST, GraphQL, versioning, and API authentication.
Optimization and usage of SVGs, fonts, and static assets.
Patterns for maintaining or migrating Bootstrap 3/4/5 projects.
Caddyfile configuration, auto-HTTPS, and FastCGI.
| name | python-core-idioms |
| description | Modern Python 3.12+ patterns, type hinting, and iconic constructs. |
list[str], dict[str, int] (builtin generics) instead of List, Dict from typing.str | None instead of Optional[str].match / case for complex control flow (structural pattern matching).:= for assignment expression in if/while conditions when it improves readability (e.g., regex matching).@dataclass for data holding classes instead of strict dictionaries or raw classes.
frozen=True for immutability.StrEnum (3.11+) if string behavior is needed.