一键导入
implement-multi-agent-loop
Orchestrate an implement -> review -> fix loop with subagents until reviewers sign off.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Orchestrate an implement -> review -> fix loop with subagents until reviewers sign off.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Review a specific GitHub pull request with gh — fetch the diff, fan out reviewers, consolidate, and optionally post the review. Requires the `gh` CLI or the GitHub MCP server.
Stage the right changes and write a clear, conventional commit message.
Systematically diagnose and fix a bug instead of guessing.
Add clear docstrings/comments and update docs for changed or unfamiliar code.
Map and explain an unfamiliar codebase or module to the user.
Improve code structure in small, safe steps without changing behavior.
| name | Implement (multi-agent loop) |
| description | Orchestrate an implement -> review -> fix loop with subagents until reviewers sign off. |
| triggers | ["implement","build feature","multi-agent","delegate","implement loop"] |
Use this when you (the orchestrator) should implement a non-trivial change by fanning
work out to subagents and iterating until the change is clean. You drive the loop with
the delegate tool; subagents work in isolated copies and their changes await the
user's merge review.
delegate one implementer per chunk (parallel — pass them in a
single delegate call). Give each a precise, standalone instruction.delegate a reviewer (one, or
one per area) to review the changes for correctness, security and quality. Tell the
reviewer exactly which files/areas to look at.delegate an implementer to fix them (reference the specific findings).delegate calls instead of
running them in parallel.