forked from Chachamaru127/claude-code-harness
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude-code-harness.config.example.json
More file actions
78 lines (68 loc) · 1.6 KB
/
Copy pathclaude-code-harness.config.example.json
File metadata and controls
78 lines (68 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
77
{
"$schema": "./claude-code-harness.config.schema.json",
"version": "1.0",
"i18n": {
"language": "en",
"comment": "en: English default / ja: Japanese opt-in - keep generated files, docs, and messages aligned"
},
"constitution": {
"path": "docs/constitution.md",
"comment": "品質ゲート・DoD・原則を集約したファイル(プロジェクトごとにカスタマイズ可)"
},
"work": {
"auto_commit": true,
"commit_on_pm_approve": false,
"comment": "commit_on_pm_approve: true にすると 2-Agent モードで PM 承認後にコミット"
},
"safety": {
"mode": "dry-run",
"require_confirmation": true,
"max_auto_retries": 3
},
"git": {
"allow_auto_commit": false,
"allow_auto_push": false,
"protected_branches": ["main", "master", "production"],
"commit_prefix": "fix:"
},
"paths": {
"allowed_modify": [
"src/",
"app/",
"components/",
"lib/",
"pages/",
"Plans.md",
"AGENTS.md",
"CLAUDE.md"
],
"protected": [
".github/",
".gitlab/",
"infra/",
"k8s/",
"terraform/",
".env",
".env.*",
"credentials/",
"secrets/"
],
"plans_file": "Plans.md",
"agents_file": "AGENTS.md"
},
"ci": {
"provider": "auto",
"enable_auto_fix": false,
"require_gh_cli": true
},
"scaffolding": {
"tech_choice_mode": "ask",
"allow_web_search": true
},
"destructive_commands": {
"allow_rm_rf": false,
"allow_npm_install": true,
"require_size_check": true,
"max_files_to_modify": 20
}
}