en un clic
python-uv
Python policy: uv-first, PEP 723 scripts, run via uv run
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Python policy: uv-first, PEP 723 scripts, run via uv run
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Airflow DAG patterns, KubernetesPodOperator, and debugging. Use on 'dag', 'airflow', 'task', 'operator', 'KPO', 'scheduler', 'XCom'.
Create and debug AWS IAM policies with least-privilege. Use on 'IAM policy', 'permission denied', 'access denied', 'not authorized', 'create role'.
Create architecture diagrams with draw.io MCP server. Use on 'diagram', 'architecture', 'drawio', 'flowchart', 'visualize'.
Git operations including commits, branches, worktrees, and safety protocols. Use on 'git', 'commit', 'branch', 'worktree', 'rebase', 'merge'.
Helm chart policies, bitnami legacy repo, and release management. Use on 'helm-skill' or 'load helm skill'.
Kubernetes security best practices for manifests and Helm charts. Use on 'k8s security', 'manifest audit', 'helm security review', 'pod hardening'.
| name | python-uv |
| description | Python policy: uv-first, PEP 723 scripts, run via uv run |
Use uv for Python workflows.
Default to uv for running, installing, and tooling.
Any standalone script you write MUST be a PEP 723 script and runnable as:
uv run path/to/script.py
Avoid python path/to/script.py in instructions.
python -c '...'.Do not mention Poetry unless the repo is legacy and already requires it.
uv when appropriate.In greenfield repos, or legacy setup.py/pip projects, prefer moving to pyproject.toml + uv when appropriate.
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "requests>=2",
# ]
# ///
def main() -> None:
print("hello")
if __name__ == "__main__":
main()