oh-my-agent 5.14.3 → 5.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +16 -0
  2. package/bin/cli.js +585 -561
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -53,6 +53,7 @@ Pick a preset and you're ready:
53
53
  | **oma-dev-workflow** | CI/CD, releases, monorepo automation |
54
54
  | **oma-frontend** | React/Next.js, TypeScript, Tailwind CSS v4, shadcn/ui |
55
55
  | **oma-hwp** | HWP/HWPX/HWPML to Markdown conversion |
56
+ | **oma-image** | Multi-vendor AI image generation |
56
57
  | **oma-mobile** | Flutter cross-platform apps |
57
58
  | **oma-observability** | Observability router — APM/RUM, metrics/logs/traces/profiles, SLO, incident forensics, transport tuning |
58
59
  | **oma-orchestrator** | Parallel agent execution via CLI |
@@ -114,6 +115,21 @@ Model selection follows two layers:
114
115
  - Same-vendor native dispatch uses the generated vendor agent definition in `.claude/agents/`, `.codex/agents/`, or `.gemini/agents/`.
115
116
  - Cross-vendor or fallback CLI dispatch uses the vendor defaults in `.agents/skills/oma-orchestrator/config/cli-config.yaml`.
116
117
 
118
+ ### Per-Agent Models
119
+
120
+ Pin a specific model and effort per role in `.agents/oma-config.yaml`:
121
+
122
+ ```yaml
123
+ agent_cli_mapping:
124
+ backend:
125
+ model: "openai/gpt-5.3-codex"
126
+ effort: "high"
127
+ ```
128
+
129
+ - `oma doctor --profile` — prints the per-role CLI auth matrix
130
+ - Runtime profiles: `claude-only`, `codex-only`, `gemini-only`, `antigravity`, `qwen-only`
131
+ - Full guide: [`web/docs/guide/per-agent-models.md`](https://github.com/first-fluke/oh-my-agent/blob/main/web/docs/guide/per-agent-models.md)
132
+
117
133
  ## Why oh-my-agent?
118
134
 
119
135
  > [Read why →](https://github.com/first-fluke/oh-my-agent/issues/155#issuecomment-4142133589)