Skill 詳細
code-review
Direct pull-request code-review checklist.
使用前に確認
自動レビューは関連性のみを確認し、安全性や推奨を保証しません。使用前に出典の説明を読んでください。
SKILL.md
これはレビュー時に保存された抜粋です。完全で最新の内容は外部ソースを確認してください。
--- name: code-review description: Comprehensive code review checklist for pull requests author: goose version: "1.0" tags: - development - quality - review --- # Code Review Checklist When reviewing code, check each of these areas: ## Functionality - [ ] Code does what the PR description claims - [ ] Edge cases are handled - [ ] Error handling is appropriate ## Code Quality - [ ] Follows project style guide - [ ] No hardcoded values that should be configurable - [ ] Functions are focused and well-named ## Testing - [ ] New functionality has tests - [ ] Tests are meaningful, not just for coverage - [ ] Existing tests still pass ## Security - [ ] No credentials or secrets in code - [ ] User input is validated - [ ] SQL queries are parameterized ## Performance - [ ] No obvious performance issues - [ ] Database queries are optimized - [ ] No unnecessary loops or iterations ## Documentation - [ ] Public APIs are documented - [ ] Complex logic has comments explaining "why" - [ ] README updated if neededGitHub で全文を読む (外部ページ)