review-work
适合需要严格多维审查与可审计证据链的团队化交付流程。
会读取/汇总 GitHub/Slack/Notion 等外部上下文,需授权与数据合规注意。
并行编排多路子代理完成实现后代码/安全/QA/上下文审查并统一判定通过与否。
把实现后的代码、质量、安全、QA 和上下文挖掘并行派出多个子代理审查,等所有通道都通过才判定为 OK。适合在 PR 交接前或明确要求“复核我的工作”时使用。特别之处是多路并行且覆盖代码到沟通历史的全面审查,能把遗漏的风险降到最低。
▸ 展开 SKILL.md 英文原文
Post-implementation review orchestrator. Launches 5 parallel background sub-agents: Oracle (goal/constraint verification), Oracle (code quality), Oracle (security), unspecified-high (hands-on QA execution), unspecified-high (context mining from GitHub/git/Slack/Notion). All must pass for review to pass. MUST USE before a PR handoff or when the user explicitly asks to review completed work. Triggers: 'review work', 'review my work', 'review changes', 'QA my work', 'verify implementation', 'check my work', 'validate changes', 'post-implementation review'.
帮我安装这个 skill:https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/packages/shared-skills/skills/review-work/SKILL.mdcurl -fsSL "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/packages/shared-skills/skills/review-work/SKILL.md"## Codex Harness Tool Compatibility
This skill may include examples copied from the OpenCode harness. In Codex, do not call OpenCode-only tools such as `call_omo_agent(...)`, `task(...)`, `background_output(...)`, or `team_*(...)` literally. Translate those examples to Codex native tools:
| OpenCode example | Codex tool to use |
| --- | --- |
| `call_omo_agent(subagent_type="explore", ...)` | `multi_agent_v1.spawn_agent({"message":"TASK: act as an explorer. ...","agent_type":"explorer","fork_context":false})` |
| `call_omo_agent(subagent_type="librarian", ...)` | `multi_agent_v1.spawn_agent({"message":"TASK: act as a librarian. ...","agent_type":"librarian","fork_context":false})` |
| `tas