oh-my-agent 5.20.2 → 6.0.1

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 +8 -7
  2. package/bin/cli.js +436 -433
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -146,17 +146,18 @@ Model selection follows two layers:
146
146
 
147
147
  ### Per-Agent Models
148
148
 
149
- Pin a specific model and effort per role in `.agents/oma-config.yaml`:
149
+ Set `model_preset` in `.agents/oma-config.yaml` to choose which AI models each agent uses:
150
150
 
151
151
  ```yaml
152
- agent_cli_mapping:
153
- backend:
154
- model: "openai/gpt-5.3-codex"
155
- effort: "high"
152
+ language: en
153
+ model_preset: antigravity # claude-only | codex-only | gemini-only | qwen-only | antigravity
154
+
155
+ # Optional per-agent overrides
156
+ agents:
157
+ backend: { model: openai/gpt-5.3-codex, effort: high }
156
158
  ```
157
159
 
158
- - `oma doctor --profile` — prints the per-role CLI auth matrix
159
- - Runtime profiles: `claude-only`, `codex-only`, `gemini-only`, `antigravity`, `qwen-only`
160
+ - `oma doctor --profile` — prints the per-role resolved model matrix
160
161
  - 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)
161
162
 
162
163
  ## Why oh-my-agent?