-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmayros.json.example
More file actions
60 lines (54 loc) · 1.48 KB
/
mayros.json.example
File metadata and controls
60 lines (54 loc) · 1.48 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
{
// ─── Mayros Reference Configuration ───
// Copy this file to mayros.json and adjust to your needs.
// See docs/setup/anthropic-api-key.md for API key setup.
"agents": {
"defaults": {
"model": {
// Primary model for all agent sessions
"primary": "anthropic/claude-opus-4-6",
// Fallback when primary is unavailable or rate-limited
"fallbacks": ["anthropic/claude-sonnet-4-6"]
},
// Default thinking level: "off" | "minimal" | "low" | "medium" | "high" | "xhigh"
"thinkingDefault": "low",
// Per-model parameters
"models": {
"anthropic/claude-opus-4-6": {
"alias": "opus",
"params": {
"cacheRetention": "short",
"temperature": 0.7
}
},
"anthropic/claude-sonnet-4-6": {
"alias": "sonnet",
"params": {
"cacheRetention": "short",
"temperature": 0.3
}
},
"anthropic/claude-haiku-4-5": {
"alias": "haiku",
"params": {
"cacheRetention": "short",
"temperature": 0.2
}
}
},
// Subagent defaults (heartbeat, quick tasks)
"subagents": {
"model": "anthropic/claude-sonnet-4-6"
},
// Heartbeat interval
"heartbeat": {
"every": "30m"
},
// Context pruning
"contextPruning": {
"mode": "cache-ttl",
"ttl": "1h"
}
}
}
}