원클릭으로
python-uv
Python policy: uv-first, PEP 723 scripts, run via uv run
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Python policy: uv-first, PEP 723 scripts, run via uv run
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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()