MANDATORY RULES: VIOLATION IS FORBIDDEN
July 23, 2026 · View on GitHub
- 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:.agents/state/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. - Emit required L1 decisions by calling
oma state:emitdirectly, as documented in.agents/skills/_shared/runtime/event-spec.md. - Generate a session ID (format:
YYYYMMDD-HHmmss). It keysplan-{sessionId}.jsonand all session-scoped memory artifacts (progress-*-{sessionId}.md,result-*-{sessionId}.md). - Record session start using memory write tool:
- Create
session-work.mdin the memory base path - Include: session start time, session ID, 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:
- Priority tiers (1, 2, 3 — lower runs first)
- 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 (lowest first: tier 1, then tier 2, 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}[-{sessionId}].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
Claude Code note: the Agent tool returns results synchronously (or notifies on background completion), so no file polling is needed. Check status, files changed, and issues directly in each agent's return value.
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 state: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.
-
Before each new fix cycle, apply the loop termination check:
Fix Loop termination conditions (OR, whichever fires first wins):
- Total fix cycles have reached the configured maximum (default: 5). Do not start another cycle; report the remaining CRITICAL/HIGH findings and stop.
- Session cost cap exceeded: if
loadQuotaCap()fromcli/io/session-cost.tsreturns non-null, callcheckCap(sessionId, cap)(no cap configured → skip this condition). Ifexceeded === true, printformatPromptMessage(result)to the user and stop the loop immediately. Save current results before stopping, then report early termination due to quota.
If neither condition is met, 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 or a termination condition fires.
-
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.