-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathralph.json
More file actions
42 lines (42 loc) · 1023 Bytes
/
ralph.json
File metadata and controls
42 lines (42 loc) · 1023 Bytes
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
{
"agent_command": "auto",
"max_iterations": 50,
"context_window_strategy": "synthesized",
"context_config": {
"max_progress_lines": 100,
"include_full_agents_md": true,
"token_budget": 8000
},
"files": {
"prd": "prd.json",
"progress": "progress.txt",
"patterns": "AGENTS.md",
"orchestrator_log": "orchestrator.log"
},
"quality_gates": {
"typecheck": {
"cmd": "npm run typecheck",
"blocking": true,
"timeout": 60
},
"test": {
"cmd": "npm test",
"blocking": true,
"timeout": 120
},
"lint": {
"cmd": "npm run lint",
"blocking": false,
"timeout": 30
}
},
"git": {
"commit_prefix": "[Ralph]",
"auto_create_branch": true,
"require_clean_tree": false
},
"librarian": {
"check_enabled": true,
"warning_after_iterations": 3
}
}