From skills-toybox
This skill should be used when the user wants to "review code", "check code quality", "run code review", or needs local code quality verification before git push. Runs lint, typecheck, and code review on changed files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skills-toybox:code-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
git push 전에 변경된 코드의 품질을 검증한다.
git push 전에 변경된 코드의 품질을 검증한다.
git diff --name-only로 변경된 파일 목록 확인
yarn lint 실행하여 린트 에러 확인yarn typecheck 실행하여 타입 에러 확인변경된 파일을 읽고 아래 기준에 따라 분석
?.), nullish coalescing (??) 사용## 검증 결과
### 1. ESLint
- [ ] 통과 / 실패 (에러 N개)
### 2. TypeScript
- [ ] 통과 / 실패 (에러 N개)
### 3. 코드 리뷰
- 문제점: ...
- 개선 제안: ...
### 결론 및 분류 기준
| 이모지 | 등급 | 판별 기준 |
|--------|------|--------------------------------------------------------|
| 🔴 | P2 | 반드시 수정 필요 - Critical한 이슈만 해당 |
| 🟡 | P3 | 수정 권장 - 높은 확률로 개선해야 하는 이슈 |
| 🟢 | P4 | 의견 - 개선하면 좋지만 안해도 큰 문제 없는 이슈 |
| 🟢 | P5 | 참고/칭찬 - 단순 의견과 개선점, 그리고 칭찬 |
빌드 검증이 필요하면 "빌드도 검증해줘"라고 요청하면 yarn build도 실행한다.
npx claudepluginhub wonjiko/claude-toymarket --plugin skills-toyboxReviews and verifies code before merge via triage-first checks (up to 16 parallel agents). Pipeline mode verifies vs plans; general mode for PRs/branches/staged changes. Flags findings only.
Reviews code for bugs, security issues, bad patterns, and untested code. Delegates fixes, tests, and security scans to specialized skills.
Performs 6-aspect structured code review on git-changed files: security, type safety, error handling, tests, quality, simplification. Generates findings report and merge decision.