-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdepth_policy.json
More file actions
77 lines (77 loc) · 2.23 KB
/
Copy pathdepth_policy.json
File metadata and controls
77 lines (77 loc) · 2.23 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
{
"description": "Evidence-weighted mesh depth policy. Votes decide depth budget only; evidence decides truth.",
"role_weights": {
"driver": 1.0,
"red": 1.15,
"red_lead": 1.15,
"blue": 1.15,
"blue_lead": 1.15,
"purple": 1.15,
"red_purple": 1.15,
"blue_purple": 1.15
},
"confidence_weights": {
"low": 0.75,
"medium": 1.0,
"med": 1.0,
"high": 1.25
},
"gate_min_depth": {
"p0": 5,
"p1": 3,
"fail_open": 4,
"fail-open": 4,
"security": 4,
"secret": 4,
"data_loss": 4,
"data-loss": 4,
"hook_bypass": 4,
"hook-bypass": 4,
"guard_surface": 4,
"guard-surface": 4,
"hook_guard_surface": 4,
"hook/guard_surface": 4,
"agent_routing": 4,
"agent-routing": 4,
"context_compaction": 4,
"context-compaction": 4,
"hci_fail": 4,
"hci-fail": 4,
"verifier": 4,
"todo_plan": 4,
"todo/plan": 4,
"failing_test": 3,
"failing-test": 3,
"contradiction": 3,
"user_intent_ambiguity": 3,
"user-intent-ambiguity": 3
},
"deescalate_reasons": [
"scope_bloat",
"scope-bloat",
"enough_evidence",
"enough-evidence",
"settled_by_test",
"settled-by-test",
"repetition"
],
"override_reasons": [
"user_intent",
"user-intent",
"scope",
"project_invariant",
"project-invariant",
"cost_coherence",
"cost-coherence",
"evidence_gate",
"evidence-gate"
],
"escalation_profiles": {
"0": { "label": "solo_or_stop", "max_tools": 0, "max_duration": 0, "reply_cap": 0, "next_action": "stop_or_solo" },
"1": { "label": "one_peer_check", "max_tools": 4, "max_duration": 300, "reply_cap": 6000, "next_action": "run_one_peer_check" },
"2": { "label": "red_blue_purple_one_pass", "max_tools": 8, "max_duration": 600, "reply_cap": 12000, "next_action": "run_rbp_one_pass" },
"3": { "label": "cross_exam", "max_tools": 10, "max_duration": 900, "reply_cap": 16000, "next_action": "run_cross_exam" },
"4": { "label": "debate_hall", "max_tools": 14, "max_duration": 1100, "reply_cap": 24000, "next_action": "run_debate_hall" },
"5": { "label": "post_patch_audit", "max_tools": 18, "max_duration": 1200, "reply_cap": 32000, "next_action": "run_post_patch_audit" }
}
}