con un clic
python
Python conventions, tooling, and CLI commands.
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ú
Python conventions, tooling, and CLI commands.
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
Plan mode — iterative exploration and planning. Read-only.
Dev mode — implement features following a plan using TDD. Load when asked to build, implement, code, or apply a plan. Full tools available.
Review mode — evaluate implementations for correctness, security, style, and completeness. Load when asked to review, audit, evaluate, or assess code. Read-only.
todo.txt plain text task tracking. Use when managing tasks — creating, listing, updating status, searching, or completing tasks.
Jira CLI for issue management. Use when asked to list, view, create, transition, or comment on Jira issues, search with JQL, manage sprints, epics, or releases. Use for all Jira/Atlassian operations.
Academic research workflows — PDF parsing, literature review, and paper analysis. Load when working with papers, citations, or academic content.
| name | python |
| description | Python conventions, tooling, and CLI commands. |
| disable-model-invocation | true |
uv run pytest # Run tests
uv run ruff check . # Lint
uv run ruff format . # Format
uv add <package> # Add dependency
uv sync # Install all deps
uv for dependency management and virtual environmentsruff for linting and formatting (never use black, isort, or flake8 separately)pytest for testing with pytest-cov for coverage_ prefixes to indicate internal/private classes, methods, or variables; use proper module boundaries and explicit public APIs instead* imports; always be explicit about what is importedpytest fixtures for setup and teardownparametrize over duplicated test casestest_<what>_<when>_<expected>