一键导入
ccg
Concurrent code generation via multi-model picker
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Concurrent code generation via multi-model picker
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Diagnose and fix build/CI failures automatically
UI/UX design and frontend component generation
OMP self-improvement — analyse own skills/agents and propose improvements
Visual diff/screenshot comparison verdict
Clone and adapt a web page/design to the codebase
Trace→deep-interview pipeline for deep investigation
基于 SOC 职业分类
| name | ccg |
| description | Concurrent code generation via multi-model picker |
| trigger | ccg:, /ccg, /omp:ccg |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | ccg |
| Keywords | ccg:, /ccg |
| Tier | Generation Tool |
| Source | src/skills/ccg.mts |
Runs concurrent code generation across multiple models via a multi-model picker. Dispatches the same prompt to N configured models in parallel, collects results, and presents a ranked selection for the user to choose from or merge.
interface SkillInput { trigger: string; args: string[]; }
interface SkillOutput { status: "ok" | "error"; message: string; }
export async function activate(input: SkillInput): Promise<SkillOutput>
export function deactivate(): void
Extension-only skill. Triggers concurrent code generation in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
Constraint: Uses Copilot's built-in multi-model picker exclusively. Does NOT invoke Claude CLI, GPT CLI, or Gemini CLI subprocesses. External CLI orchestration is out of scope for this skill.
P3 scope: Automatic result merging and consensus scoring across models (as specified in SPEC-omp-2.0 §3) are deferred to P3. The current implementation presents ranked results for manual selection.