claude-mpm 6.3.9 → 6.3.10
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 +43 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -364,6 +364,49 @@ claude-mpm cleanup-memory
|
|
|
364
364
|
|
|
365
365
|
---
|
|
366
366
|
|
|
367
|
+
## Model Configuration
|
|
368
|
+
|
|
369
|
+
Claude MPM lets you pin any agent — including the Planner — to a specific model tier or full model name via `~/.claude-mpm/config/configuration.yaml`.
|
|
370
|
+
|
|
371
|
+
### Tier aliases
|
|
372
|
+
|
|
373
|
+
| Alias | Resolves to |
|
|
374
|
+
|-------|-------------|
|
|
375
|
+
| `haiku` | `claude-3-5-haiku-20241022` |
|
|
376
|
+
| `sonnet` | `claude-sonnet-4-5` |
|
|
377
|
+
| `opus` | `claude-opus-4-7` |
|
|
378
|
+
|
|
379
|
+
Full Anthropic model names (e.g. `claude-opus-4-7`) are also accepted in place of an alias.
|
|
380
|
+
|
|
381
|
+
### Priority order (highest to lowest)
|
|
382
|
+
|
|
383
|
+
1. Explicit `model=` argument in an `Agent` tool call
|
|
384
|
+
2. `models.agents.<agent-name>` in `configuration.yaml`
|
|
385
|
+
3. `model:` field in the agent's frontmatter (`.claude/agents/*.md`)
|
|
386
|
+
4. Built-in resource-tier defaults
|
|
387
|
+
|
|
388
|
+
### Example configuration
|
|
389
|
+
|
|
390
|
+
```yaml
|
|
391
|
+
# ~/.claude-mpm/config/configuration.yaml
|
|
392
|
+
|
|
393
|
+
models:
|
|
394
|
+
# Override the Planner agent's model
|
|
395
|
+
planning: sonnet
|
|
396
|
+
|
|
397
|
+
# Override individual agents by name
|
|
398
|
+
agents:
|
|
399
|
+
researcher: haiku
|
|
400
|
+
engineer: claude-sonnet-4-5
|
|
401
|
+
qa: haiku
|
|
402
|
+
```
|
|
403
|
+
|
|
404
|
+
`models.planning` is a shortcut for the Planner agent specifically. `models.agents.<name>` applies to any agent whose `agent_id` (or filename without `.md`) matches `<name>`.
|
|
405
|
+
|
|
406
|
+
Project-level overrides can be placed in `.claude-mpm/configuration.yaml` inside the repository root; they take precedence over the global file for that project.
|
|
407
|
+
|
|
408
|
+
---
|
|
409
|
+
|
|
367
410
|
## SDK Runtime Mode (Experimental)
|
|
368
411
|
|
|
369
412
|
**New in v5.11.0** -- Claude MPM can now run the PM agent via the [Claude Agent SDK](https://docs.anthropic.com/en/docs/claude-code/sdk) instead of spawning a CLI subprocess. This enables programmatic control, real-time event streaming, and live session observability.
|
package/package.json
CHANGED