← スキル一覧に戻る

code-review
by WellApp-ai
code-reviewは、システム間の統合と連携を実現するスキルです。APIとデータの統合により、シームレスな情報フローと業務効率の向上をサポートします。
⭐ 305🍴 43📅 2026年1月23日
SKILL.md
name: code-review description: Review code changes against hard rules and conventions
Code Review Skill
Systematically review code for quality, conventions, and potential issues.
When to Use
- Before committing changes (auto-triggered)
- Reviewing others' PRs
- Self-review before pushing
- Pre-push validation (Phase 0)
Phase 0: Pre-Push Validation
Before reviewing code, ensure build passes:
-
npm run typecheck- No type errors -
npm run lint- No lint errors - No console.log in changed files
- Tests pass (if applicable):
npm run test
If any check fails, fix before proceeding to code review.
Quick check command:
npm run typecheck && npm run lint
Check for console.log:
git diff --cached --name-only | xargs grep -l "console.log" 2>/dev/null
Review Checklist
Hard Rules Check
- No
anytype usage - No console.log statements
- Components under 200 lines
- No inline styles (Tailwind only)
- No arbitrary values (
px-[13px]) - API follows 3-layer pattern
Code Quality Check
- Clear variable/function names
- No duplicated code
- Proper error handling
- Types are specific (not
unknowneverywhere)
Conventions Check
- Follows existing patterns in codebase
- Imports organized correctly
- File in correct location (feature folder)
Security Check
- No hardcoded secrets/API keys
- No exposed sensitive data
- Proper input validation
Output Format
Present findings as:
Code Review Summary
Files Changed: [count] Issues Found: [count by severity]
Critical (must fix)
-
file.ts:L42- [issue description]
Warnings (should fix)
-
file.ts:L15- [issue description]
Suggestions (nice to have)
-
file.ts:L88- [suggestion]
Approved
- No blocking issues found
Proceed with commit? (yes / fix issues first)
Auto-Trigger
This skill is automatically invoked before every commit.
スコア
総合スコア
80/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
✓人気
GitHub Stars 100以上
+5
✓最近の活動
3ヶ月以内に更新
+5
✓フォーク
10回以上フォークされている
+5
○Issue管理
オープンIssueが50未満
0/5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
レビュー
💬
レビュー機能は近日公開予定です

