بنقرة واحدة
security-review
Trigger the security-reviewer agent lane for security analysis
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Trigger the security-reviewer agent lane for security analysis
التثبيت باستخدام 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 | security-review |
| description | Trigger the security-reviewer agent lane for security analysis |
| trigger | security-review:, /security-review, /omp:security-review |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | security-review |
| Keywords | security-review:, /security-review |
| Tier | Developer Tool |
| Source | src/skills/security-review.mts |
Triggers the security-reviewer agent lane for structured security analysis. Examines code changes and the broader codebase for vulnerabilities, misconfigurations, injection risks, and compliance gaps. Produces a structured report with CVE references and remediation guidance.
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 security-review orchestration mode by spawning bin/omp.mjs security-review [args]. Delegates to the @security-reviewer agent for threat-modelled review. No persistent resources are maintained.