- SSOT:
.agents/directory (do not modify directly) - Response language: Follows
languagein.agents/oma-config.yaml - Skills:
.agents/skills/(domain specialists) - Workflows:
.agents/workflows/(multi-step orchestration) - Subagents: Same-vendor native dispatch via Codex custom agents in
.codex/agents/{name}.toml; cross-vendor fallback viaoma agent:spawn
- Resolve
target_vendor_for_agentfrom.agents/oma-config.yaml. - If
target_vendor_for_agent === current_runtime_vendor, use the runtime's native subagent path. - If vendors differ, or native subagents are unavailable, use
oma agent:spawnfor that agent only.
Execute by naming the workflow in your prompt. Keywords are auto-detected via hooks.
| Workflow | File | Description |
|---|---|---|
| orchestrate | orchestrate.md |
Parallel subagents + Review Loop |
| work | work.md |
Step-by-step with remediation loop |
| ultrawork | ultrawork.md |
5-Phase Gate Loop (11 reviews) |
| plan | plan.md |
PM task breakdown |
| brainstorm | brainstorm.md |
Design-first ideation |
| review | review.md |
QA audit |
| debug | debug.md |
Root cause + minimal fix |
| scm | scm.md |
SCM + Git operations + Conventional Commits |
To execute: read and follow .agents/workflows/{name}.md step by step.
Hooks: UserPromptSubmit (keyword detection), PreToolUse, Stop (persistent mode)
Keywords defined in .agents/hooks/core/triggers.json (multi-language).
Persistent workflows (orchestrate, ultrawork, work) block termination until complete.
Deactivate: say "workflow done".
- Do not modify
.agents/files — SSOT protection - Workflows execute via keyword detection or explicit naming — never self-initiated
- Response language follows
.agents/oma-config.yaml
Read the relevant file from .agents/rules/ when working on matching code.
| Rule | File | Scope |
|---|---|---|
| GEMINI | .agents/rules/GEMINI.md |
on request |
| backend | .agents/rules/backend.md |
on request |
| branching-strategy | .agents/rules/branching-strategy.md |
on request |
| build-guide | .agents/rules/build-guide.md |
on request |
| commit | .agents/rules/commit.md |
on request |
| database | .agents/rules/database.md |
**/*.{sql,prisma} |
| debug | .agents/rules/debug.md |
on request |
| design-tokens-guide | .agents/rules/design-tokens-guide.md |
on request |
| design | .agents/rules/design.md |
on request |
| dev-workflow | .agents/rules/dev-workflow.md |
on request |
| frontend | .agents/rules/frontend.md |
**/*.{tsx,jsx,css,scss} |
| i18n-guide | .agents/rules/i18n-guide.md |
always |
| infrastructure | .agents/rules/infrastructure.md |
**/*.{tf,tfvars,hcl} |
| lint-format-guide | .agents/rules/lint-format-guide.md |
on request |
| mobile | .agents/rules/mobile.md |
**/*.{dart,swift,kt} |
| preferred-editing-tools | .agents/rules/preferred-editing-tools.md |
on request |
| quality | .agents/rules/quality.md |
on request |
| test-guide | .agents/rules/test-guide.md |
on request |