一键导入
deep-dive
Trace→deep-interview pipeline for deep investigation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Trace→deep-interview pipeline for deep investigation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Diagnose and fix build/CI failures automatically
Concurrent code generation via multi-model picker
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
| name | deep-dive |
| description | Trace→deep-interview pipeline for deep investigation |
| trigger | deep-dive:, /deep-dive, /omp:deep-dive |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | deep-dive |
| Keywords | deep-dive:, /deep-dive |
| Tier | Planning Tool |
| Source | src/skills/deep-dive.mts |
Chains the trace and deep-interview skills into a single pipeline for thorough investigation. First traces execution paths and code flow, then conducts a Socratic deep-interview to surface assumptions, edge cases, and ambiguities. Ideal for complex debugging sessions, architecture reviews, and unfamiliar codebases.
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 a trace→deep-interview chained pipeline in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.