一键导入
code-review
Use when code review is needed. Triggers on "코드 리뷰", "리뷰해줘", "code review", or at completion of implementation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when code review is needed. Triggers on "코드 리뷰", "리뷰해줘", "code review", or at completion of implementation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Loaded automatically at session start. Teaches the orchestrator how to route requests to skills and agents. Do not invoke manually.
Use when the user wants to explore an idea, design an approach, or think through a problem before implementing. Triggers on "고민", "논의", "아이디어", "brs".
Use to harvest `debt:` markers across the repo into a debt ledger and optionally persist it to the Obsidian vault. Triggers on "부채", "기술부채", "debt", "지름길 정리", "/debt". Read-only — does not modify code.
Use when the user wants to run an implementation plan. Triggers on "실행해줘", "구현해줘", "시작해줘", "execute", or after plan approval.
Implement an entire Figma page as Android Jetpack Compose screens by auto-splitting into frames with visual verification. Use whenever a user shares a figma.com/design URL and wants the page built as Compose code. Triggers on '안드로이드 피그마', 'Android Figma', 'Compose 구현'. Covers any multi-frame page. Does NOT apply to Figma asset downloads or single component edits.
Implement an entire Figma page by auto-splitting into frames with visual verification. Use whenever a user shares a figma.com/design URL and wants the page built in code. Triggers on '피그마 구현', '피그마 페이지', 'Figma implement'. Covers any multi-frame page: landing, dashboard, marketing, etc. Does NOT apply to Figma asset downloads or single component edits.
| name | code-review |
| description | Use when code review is needed. Triggers on "코드 리뷰", "리뷰해줘", "code review", or at completion of implementation. |
Code review happens in two separated stages. This separation prevents mixing concerns and ensures thorough coverage.
Delegate to critic agent.
If no plan exists (standalone code review), skip Stage 1. Instead, use git diff to identify changed files as the review scope.
For each TODO in the plan:
Output:
## Stage 1: Spec Compliance
- TODO 1: PASS / FAIL — [details]
- TODO 2: PASS / FAIL — [details]
Overall: COMPLIANT / NON-COMPLIANT
If NON-COMPLIANT: stop here, fix spec violations before proceeding to Stage 2.
Skip this stage if no plan is provided.
Procedure:
git diff --name-only (or git diff HEAD --name-only for committed changes).File(s) entries referenced across every TODO in the plan.File(s) is an Unplanned Change.Output format when unplanned changes are found:
### Unplanned Changes
- path/to/unexpected/file.ts — not referenced in any TODO
If no unplanned changes are detected, output:
### Unplanned Changes
None detected.
This stage reports only. Scope drift does not block progression to Stage 2.
Delegate to critic agent.
Review for:
delete: — dead code or speculative feature (replacement: none)stdlib: — hand-rolled standard library (name the stdlib function)native: — work the platform already does (name the native feature)yagni: — abstraction or config with a single implementationshrink: — same logic, fewer lines
Format each line as: <location>: <tag> <what>. <replacement>.
End with net: -N lines possible., or Lean already. if nothing to cut.
Classify these findings as IMPORTANT or MINOR only — never CRITICAL. They do NOT block approval (the zero-CRITICAL = APPROVE rule stands).Do NOT review:
Skip this stage if no plan is provided.
For each TODO in the plan, check whether the implementation exists in the changed files:
Output format:
### Plan Completion Audit
- [x] TODO 1: title — Implemented
- [ ] TODO 3: title — Missing (no changes found in specified files)
- [~] TODO 5: title — Partial (acceptance criteria X not met)
Each file in the review scope should be examined at an appropriate depth based on its type and sensitivity.
| Depth | Criteria | Examples |
|---|---|---|
| surface | Config, docs, formatting | .json, .md, .yaml |
| moderate | Standard business logic | services, controllers |
| deep | Security, auth, data, payment | auth/, payment/, migrations |
Apply deep review to any file touching authentication, authorization, payment processing, or database migrations. Apply surface review to configuration and documentation files unless they contain secrets or critical values.
## Code Review Summary
Overall: APPROVE / REQUEST_CHANGES
### Stage 1: Spec Compliance
[findings]
### Stage 2: Code Quality
#### CRITICAL
- [finding]: [action needed]
#### IMPORTANT
- [finding]: [action needed]
#### MINOR
- [finding]: [action needed]
#### Over-engineering Lens
- <location>: <tag> <what>. <replacement>.
net: -N lines possible. (or: Lean already.)
### Stage 3: Plan Completion Audit
- [x] TODO 1: title — Implemented
- [ ] TODO N: title — Missing / Partial
### What Works Well
- [positive feedback]