with one click
deepinit
Deep project initialization — full codebase onboarding
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
Deep project initialization — full codebase onboarding
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
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 | 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.