npx claudepluginhub automagik-dev/omni --plugin omniThis skill is limited to using the following tools:
```bash
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Optimizes agent, system, developer prompts and templates iteratively with evals; ports between OpenAI, Claude, Gemini; builds prompt evals.
Writes, refactors, and evaluates LLM prompts, generating optimized templates, structured output schemas, evaluation rubrics, and test suites for LLM applications.
Share bugs, ideas, or general feedback.
omni prompts list --json
omni prompts get image --json
omni prompts get video --json
omni prompts get document --json
omni prompts get gate --json
# Set inline
omni prompts set image "Describe this image in detail, including any text visible." --reason "More detail needed" --json
# Set from a file using stdin (for multiline prompts)
omni prompts set document < /path/to/prompt.txt --json
# Set gate prompt
omni prompts set gate "Reply YES if the message is a support request, NO otherwise." --json
omni prompts reset image --json
omni prompts reset video --json
omni prompts reset document --json
omni prompts reset gate --json
image, video, document, gate.reset clears the override and reverts to the built-in code default.set reads from stdin if no inline value is provided, enabling multiline prompt editing.--reason documents why the prompt was changed (stored for audit purposes).