-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.yaml
More file actions
88 lines (80 loc) · 2.22 KB
/
Copy pathmodels.yaml
File metadata and controls
88 lines (80 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Per-agent model configuration for the multi-target generator.
#
# Two tables:
# agents: which tier each agent needs. THIS is the only agent→tier policy.
# tiers: how each tier maps to a concrete model per target.
#
# Agent assignments, target models, reasoning effort, and verbosity are all
# configured here. The validator checks roster completeness and known tiers,
# but does not duplicate these editable choices in application code.
agents:
# Premium:
# Infrequent decisions with high blast radius.
# A weak result here can invalidate the complete implementation direction.
sdd-propose: premium
sdd-design: premium
sdd-verify: premium
sdd-foundation: premium
sdd-workspace: premium
# Default:
# Frequent semantic work requiring solid reasoning, but not Sol-level spend.
sdd-orchestrator: default
sdd-spec: default
sdd-clarify: default
sdd-apply: default
sdd-reconcile: default
sdd-baseline: default
# Cheap:
# Bounded or mostly mechanical work.
sdd-init: cheap
sdd-explore: cheap
sdd-tasks: cheap
sdd-archive: cheap
sdd-onboard: cheap
sdd-document: cheap
# Reviewers:
# Each reviewer can use any known tier.
review-change: premium
review-correction: default
review-risk: default
review-readability: default
review-reliability: default
review-resilience: default
_default: premium
tiers:
# Premium:
# Defaults for infrequent, high-blast-radius decisions.
premium:
claude: opus
vscode:
- "GPT-5.6 Sol (copilot)"
opencode: openai/gpt-5.6-sol
codex:
model: gpt-5.6-sol
model_reasoning_effort: high
model_verbosity: medium
cursor: gpt-5.6-sol
# Default:
# Defaults for frequent semantic work.
default:
claude: sonnet
vscode:
- "GPT-5.6 Terra (copilot)"
opencode: openai/gpt-5.6-terra
codex:
model: gpt-5.6-terra
model_reasoning_effort: high
model_verbosity: medium
cursor: grok-4.6[fast=false]
# Cheap:
# Defaults for bounded or mechanical work.
cheap:
claude: haiku
vscode:
- "GPT-5.6 Luna (copilot)"
opencode: openai/gpt-5.6-luna
codex:
model: gpt-5.6-luna
model_reasoning_effort: low
model_verbosity: low
cursor: composer-2.5[fast=false]