en un clic
deepinit
Deep project initialization — full codebase onboarding
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Deep project initialization — full codebase onboarding
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle 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 | deepinit |
| description | Deep project initialization — full codebase onboarding |
| trigger | deepinit:, /deepinit, /omp:deepinit |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | deepinit |
| Keywords | deepinit:, /deepinit |
| Tier | Initialization Tool |
| Source | src/skills/deepinit.mts |
Performs a deep project initialization and full codebase onboarding. Scans the repository structure, reads key configuration files (package.json, tsconfig, CI/CD pipelines, test config), identifies agent roles, detects the tech stack, and writes a comprehensive .omp/project-memory.json summary. Subsequent agents and skills use this context to operate without re-scanning from scratch.
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 deep project initialization in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.