用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/coder/mux --skill deep-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | deep-review |
| description | Sub-agent powered code reviews spanning correctness, tests, consistency, and fit |
| advertise | false |
Provide an excellent code review by defaulting to parallelism.
You should use sub-agents to review the change from multiple angles (correctness, tests, consistency, UX, performance, safety). Each sub-agent should have a focused mandate and return actionable findings with file paths.
Before reviewing, gather context:
git diff --name-only (or the file list the user provides).git diff.If the change is large, split review by module and prioritize high-risk paths.
Spawn 2–5 sub-agents depending on scope. Tailor them to the change.
When sub-agent results arrive, produce a consolidated review with:
Issues should have a severity in form of:
| Severity | Description | Example |
|---|---|---|
| P0 | Change must not be merged until resolved | Change would permanently break core workflows if merged. |
| P1 | Change should not be merged | New code will not work as expected due to severe bugs |
| P2 | Consideration required before merging | The change creates inconsistency / fragility |
| P3 | Minor issue | The change introduces a minor issue that may be addressed later |
| P4 | Long-term issue | The change raises concerns about long-term maintainability or may break under rare conditions |
Use this rubric to avoid blind spots:
After consolidating the findings, remember that completed review sub-agents remain as inactive child workspaces. Keep any child that still needs follow-up; otherwise remove completed review children in one deepest-first task_remove batch. Use task_stop only for review work that is still active but no longer needed.