From oma
Guides CLI-based coordination of PM, frontend, backend, mobile, and QA agents for complex multi-domain projects. Provides step-by-step task decomposition, spawning, monitoring, contract alignment, and QA review.
npx claudepluginhub first-fluke/oh-my-agent --plugin omaThis skill uses the workspace's default tool permissions.
Guide manual multi-agent coordination for complex work that spans PM, frontend, backend, mobile, and QA responsibilities.
Orchestrates multi-agent workflows by spawning parallel CLI subagents, coordinating via MCP Memory, monitoring progress, decomposing tasks, verifying outputs, and retrying failures. For complex automated parallel executions.
Guides subagent coordination through implementation workflows. Use when orchestrating multiple agents, managing workflow phases, or determining autonomous execution mode.
Documents Sprint agent patterns: hierarchy, SPAWN REQUEST format for parallel spawning, report structures, and coordination rules.
Share bugs, ideas, or general feedback.
Guide manual multi-agent coordination for complex work that spans PM, frontend, backend, mobile, and QA responsibilities.
resources/examples.mdoma agent:spawn and progress/result memory conventions| Action | SSL primitive | Evidence |
|---|---|---|
| Read request and domains | READ | User prompt and project context |
| Select agent plan | SELECT | PM decomposition and priority tiers |
| Spawn agents | CALL_TOOL | oma agent:spawn |
| Monitor progress | READ | progress-{agent}.md |
| Validate contracts | VALIDATE | API/data model alignment |
| Notify coordination status | NOTIFY | Final coordination summary |
oma agent:spawn, PM/frontend/backend/mobile/QA agentsoma agent:spawn pm "<planning task>" <session-id> -w ./pm
oma agent:spawn backend "<backend task>" <session-id> -w ./backend &
oma agent:spawn frontend "<frontend task>" <session-id> -w ./frontend &
wait
| Scope | Resource target |
|---|---|
LOCAL_FS | Progress/result files and workspaces |
PROCESS | Agent spawn commands |
MEMORY | Session state and task board |
CODEBASE | Shared contracts and implementation areas |
PM Agent analyzes requirements, selects tech stack, creates task breakdown with priorities.
Spawn agents via CLI:
# Example: spawn backend and frontend in parallel
oma agent:spawn backend "task description" session-id -w ./backend &
oma agent:spawn frontend "task description" session-id -w ./frontend &
wait
progress-{agent}.md filesSpawn QA Agent last to review all deliverables. Address CRITICAL issues by re-spawning agents.
For fully automated execution without manual spawning, use the orchestrator skill instead.
resources/examples.md