원클릭으로
self-improve
OMP self-improvement — analyse own skills/agents and propose improvements
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
OMP self-improvement — analyse own skills/agents and propose improvements
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Diagnose and fix build/CI failures automatically
Concurrent code generation via multi-model picker
UI/UX design and frontend component generation
Visual diff/screenshot comparison verdict
Clone and adapt a web page/design to the codebase
Trace→deep-interview pipeline for deep investigation
SOC 직업 분류 기준
| name | self-improve |
| description | OMP self-improvement — analyse own skills/agents and propose improvements |
| trigger | self-improve:, /self-improve, /omp:self-improve |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | self-improve |
| Keywords | self-improve:, /self-improve |
| Tier | Meta Tool |
| Source | src/skills/self-improve.mts |
Analyses OMP's own skills, agents, and configuration to propose targeted improvements. Reads skills/*/SKILL.md, agents/*, and recent session logs to identify gaps, redundancies, and missing capabilities. Produces a structured improvement proposal in .omp/self-improve/.
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 OMP self-improvement analysis in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
P3 scope: Automated improvement PR generation and agent self-patching (as specified in SPEC-omp-2.0 §6) are deferred to P3. The current implementation performs analysis and produces a structured proposal only.