What problem does it solve? Running prompts in OMP (Oh My Pi) from another agent normally requires interactive terminal management. This Skill provides one-shot, non-interactive delegation patterns so an agent can hand off a task to the omp CLI and capture structured results without a TUI. ## Core Features & Use Cases - Fire-and-forget delegation: Run a prompt with --no-session --mode json for ephemeral, stateless execution. - Blocking result capture: Pipe JSON output through jq to extract the final assistant message from the agent_end event. - Multi-shot sessions: Create a session with --session-dir, capture the session ID, and resume it with --resume for retained context across calls. - Use Case: An orchestrating agent needs a code change reviewed by OMP. It runs omp -p "review this diff" --no-session --mode json --auto-approve, extracts the final text with jq, and continues its own workflow with the result. ## Quick Start Ask the agent to delegate a prompt to OMP by running omp with the -p flag in JSON mode and returning the final assistant message.