clean-code-inspector
Installation
SKILL.md
-
Identify Changes:
- Run
git statusto see the current state. - Run
git diff --name-only(orgit diff --cached --name-onlyif changes are staged) to get the list of modified files. - Focus on React components and logic files (
.tsx,.ts,.jsx,.js).
- Run
-
Analyze Code (adaptive parallelism):
변경 파일 수에 따른 분석 전략:
3개 이하: 순차 분석 (기존 방식)
각 파일을 직접
git diff로 검사하고 Scorecard 프레임워크에 따라 평가합니다.4개 이상: 병렬 분석