Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/SimHacker/moollm --skill code-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | code-review |
| description | Systematic code analysis with evidence collection |
| allowed-tools | ["read_file","run_terminal_cmd"] |
| tier | 2 |
| protocol | CODE-REVIEW |
| tags | ["moollm","development","quality","review","security"] |
| related | ["adventure","debugging","research-notebook","session-log","rubric","evaluator"] |
| templates | [{"file":"REVIEW.yml.tmpl","purpose":"Structured review tracking","parameters":["review_name","created_date","focus","files"]},{"file":"REVIEW.md.tmpl","purpose":"Formatted review document","parameters":["review_name","created_date","files"]}] |
"Read with intent. Question with purpose. Document with care."
Systematic code analysis with evidence collection. Code review IS an adventure — the codebase is the dungeon, findings are clues.
READ → NOTE ISSUES → CLASSIFY → REPORT
For each file:
| Level | Symbol | Meaning | Action |
|---|---|---|---|
| Blocking | 🚫 | Must fix before merge | Request changes |
| Important | ⚠️ | Should fix or explain | Request changes |
| Minor | 💡 | Nice to fix | Comment only |
| Praise | 🎉 | Good work! | Celebrate |
review:
name: "PR #123: Add user authentication"
status: "in_progress"
findings:
blocking:
- id: "B1"
file: "src/auth/login.ts"
line: 45
type: "security"
summary: "Timing attack vulnerability"
important: []
minor: []
praise: []
verification:
tests: { ran: true, passed: true }
linter: { ran: true, passed: false, issues: 3 }
Formatted document with:
tests:
- "npm test"
- "pytest"
- "go test ./..."
linters:
- "npm run lint"
- "flake8"
- "golangci-lint run"
| Outcome | Meaning |
|---|---|
approve | Good to merge |
request_changes | Has blocking/important issues |
comment | Minor feedback only |