ワンクリックで
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 ページを確認してインストールできます。
SOC 職業分類に基づく
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.