بنقرة واحدة
help
Command and skill discovery; prints the full skill catalog
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Command and skill discovery; prints the full skill catalog
التثبيت باستخدام 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 | help |
| description | Command and skill discovery; prints the full skill catalog |
| trigger | help:, /help, /omp:help |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | help |
| Keywords | help:, /help |
| Tier | Developer Tool |
| Source | src/skills/help.mts |
Command and skill discovery tool. Reads the OMP skill registry and prints a formatted catalog of all available skills with their IDs, descriptions, and trigger keywords. Useful for discovering available commands without leaving the current session.
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 help mode by spawning bin/omp.mjs help [args]. The CLI handler reads SKILL_REGISTRY from the registry and prints a formatted table of all skills. No persistent resources are maintained.