with one click
python-uv
Python policy: uv-first, PEP 723 scripts, run via uv run
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Python policy: uv-first, PEP 723 scripts, run via uv run
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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()