-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-project-config.json
More file actions
144 lines (135 loc) · 3.86 KB
/
example-project-config.json
File metadata and controls
144 lines (135 loc) · 3.86 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"projectName": "example-project",
"repoPath": "C:/repos/example-project",
"repoUrl": "github.com/username/example-project",
"branch": "main",
"automation": {
"autoCommit": true,
"autoProgress": true,
"maxRunDuration": "8h",
"stallThreshold": "10m"
},
"humanInLoop": {
"requiresApprovalFor": [
"database-schema-changes",
"API-breaking-changes",
"security-sensitive-changes",
"production-deployments"
],
"requiresHumanAfter": [
"compilation-errors",
"test-failures",
"merge-conflicts",
"unclear-requirements"
]
},
"skills": [
"/mnt/skills/user/workstream-planning",
"/mnt/skills/user/sprint-planning-documentation",
"/mnt/skills/user/type-error-resolution",
"/mnt/skills/user/compilation-error-resolution",
"/mnt/skills/user/lint-error-resolution",
"/mnt/skills/user/sql-query-optimization",
"/mnt/skills/user/api-documentation",
"/mnt/skills/user/readme-generator",
"/mnt/skills/user/troubleshooting-guide-generator"
],
"phases": [
{
"name": "requirements-analysis",
"description": "Parse requirements.md and create initial project plan",
"autoProgress": false,
"estimatedDuration": "1h",
"entryCommand": "Read requirements.md and create a comprehensive project plan",
"exitCriteria": [
"Project plan created",
"Workstreams identified",
"Dependencies mapped"
]
},
{
"name": "workstream-planning",
"description": "Break down into parallel workstreams using skill",
"autoProgress": true,
"estimatedDuration": "30m",
"entryCommand": "Use workstream-planning skill to decompose this project into parallel workstreams",
"exitCriteria": [
"Workstreams documented",
"Resource allocation complete",
"Timeline estimated"
]
},
{
"name": "implementation",
"description": "Execute development tasks",
"autoProgress": true,
"estimatedDuration": "6h",
"entryCommand": "Begin implementation according to the workstream plan",
"exitCriteria": [
"All code written",
"Compilation successful",
"Linting passed"
]
},
{
"name": "testing",
"description": "Run tests and fix issues",
"autoProgress": false,
"estimatedDuration": "2h",
"entryCommand": "Run all tests and document results",
"exitCriteria": [
"All tests passing",
"Code coverage >80%",
"Integration tests pass"
]
},
{
"name": "documentation",
"description": "Generate documentation",
"autoProgress": true,
"estimatedDuration": "1h",
"entryCommand": "Generate comprehensive documentation using readme-generator and api-documentation skills",
"exitCriteria": [
"README.md complete",
"API docs generated",
"Troubleshooting guide created"
]
}
],
"commitStrategy": {
"frequency": "phase-completion",
"batchSize": "auto",
"branchNaming": "claude/{phase-name}-{timestamp}",
"prCreation": "phase-completion",
"autoMerge": false,
"commitMessageTemplate": "feat: {phase-name} - {summary}"
},
"costThresholds": {
"dailyWarning": 5.00,
"dailyLimit": 10.00,
"weeklyLimit": 50.00,
"monthlyLimit": 200.00
},
"notifications": {
"onError": true,
"onPhaseComplete": true,
"onProjectComplete": true,
"onHumanNeeded": true,
"onCostThreshold": true,
"dailySummary": true,
"summaryTime": "17:00"
},
"monitoring": {
"healthCheckInterval": "5m",
"stallDetectionThreshold": "10m",
"maxIdleTime": "30m",
"progressUpdateInterval": "15m"
},
"recovery": {
"autoRestart": true,
"maxRestartAttempts": 3,
"restartDelay": "5m",
"preserveState": true,
"notifyOnRecovery": true
}
}