一键导入
multi-ai
Start the multi-AI pipeline with a given request. Cleans up old task files and guides through plan → review → implement → review workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Start the multi-AI pipeline with a given request. Cleans up old task files and guides through plan → review → implement → review workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Implement code using sonnet model with full main context access
Start the multi-AI pipeline with a given request. Guides through plan -> review -> implement -> review workflow.
Final code/plan review using Codex CLI. Use as the last review step after sonnet.
Fast code/plan review for quality, security, and tests. Use for quick reviews before deeper analysis.
Implement code using sonnet model with full main context access
Final code/plan review using Codex. Use as the last review step after sonnet and opus.
| name | multi-ai |
| description | Start the multi-AI pipeline with a given request. Cleans up old task files and guides through plan → review → implement → review workflow. |
| plugin-scoped | true |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
You are starting the multi-AI pipeline. Follow this process exactly.
Note: Scripts are located at ${CLAUDE_PLUGIN_ROOT}/scripts/. The .task/ directory is created in your project at ${CLAUDE_PROJECT_DIR}/.task/.
First, reset the pipeline state:
"${CLAUDE_PLUGIN_ROOT}/scripts/orchestrator.sh" reset
This removes old .task/ files and sets state to idle.
Write the user's request to .task/user-request.txt:
mkdir -p "${CLAUDE_PROJECT_DIR:-.}/.task"
Then write the request content to .task/user-request.txt.
"${CLAUDE_PLUGIN_ROOT}/scripts/state-manager.sh" set plan_drafting ""
Create .task/plan.json with:
id: "plan-YYYYMMDD-HHMMSS"title: Short descriptive titledescription: What the user wantsrequirements: List of requirementscreated_at: ISO8601 timestampcreated_by: "claude""${CLAUDE_PLUGIN_ROOT}/scripts/state-manager.sh" set plan_refining "$(bun ${CLAUDE_PLUGIN_ROOT}/scripts/json-tool.ts get .task/plan.json .id)"
Create .task/plan-refined.json with technical details:
technical_approachfiles_to_modify and files_to_createpotential_challengesRun reviews in order. Fix issues after each before continuing:
When all approve, continue.
Invoke /implement-sonnet to implement the approved plan.
This skill will:
.task/impl-result.jsonRun reviews in order. Fix issues after each before continuing:
When all approve, continue.
"${CLAUDE_PLUGIN_ROOT}/scripts/state-manager.sh" set complete "$(bun ${CLAUDE_PLUGIN_ROOT}/scripts/json-tool.ts get .task/plan-refined.json .id)"
Report success to the user.