一键导入
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()