-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack-handshake.json
More file actions
51 lines (51 loc) · 1.49 KB
/
Copy pathstack-handshake.json
File metadata and controls
51 lines (51 loc) · 1.49 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
{
"contractVersion": "2.0.0",
"component": "value-first-gate",
"role": "Pre-implementation value gate: GO/REVISE/NO-GO decision with rubber-stamp guards",
"interface": {
"reads": {
"triadev-handoff.json": [
"planning.tasks_extracted",
"scheduling.batches",
"current_phase"
]
},
"writes": {
"triadev-handoff.json": [
"value_gate.status",
"value_gate.verdict",
"value_gate.review_path"
]
},
"owns": [
"value-review.md",
"value-review.json"
],
"capabilities": [
"six-dimension-rubric-scoring",
"first-principles-critique-layer",
"anti-pattern-detection",
"rubber-stamp-guards",
"devils-advocate-enforcement",
"verdict-sidecar-emission",
"revise-history-tracking"
],
"scripts": {
"check_review": "python scripts/check_review.py <path-to-value-review.json>",
"emit_verdict_json": "python scripts/emit_verdict_json.py <path-to-value-review.md>"
}
},
"handoff_mapping": {
"$comment": "How value-first-gate output maps to triadev-handoff.json value_gate fields. triadev performs the mapping after reading value-review.json.",
"verdict_to_status": {
"GO": "passed",
"REVISE": "blocked",
"NO-GO": "blocked"
},
"gate_precondition_for_implementation": "verdict == 'GO' AND rubber_stamp_flags.any_triggered == false"
},
"dependencies": {
"triadev": ">=3.0.0",
"planning-with-files": ">=2.10.0"
}
}