ワンクリックで
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