원클릭으로
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.