MANDATORY RULES: VIOLATION IS FORBIDDEN
- Response language follows
languagesetting in.agents/oma-config.yamlif configured. - NEVER skip steps. Execute from Step 0 in order. Explicitly report completion of each step to the user before proceeding to the next.
- You MUST use MCP tools throughout the entire workflow. This is NOT optional.
- Use code analysis tools (
get_symbols_overview,find_symbol,find_referencing_symbols,search_for_pattern) for code exploration. - Use memory tools (read/write/edit) for progress tracking.
- Memory path: configurable via
memoryConfig.basePath(default:.serena/memories) - Tool names: configurable via
memoryConfig.toolsin.agents/mcp.json - Do NOT use raw file reads or grep as substitutes. MCP tools are the primary interface for code and memory operations.
- Use code analysis tools (
- Read the oma-coordination skill BEFORE starting. Read
.agents/skills/oma-coordination/SKILL.mdand follow its Core Rules. - Follow the context-loading guide. Read
.agents/skills/_shared/core/context-loading.mdand load only task-relevant resources.
Vendor Detection
Before starting, determine your runtime environment by following .agents/skills/_shared/core/vendor-detection.md.
The detected runtime vendor and each agent's target vendor determine how agents are spawned (Step 4) and monitored (Step 5).
Step 0: Preparation (DO NOT SKIP)
- Read
.agents/skills/oma-coordination/SKILL.mdand confirm Core Rules. - Read
.agents/skills/_shared/core/context-loading.mdfor resource loading strategy. - Read
.agents/skills/_shared/runtime/memory-protocol.mdfor memory protocol. - Read
.agents/skills/_shared/runtime/event-spec.mdfor L1 event protocol. - Use the
oma_emithelper documented in.agents/skills/_shared/runtime/event-spec.mdfor required L1 decisions. The helper wrapsoma state:emit. - Record session start using memory write tool:
- Create
session-work.mdin the memory base path - Include: session start time, user request summary.
- Create
Step 1: Analyze Requirements
Analyze the user's request and identify involved domains (frontend, backend, mobile, QA).
- Single domain: suggest using the specific agent directly.
- Multiple domains: proceed to Step 2.
- Use MCP code analysis tools (
get_symbols_overvieworsearch_for_pattern) to understand the existing codebase structure relevant to the request. - Report analysis results to the user.
Step 2: Run PM Agent for Task Decomposition
// turbo Activate PM Agent to:
- Analyze requirements.
- Define API contracts.
- Create a prioritized task breakdown.
- Save plan to
.agents/results/plan-{sessionId}.json. - Use memory write tool to record plan completion.
Step 3: Review Plan with User
Present the PM Agent's task breakdown to the user:
- Priorities (P0, P1, P2)
- Agent assignments
- Dependencies
- You MUST get user confirmation before proceeding to Step 4. Do NOT proceed without confirmation.
Step 4: Spawn Agents by Priority Tier
// turbo Spawn agents for each task by priority tier (P0 first, then P1, etc.). Spawn all same-priority tasks in parallel. Assign separate workspaces to avoid file conflicts.
Per-Agent Dispatch
Resolve the target vendor for each agent from .agents/oma-config.yaml.
Use native subagents only when target_vendor === current_runtime_vendor and that runtime supports the vendor's role-subagent path.
Otherwise use oma agent:spawn for that agent.
If Claude Code and target vendor is Claude
Use the Agent tool to spawn subagents:
Agent(subagent_type="backend-engineer", prompt="Implement backend tasks per plan.", run_in_background=true)Agent(subagent_type="frontend-engineer", prompt="Implement frontend tasks per plan.", run_in_background=true)- Multiple Agent tool calls in the same message = true parallel execution
- Agent definitions:
.claude/agents/{agent}.md
If Codex CLI and target vendor is Codex
Spawn native Codex custom agents using .codex/agents/{agent}.toml when available.
Native CLI executor path: codex exec "@{agent} ..." using the generated agent file.
Pass each agent its task description, API contracts, and relevant context.
If native dispatch is not verified in the current runtime, fall back to oma agent:spawn.
If Gemini CLI and target vendor is Gemini
Use native Gemini subagents when available, otherwise fall back to oma agent:spawn.
Native CLI executor path: gemini -p "@{agent} ..." using .gemini/agents/{agent}.md.
If target vendor differs from current runtime, or native dispatch is unavailable
oma agent:spawn backend "task description" session-id -w ./backend &
oma agent:spawn frontend "task description" session-id -w ./frontend &
wait
Step 5: Monitor Agent Progress
- Use memory read tool to poll
progress-{agent}.mdfiles - Use MCP code analysis tools (
find_symbolandsearch_for_pattern) to verify API contract alignment between agents - Use memory edit tool to record monitoring results
Step 6: Run QA Agent Review
After all implementation agents complete, spawn QA Agent to review all deliverables:
- Security (OWASP Top 10)
- Performance
- Accessibility (WCAG 2.2 AA)
- Code quality
Step 6.1: Measure Quality Score (Conditional)
If automated measurement is available:
- Load
quality-score.md(conditional, percontext-loading.md) - Measure Quality Score based on QA findings
- Record as baseline in Experiment Ledger via memory tools
Step 7: Address Issues and Iterate
If QA finds CRITICAL or HIGH issues:
- Re-spawn the responsible agent with QA findings. The fix prompt MUST instruct root-cause remediation, not symptom suppression. Forbid tactical patches (try/catch swallowing, validation bypass, hardcoded values, feature flags hiding the bug, silencing the failing test) unless the agent can explicitly justify why a structural fix is out of scope for this iteration (e.g., upstream library bug, deprecated path, hotfix window). Bias toward the orthodox engineering fix even when it costs more lines or touches more files.
- Emit and verify the remediation decision before accepting any fix/ignore choice:
oma_emit "decision.made" '{"subject":"work.remediation-choice","decision":"Fix the responsible QA finding with root-cause remediation or explicitly defer it.","rationale":"QA identified a CRITICAL/HIGH issue requiring a recorded remediation choice."}' oma state:verify --workflow work --checkpoint remediation-choice - If Quality Score is active: measure after fix, apply Keep/Discard rule, record in Experiment Ledger.
- Repeat Steps 5-7.
- If same issue persists after 2 fix attempts: Activate Exploration Loop (load
exploration-loop.mdpercontext-loading.md):- Generate 2-3 alternative approaches via Exploration Decision template
- Re-spawn the same agent type with different hypothesis prompts (separate workspaces)
- QA scores each result
- Best result adopted, others discarded
- All experiments recorded in Experiment Ledger
- Continue until all critical issues are resolved.
- Use memory write tool to record final results.
- If Quality Score was measured: generate Experiment Ledger summary and auto-generate lessons from discarded experiments.
Step 8: Optional Doc Verify Hook
If oma-config.yaml has docs.auto_verify: true:
- Run
oma docs verify --jsonfrom the repo root. - Capture the JSON output.
- If
broken.length === 0: printdocs verified clean (N docs)summary to stdout and continue with workflow completion. - If
broken.length > 0: print a 1-3 line summary identifying which docs have drift, and a hintRun /oma-docs verify for the full report.Continue with workflow completion (warn-only, never block). - If
oma-docsis not available (CLI command missing): skip silently.
This hook is opt-in; the default auto_verify: false skips this step entirely.