python
Python, pyproject.toml, uv, pip, pytest, Pydantic, type hints, or Python patterns.
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, pyproject.toml, uv, pip, pytest, Pydantic, type hints, or Python patterns.
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
Pi extensions and tool policy: extensions/*.ts, hooks, registerTool, promptGuidelines, registerCommand, footer/status UI, tool_result, session hooks, or subprocesses. Not for slash-command placement; use pi-command.
README, CHANGELOG, docs/, RFCs, ADRs, guides, or Markdown structure. Not for prose cleanup or archival work.
Prose cleanup for filler, hype, vague claims, repetition, detection tells, or uncited specifics. Not for Markdown architecture or archival work.
Requirements, user stories, acceptance/verification criteria, or testable outcomes. Not for PRD drafting (/prd) or Pi /goal prompts.
Use for /prd-it or to draft, refine, or review a Product Requirements Document. Not for acceptance criteria, planning, or Pi /goal prompts.
Pi session, trace, metrics, routing, workflow-friction, workflow-telemetry, usage, or local JSONL analysis with DuckDB. Use for aggregating or correlating Pi runtime logs. Not for adding telemetry, generic SQL/database design, or non-Pi logs.
| name | python |
| description | Python, pyproject.toml, uv, pip, pytest, Pydantic, type hints, or Python patterns. |
Compact index for Python work. Load linked files only for framework-specific details or examples.
uv, pytest, and ruff; Python floor is 3.9 from pyproject.toml.reference.md; prefer locked installs and avoid ad-hoc uv pip install.python, not python3. Run script paths directly; use python -m only for modules.pyproject.toml and relevant tests.uv for dependency and command execution when the project supports it.| Purpose | Commands |
|---|---|
| Dotfiles quick tests | make test-quick |
| Python tests | make test-pytest or uv run pytest <path> |
| Python lint | make lint-python or uv run ruff check <path> |
| Format check/fix | uv run ruff format --check <path> / uv run ruff format <path> |
| Full repo check | make check |
pip/global installs when uv is available in the repo workflow.