How this skill is triggered — by the user, by Claude, or both
Slash command
/oh-my-githubcopilot:ccgThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Field | Value |
| 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.
npx claudepluginhub r3dlex/oh-my-githubcopilotGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Provides Slack GIF creation utilities with dimension/FPS/color constraints and Python PIL-based frame generation. Use for animated Slack emoji or message GIFs.