-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdarkzloop.json
More file actions
50 lines (50 loc) · 935 Bytes
/
darkzloop.json
File metadata and controls
50 lines (50 loc) · 935 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
43
44
45
46
47
48
49
50
{
"version": "1.0",
"project": {
"name": "darkzloop",
"type": "python"
},
"paths": {
"spec": "DARKZLOOP_SPEC.md",
"plan": "DARKZLOOP_PLAN.md"
},
"gates": {
"tier1": {
"enabled": true,
"commands": [
"pytest"
],
"on_failure": "task_failure"
},
"tier2": {
"enabled": true,
"commands": [
"ruff check .",
"black --check ."
],
"auto_fix_commands": [
"ruff check . --fix",
"black ."
],
"on_failure": "task_failure"
},
"tier3": {
"enabled": false,
"commands": [
"bandit -r ."
],
"on_failure": "blocked"
}
},
"loop": {
"max_iterations": 100,
"max_consecutive_failures": 3,
"max_task_retries": 3
},
"features": {
"semantic_memory": true,
"enforce_read_before_write": true,
"parallel_enabled": false,
"auto_commit": true
}
}