Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions config.local.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,20 @@
# Optional: override the fleet-wide model in one place.
# Any agent without its own `model` inherits this value; bump it to upgrade
# every inheriting agent at once. Per-agent `model` still wins when declared.
# defaultModel: claude-opus-4-7
# defaultFallbackModel: claude-sonnet-4-6
#
# Use aliases (`opus`, `sonnet`, `haiku`) for auto-upgrade to the latest
# version on your account tier, or full names (`claude-opus-4-7`) to pin.
# Append `[1m]` for the 1M-token context window (e.g. `opus[1m]`) — check
# Claude Code's Model configuration docs for plan eligibility.
# defaultModel: opus
# defaultFallbackModel: sonnet

agents:
main:
workspaceCwd: /Users/you/.minime/workspace # absolute path to your Claude workspace (~ not expanded)
# model omitted — inherits defaultModel. Uncomment to pin this agent to a specific model:
# model omitted — inherits defaultModel. Uncomment to pin this agent to a specific model
# or opt into the 1M context window on a single agent:
# model: opus[1m]
# model: claude-haiku-4-5-20251001

bindings:
Expand Down
11 changes: 9 additions & 2 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@ logLevel: info
# Fleet-wide defaults: any agent without its own `model` / `fallbackModel`
# inherits these. Bump here to upgrade every inheriting agent at once.
# Per-agent `model` / `fallbackModel` still wins when declared.
defaultModel: claude-opus-4-6
defaultFallbackModel: claude-sonnet-4-6
#
# Aliases (`opus`, `sonnet`, `haiku`) resolve to the latest version for your
# account tier and auto-upgrade when Anthropic ships a new model. Pin to a
# full name (e.g. `claude-opus-4-7`) if you want a fixed version. Append
# `[1m]` (e.g. `opus[1m]`) to opt into the 1M-token context window on
# supported models — see Claude Code's Model configuration docs for plan
# eligibility.
defaultModel: opus
defaultFallbackModel: sonnet

agents:
main:
Expand Down
Loading