Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计异常

multi-model-planning多模型规划

Agent Skill

multi-model-planning 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

329

周安装

14

GitHub Stars

5

下载量

115
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:multi-model-planning(多模型规划)
来源仓库:https://github.com/cosmastech/skills
仓库路径:skills/multi-model-planning
安装命令:
npx skills add https://github.com/cosmastech/skills --skill multi-model-planning
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cosmastech/skills --skill multi-model-planning

简介

利用多模型协同完成复杂规划任务。

  • 可分解目标并分配子任务至不同模型。
  • 适用于项目管理与策略制定流程。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意任务分配合理性以避免重复劳动。
  • multi-model-planning 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Multi-Model Planning

Drive complex decisions to consensus by drafting a plan, sending it to multiple AI models in parallel, synthesizing feedback, and iterating until agreement.

Prerequisites

At least one agentic CLI must be installed and authenticated:

CLIVerifyPrint-mode flag
Cursor Agentagent --versionagent --model <model> --print "<prompt>"
Claude Codeclaude --versionclaude --model <model> -p "<prompt>"
OpenAI Codexcodex --versioncodex --model <model> -q "<prompt>"

If cursor's agent is installed, always prefer using that and specifying models rather than mixing and matching CLI utilities.

Workflow

1. Draft the plan

Create a branch-scoped working directory so artifacts from different planning sessions never collide. Track the revision number starting at 1:

BRANCH=$(git rev-parse --abbrev-ref HEAD)
PLAN_DIR="/tmp/planning-${BRANCH}"
mkdir -p "$PLAN_DIR"
REVISION=1

Write the proposal using the template in assets/planning-prompt-template.md as a starting point. The plan must include:

  • Context: what exists today and why it needs to change.
  • Proposal: the concrete change being considered.
  • Numbered questions: specific decisions you need reviewer input on.

Write the file to $PLAN_DIR/plan-r${REVISION}.md.

Then build the full reviewer prompt by combining the reviewer instructions template with the plan content:

cat assets/reviewer-prompt-template.md "$PLAN_DIR/plan-r${REVISION}.md" \
  > "$PLAN_DIR/plan-r${REVISION}-review.md"

See assets/reviewer-prompt-template.md for the reviewer role, instructions, and expected output format.

2. Send to models in parallel

Fire both review requests in a single message so they run concurrently. Use whichever CLI(s) and models the user prefers. If the user does not specify, you always want to use the latest model that is high thinking for the providers.

Do not assume the models that are available. Always check with the CLI tool first. If you are unclear, ask the user which model they would like to use. Provide your suggestions first.

Examples:

Capture each model's output into $PLAN_DIR/ alongside the prompt that produced it:

# Cursor Agent
agent --model gpt-5.4-xhigh --print "$(cat "$PLAN_DIR/plan-r${REVISION}-review.md")" 2>&1 | tee "$PLAN_DIR/plan-r${REVISION}-response-gpt.md"
agent --model claude-opus-4-7-thinking-xhigh --print "$(cat "$PLAN_DIR/plan-r${REVISION}-review.md")" 2>&1 | tee "$PLAN_DIR/plan-r${REVISION}-response-opus.md"

# Claude Code
claude --model opus -p "$(cat "$PLAN_DIR/plan-r${REVISION}-review.md")" 2>&1 | tee "$PLAN_DIR/plan-r${REVISION}-response-opus.md"

# OpenAI Codex
codex --model o3 -q "$(cat "$PLAN_DIR/plan-r${REVISION}-review.md")" 2>&1 | tee "$PLAN_DIR/plan-r${REVISION}-response-o3.md"

If you are using agent, you can select different models. This is preferred. Otherwise attempt to mix and match CLIs to get diverse perspectives across providers. If there is only one CLI, you can still practice this exercise, you just won't have the diversity of models.

3. Synthesize feedback

After both responses return:

  1. List points of agreement (these are decided).
  2. List points of disagreement with each model's position.
  3. Identify critical issues raised by either model (behavior changes, missing edge cases, sequencing gotchas).
  4. Summarize the synthesis to the user before proceeding.

4. Draft round N+1

Bump the revision number and write the consolidated plan:

REVISION=$((REVISION + 1))

Write the updated plan to $PLAN_DIR/plan-r${REVISION}.md, incorporating round N feedback. Include:

  • A decision log for each resolved question.
  • Any new questions surfaced by reviewers.
  • Updated code sketches if the design changed.

Build the reviewer prompt for this round:

cat assets/reviewer-prompt-template.md "$PLAN_DIR/plan-r${REVISION}.md" \
  > "$PLAN_DIR/plan-r${REVISION}-review.md"

Send the updated plan to both models again. Repeat until:

  • Both models agree the plan is sound.
  • No unresolved critical issues remain.

Previous revisions are preserved in $PLAN_DIR/ for reference.

5. Execute

Once consensus is reached, proceed with implementation. Mark the planning todo items as completed and begin the implementation todos.

Guidelines

  • Always use thinking models. Planning reviews require deep reasoning. Never use non-thinking models (e.g. gpt-4o, claude-sonnet) for plan review. Use models with extended thinking capabilities (e.g. gpt-5.3-codex-high, composer-2, claude-sonnet-4-thinking, o3). If unsure whether a model supports thinking, ask the user.
  • Use different providers. Ideally each reviewer model should be from a different provider (e.g. one OpenAI, one Anthropic, one Cursor) to avoid correlated blind spots.
  • Send plans with no prior context. Each reviewer must receive the plan cold — do not include your own analysis, conclusions, or opinions in the prompt. The reviewer should form an independent assessment.
  • Challenge feedback that is wrong. Consensus does not mean capitulation. If a reviewer's recommendation is based on a misunderstanding of the codebase, an incorrect assumption, or conflicts with established project conventions, push back with evidence. Explain why they're wrong and send the correction in the next round.
  • Never skip iteration. If a model raises a critical issue, address it in a new round even if the other model approved.
  • Preserve behavior. If a reviewer flags that the plan introduces a behavior change, explicitly confirm whether that change is intentional before proceeding.
  • Keep prompts self-contained. Each round's prompt must include enough context for the model to review without access to prior rounds. Models do not share memory across invocations.
  • Show your work. Summarize the synthesis to the user between rounds so they can course-correct.
  • Use todos. Create a todo list that tracks: plan drafting, review rounds, implementation, testing, and pipeline runs.

Typical todo structure

- Draft plan for <change>                         [in_progress]
- Run plan through models, iterate to consensus   [pending]
- Implement the agreed change                     [pending]
- Write tests for new code                        [pending]
- Run quality pipeline + full test suite           [pending]
- Push + start CI pipelines                       [pending]

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.11%
按下载量换算39

Claude

31.12%
按下载量换算36

Cursor

18.05%
按下载量换算21

Gemini CLI

8.48%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills