一键导入
deepsearch
Multi-source deep search across codebase and web
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Multi-source deep search across codebase and web
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
UI/UX design and frontend component generation
Diagnose and fix build/CI failures automatically
Concurrent code generation via multi-model picker
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 | deepsearch |
| description | Multi-source deep search across codebase and web |
| trigger | deepsearch:, /deepsearch, /omp:deepsearch |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | deepsearch |
| Keywords | deepsearch:, /deepsearch |
| Tier | Research Tool |
| Source | src/skills/deepsearch.mts |
Runs a multi-source deep search across the local codebase, project documentation, and the web simultaneously. Aggregates results from all sources, de-duplicates, and ranks by relevance. Useful for researching unfamiliar APIs, finding prior art, and cross-referencing internal code with external documentation.
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 multi-source deep search in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.