-
-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathconfig.json
More file actions
47 lines (47 loc) · 1.05 KB
/
config.json
File metadata and controls
47 lines (47 loc) · 1.05 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
{
"database": {
"path": "~/.pro-workflow/data.db",
"auto_init": true
},
"search": {
"default_limit": 10,
"highlight_matches": true
},
"self_correction": {
"enabled": true,
"auto_update_claude_md": false,
"require_approval": true,
"learned_file": "~/.claude/LEARNED.md"
},
"plan_mode": {
"threshold_files": 3,
"threshold_tool_calls": 10,
"require_explicit_approval": true
},
"quality_gates": {
"run_lint": true,
"run_typecheck": true,
"run_tests": true,
"lint_command": "npm run lint",
"typecheck_command": "npm run typecheck",
"test_command": "npm test -- --related"
},
"wrap_up": {
"check_uncommitted": true,
"verify_tests": true,
"update_claude_md": true,
"create_summary": true
},
"parallel_sessions": {
"suggest_worktrees": true,
"worktree_prefix": "../",
"native_worktree": true
},
"model_preferences": {
"quick_fixes": "haiku",
"features": "sonnet",
"refactors": "opus",
"architecture": "opus",
"debugging": "opus"
}
}