-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathsquad.config.ts
More file actions
76 lines (70 loc) · 1.6 KB
/
squad.config.ts
File metadata and controls
76 lines (70 loc) · 1.6 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
import type { SquadConfig } from '@bradygaster/squad';
/**
* Squad Configuration for Generative-AI-for-beginners-dotnet
*
*/
const config: SquadConfig = {
version: '1.0.0',
models: {
defaultModel: 'claude-sonnet-4.5',
defaultTier: 'standard',
fallbackChains: {
premium: ['claude-opus-4.6', 'claude-opus-4.6-fast', 'claude-opus-4.5', 'claude-sonnet-4.5'],
standard: ['claude-sonnet-4.5', 'gpt-5.2-codex', 'claude-sonnet-4', 'gpt-5.2'],
fast: ['claude-haiku-4.5', 'gpt-5.1-codex-mini', 'gpt-4.1', 'gpt-5-mini']
},
preferSameProvider: true,
respectTierCeiling: true,
nuclearFallback: {
enabled: false,
model: 'claude-haiku-4.5',
maxRetriesBeforeNuclear: 3
}
},
routing: {
rules: [
{
workType: 'feature-dev',
agents: ['@scribe'],
confidence: 'high'
},
{
workType: 'bug-fix',
agents: ['@scribe'],
confidence: 'high'
},
{
workType: 'testing',
agents: ['@scribe'],
confidence: 'high'
},
{
workType: 'documentation',
agents: ['@scribe'],
confidence: 'high'
}
],
governance: {
eagerByDefault: true,
scribeAutoRuns: false,
allowRecursiveSpawn: false
}
},
casting: {
allowlistUniverses: [
'The Usual Suspects',
'Breaking Bad',
'The Wire',
'Firefly'
],
overflowStrategy: 'generic',
universeCapacity: {}
},
platforms: {
vscode: {
disableModelSelection: false,
scribeMode: 'sync'
}
}
};
export default config;