بنقرة واحدة
code-review
Trigger the code-reviewer agent lane for structured code review
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Trigger the code-reviewer agent lane for structured code review
التثبيت باستخدام 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 | code-review |
| description | Trigger the code-reviewer agent lane for structured code review |
| trigger | code-review:, /code-review, /omp:code-review |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | code-review |
| Keywords | code-review:, /code-review |
| Tier | Developer Tool |
| Source | src/skills/code-review.mts |
Triggers the code-reviewer agent lane for structured, evidence-based code review. Reviews changed files for correctness, style, maintainability, and adherence to project conventions. Produces a structured report with inline comments and severity ratings.
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
Activates the code-review orchestration mode by spawning bin/omp.mjs code-review [args]. Delegates to the @code-reviewer agent for structured review. No persistent resources are maintained.