oh-my-agent 5.20.1 → 6.0.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.
- package/README.md +8 -7
- package/bin/cli.js +438 -435
- 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
|
-
|
|
149
|
+
Set `model_preset` in `.agents/oma-config.yaml` to choose which AI models each agent uses:
|
|
150
150
|
|
|
151
151
|
```yaml
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
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
|
|
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?
|