一键导入
python-dev
Python guidelines. Use when writing, reviewing or specifying python code
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Python guidelines. Use when writing, reviewing or specifying python code
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Reviews a full branch for correctness, idioms, comments, optimization balance, and testing — via parallel subagents per focus area. Use before requesting external review or merging.
Process PR review comments iteratively, one by one. Use whenever asked to address incoming review feedback on a pull request.
| name | python-dev |
| description | Python guidelines. Use when writing, reviewing or specifying python code |
Put a special importance on being idiomatic, in particular relative to the current python version used. Don't rely on old best practices and idioms, use modern constructs when relevant. For example:
Always strive to be correct. That means using the standard, idiomatic constructs of the language and frameworks you're using. Don't take shortcuts by disabling lints with #noqa.