用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Hbin77/codex-kit --skill team-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | team-review |
| description | Multi-perspective review — code-reviewer + security-reviewer + architect in parallel, merged into one report |
Coordinate a thorough multi-perspective review of the current changes. YOU (the main session) are the orchestrator — you spawn the reviewers in parallel and wait for all of them.
Scope: the task/scope the user described when invoking this skill (if none given, ask or infer from context)
Concurrency & nesting limits: at most 6 subagents run concurrently; nesting depth is 1, so spawned subagents CANNOT spawn their own subagents. The main session orchestrates directly.
If no scope is given, run git diff and git diff --staged to identify what changed. Summarize the change set so each reviewer has context.
Spawn all three in a single batch and wait for ALL to finish:
code-reviewer — quality, maintainability, performance, a quick security pass.security-reviewer — full security audit (secrets, injection, auth, access control, data exposure, deps, config).architect — architectural soundness: does the change fit existing patterns, introduce coupling, or create scaling/maintainability risks.Give each the same change set and scope.
Combine all three reports into ONE consolidated review:
file:line, description, which reviewer(s) raised it, and the suggested fix.## Consolidated Review
### CRITICAL
**[file:line]** Description (raised by: code/security/architect)
Suggestion: …
### WARNING
…
### INFO
…
### Summary
- Totals by severity
- Overall: APPROVE / REQUEST_CHANGES