원클릭으로
review
Interactive code review with educational quiz. Shows code, explains it, then quizzes you to verify understanding.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Interactive code review with educational quiz. Shows code, explains it, then quizzes you to verify understanding.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Merge PR and move Cortex task to done
Create PR and move Cortex task to review
Start working on a task - creates branch, enters worktree and moves to progress
Start a brainstorming session to explore ideas before committing to a plan. Use when the solution isn't clear, there are multiple approaches, or you need to explore trade-offs.
Use this skill for ALL coding work. Enforces task tracking, memory usage, and proper workflow using Cortex MCP tools. MUST be used when implementing features, fixing bugs, or any development work.
Execute the 3-agent workflow (research → implement → verify) for coding tasks. Use for ALL feature implementations, bug fixes, and code changes. Spawns autonomous agents that research, implement, and verify changes.
| name | review |
| description | Interactive code review with educational quiz. Shows code, explains it, then quizzes you to verify understanding. |
Educational code review that ensures you understand the changes before approving.
git branch --show-currentgh pr view --json number,title,state 2>/dev/null$ARGUMENTS
Conduct an interactive educational code review with the following flow:
If a PR number is provided in arguments, use that. Otherwise, detect from current branch:
# If PR number provided:
gh pr diff <number>
# If no number, get current branch PR:
gh pr diff
Break the diff into meaningful chunks:
Skip trivial changes (whitespace, imports only, etc).
Display the code snippet with context:
📝 **Chunk 1/N: [Brief description]**
File: `path/to/file.go`
\`\`\`diff
[the actual diff]
\`\`\`
Provide a clear explanation:
Example:
"Este código verifica se o arquivo CLAUDE.md já tem as regras do Cortex. Se a string 'REGRAS OBRIGATÓRIAS' não existir, ele adiciona a seção completa no final do arquivo. Isso garante que projetos existentes recebam todas as regras sem perder o conteúdo original."
Use AskUserQuestion:
❓ Entendeu essa parte?
Options:
- "Sim, entendi" → Go to quiz
- "Não entendi, explica melhor" → Provide more detailed explanation, then ask again
Create a multiple choice question about what was just explained:
🧠 Quiz: [Question about the code]
Options:
- [Correct answer]
- [Plausible but wrong answer]
- [Another wrong answer]
- "Não sei, me explica"
If correct:
If wrong:
If "Não sei":
After all chunks reviewed:
## 📋 Review Summary
**PR:** #[number] - [title]
**Chunks reviewed:** N
**Quiz score:** X/Y correct
### Changes Understood:
- [List of key changes the user now understands]
### Ready to approve?
Use AskUserQuestion:
gh pr review --approve