with one click
ccg
Concurrent code generation via multi-model picker
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Concurrent code generation via multi-model picker
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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
| 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.