thumbgate 1.30.0 → 1.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +1 -1
- package/.well-known/mcp/server-card.json +1 -1
- package/README.md +54 -16
- package/adapters/claude/.mcp.json +2 -2
- package/adapters/forge/forge.yaml +3 -3
- package/adapters/mcp/server-stdio.js +105 -10
- package/adapters/opencode/opencode.json +1 -1
- package/bench/observability-eval-suite.json +2 -2
- package/bin/cli.js +168 -31
- package/config/evals/generation-quality-golden.json +95 -0
- package/config/evals/rag-answer-quality-golden.json +91 -0
- package/config/evals/retrieval-hybrid-ablation.json +66 -0
- package/config/evals/retrieval-ranking-golden.json +522 -0
- package/config/gates/claim-verifiers.example.json +42 -0
- package/config/gates/claim-verifiers.json +25 -0
- package/config/gates/default.json +217 -50
- package/config/mcp-allowlists.json +233 -206
- package/config/model-tiers.json +7 -2
- package/glama.json +6 -0
- package/hooks/hooks.json +1 -1
- package/package.json +69 -12
- package/public/assets/diagrams/before-after.svg +17 -16
- package/public/assets/diagrams/hero-thumbs.svg +68 -0
- package/public/assets/diagrams/loop.svg +19 -13
- package/public/assets/diagrams/self-improving-thumbs-loop.svg +105 -0
- package/public/compare.html +1 -0
- package/public/dashboard.html +126 -28
- package/public/evaluations.html +1 -1
- package/public/index.html +142 -13
- package/public/numbers.html +3 -2
- package/public/pricing.html +143 -30
- package/scripts/a-plus-evidence-scorecard.js +303 -0
- package/scripts/agent-readiness.js +110 -0
- package/scripts/async-eval-observability.js +36 -11
- package/scripts/audit-trail.js +37 -1
- package/scripts/auto-promote-gates.js +149 -34
- package/scripts/auto-wire-hooks.js +20 -8
- package/scripts/cli-schema.js +14 -0
- package/scripts/colbert-style-maxsim.js +236 -0
- package/scripts/cross-encoder-reranker.js +356 -126
- package/scripts/dashboard-chat.js +350 -17
- package/scripts/document-intake.js +283 -7
- package/scripts/eval-quality-suite.js +204 -0
- package/scripts/feedback-loop.js +115 -7
- package/scripts/feedback-paths.js +32 -13
- package/scripts/feedback-quality.js +53 -0
- package/scripts/feedback-schema.js +3 -0
- package/scripts/file-ledger-lock.js +130 -0
- package/scripts/filesystem-search.js +17 -7
- package/scripts/financial-control-plane.js +1514 -0
- package/scripts/gates-engine.js +202 -7
- package/scripts/gemini-embedding-policy.js +1 -0
- package/scripts/harness-tool-names.js +70 -0
- package/scripts/hook-runtime.js +15 -3
- package/scripts/hook-stop-anti-claim.js +63 -3
- package/scripts/human-escalation.js +353 -41
- package/scripts/lesson-db.js +16 -5
- package/scripts/lesson-embedding-index.js +67 -20
- package/scripts/lesson-embedding-maintenance.js +177 -0
- package/scripts/lesson-reranker.js +55 -9
- package/scripts/lesson-retrieval.js +305 -29
- package/scripts/lesson-search.js +22 -8
- package/scripts/llm-client.js +304 -15
- package/scripts/model-tier-router.js +593 -0
- package/scripts/pragmatic-hybrid-search.js +379 -0
- package/scripts/provider-action-normalizer.js +11 -4
- package/scripts/rag-document-pipeline.js +461 -0
- package/scripts/rag-structured-output.js +441 -0
- package/scripts/ragas-style-metrics.js +351 -0
- package/scripts/request-envelope.js +178 -0
- package/scripts/rerank-pipeline.js +370 -0
- package/scripts/rerank-quality-eval.js +155 -0
- package/scripts/retrieval-hybrid-ablation.js +120 -0
- package/scripts/retrieval-quality-tier.js +118 -0
- package/scripts/secret-scanner.js +395 -4
- package/scripts/self-distill-agent.js +7 -1
- package/scripts/self-healing-check.js +25 -0
- package/scripts/skill-packs.js +183 -0
- package/scripts/slow-loop.js +72 -0
- package/scripts/statusline-links.js +1 -1
- package/scripts/statusline.sh +8 -1
- package/scripts/telemetry-analytics.js +13 -1
- package/scripts/thumbgate-search.js +98 -6
- package/scripts/tier-budget-guard.js +186 -0
- package/scripts/tool-registry.js +141 -5
- package/scripts/universal-claim-evaluator.js +767 -0
- package/scripts/vector-store.js +154 -17
- package/scripts/verify-marketing-pages-deployed.js +85 -3
- package/scripts/workflow-sentinel.js +77 -11
- package/server.json +44 -0
- package/smithery.yaml +17 -0
- package/src/api/server.js +196 -13
|
@@ -2,272 +2,299 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"profiles": {
|
|
4
4
|
"default": [
|
|
5
|
-
"recall",
|
|
6
|
-
"unified_context",
|
|
7
|
-
"set_task_scope",
|
|
8
|
-
"get_scope_state",
|
|
9
|
-
"satisfy_gate",
|
|
10
|
-
"capture_feedback",
|
|
11
|
-
"open_feedback_session",
|
|
12
5
|
"append_feedback_context",
|
|
13
|
-
"
|
|
14
|
-
"feedback_summary",
|
|
15
|
-
"search_lessons",
|
|
16
|
-
"retrieve_lessons",
|
|
17
|
-
"search_thumbgate",
|
|
18
|
-
"plan_multimodal_retrieval",
|
|
19
|
-
"plan_context_footprint",
|
|
20
|
-
"plan_agent_design_governance",
|
|
21
|
-
"plan_proactive_agent_eval_guardrails",
|
|
22
|
-
"plan_reward_hacking_guardrails",
|
|
23
|
-
"plan_oss_pr_opportunity_scout",
|
|
24
|
-
"plan_chatgpt_ads_readiness",
|
|
25
|
-
"reflect_on_feedback",
|
|
26
|
-
"feedback_stats",
|
|
27
|
-
"diagnose_failure",
|
|
28
|
-
"list_intents",
|
|
29
|
-
"plan_intent",
|
|
30
|
-
"start_handoff",
|
|
31
|
-
"complete_handoff",
|
|
6
|
+
"approve_protected_action",
|
|
32
7
|
"bootstrap_internal_agent",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
8
|
+
"capture_feedback",
|
|
9
|
+
"capture_memory_feedback",
|
|
10
|
+
"check_operational_integrity",
|
|
11
|
+
"commerce_recall",
|
|
12
|
+
"complete_handoff",
|
|
37
13
|
"construct_context_pack",
|
|
38
|
-
"evaluate_context_pack",
|
|
39
14
|
"context_provenance",
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"track_action",
|
|
15
|
+
"context_stuff_lessons",
|
|
16
|
+
"create_purchase_requisition",
|
|
17
|
+
"dashboard",
|
|
18
|
+
"describe_reliability_entity",
|
|
19
|
+
"describe_semantic_entity",
|
|
46
20
|
"detect_noop",
|
|
47
|
-
"
|
|
21
|
+
"diagnose_failure",
|
|
22
|
+
"distribute_context_to_agents",
|
|
23
|
+
"estimate_uncertainty",
|
|
24
|
+
"evaluate_context_pack",
|
|
25
|
+
"export_databricks_bundle",
|
|
26
|
+
"export_dpo_pairs",
|
|
27
|
+
"export_hf_dataset",
|
|
28
|
+
"feedback_stats",
|
|
29
|
+
"feedback_summary",
|
|
30
|
+
"finalize_feedback_session",
|
|
31
|
+
"gate_check",
|
|
32
|
+
"gate_stats",
|
|
33
|
+
"generate_operator_artifact",
|
|
34
|
+
"generate_skill",
|
|
48
35
|
"get_action_receipts",
|
|
49
|
-
"record_task_outcome",
|
|
50
|
-
"get_task_outcomes",
|
|
51
36
|
"get_agent_outcome_metrics",
|
|
52
|
-
"
|
|
53
|
-
"list_human_escalations",
|
|
54
|
-
"verify_claim",
|
|
55
|
-
"check_operational_integrity",
|
|
56
|
-
"workflow_sentinel",
|
|
57
|
-
"register_claim_gate",
|
|
58
|
-
"gate_stats",
|
|
59
|
-
"dashboard",
|
|
60
|
-
"settings_status",
|
|
61
|
-
"native_messaging_audit",
|
|
62
|
-
"list_harnesses",
|
|
63
|
-
"run_harness",
|
|
64
|
-
"run_autoresearch",
|
|
65
|
-
"estimate_uncertainty",
|
|
37
|
+
"get_branch_governance",
|
|
66
38
|
"get_business_metrics",
|
|
67
|
-
"describe_semantic_entity",
|
|
68
|
-
"capture_memory_feedback",
|
|
69
39
|
"get_reliability_rules",
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"run_managed_lesson_agent",
|
|
40
|
+
"get_scope_state",
|
|
41
|
+
"get_task_outcomes",
|
|
42
|
+
"list_harnesses",
|
|
43
|
+
"list_human_escalations",
|
|
44
|
+
"list_intents",
|
|
45
|
+
"list_purchase_requisitions",
|
|
77
46
|
"managed_agent_status",
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"context_stuff_lessons",
|
|
47
|
+
"native_messaging_audit",
|
|
48
|
+
"open_feedback_session",
|
|
81
49
|
"parallel_workflow",
|
|
82
|
-
"perplexity_search",
|
|
83
50
|
"perplexity_ask",
|
|
84
|
-
"perplexity_research",
|
|
85
51
|
"perplexity_reason",
|
|
86
|
-
"
|
|
87
|
-
|
|
88
|
-
"essential": [
|
|
89
|
-
"recall",
|
|
90
|
-
"unified_context",
|
|
91
|
-
"set_task_scope",
|
|
92
|
-
"get_scope_state",
|
|
93
|
-
"satisfy_gate",
|
|
94
|
-
"capture_feedback",
|
|
95
|
-
"open_feedback_session",
|
|
96
|
-
"append_feedback_context",
|
|
97
|
-
"finalize_feedback_session",
|
|
98
|
-
"search_lessons",
|
|
99
|
-
"retrieve_lessons",
|
|
100
|
-
"search_thumbgate",
|
|
101
|
-
"plan_multimodal_retrieval",
|
|
102
|
-
"plan_context_footprint",
|
|
52
|
+
"perplexity_research",
|
|
53
|
+
"perplexity_search",
|
|
103
54
|
"plan_agent_design_governance",
|
|
55
|
+
"plan_chatgpt_ads_readiness",
|
|
56
|
+
"plan_context_footprint",
|
|
57
|
+
"plan_intent",
|
|
58
|
+
"plan_multimodal_retrieval",
|
|
59
|
+
"plan_oss_pr_opportunity_scout",
|
|
104
60
|
"plan_proactive_agent_eval_guardrails",
|
|
105
61
|
"plan_reward_hacking_guardrails",
|
|
106
|
-
"plan_oss_pr_opportunity_scout",
|
|
107
|
-
"plan_chatgpt_ads_readiness",
|
|
108
|
-
"reflect_on_feedback",
|
|
109
62
|
"prevention_rules",
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"approve_protected_action",
|
|
113
|
-
"track_action",
|
|
63
|
+
"recall",
|
|
64
|
+
"record_action_receipt",
|
|
114
65
|
"record_task_outcome",
|
|
115
|
-
"
|
|
116
|
-
"
|
|
66
|
+
"reconcile_purchase_ledger",
|
|
67
|
+
"reflect_on_feedback",
|
|
68
|
+
"register_claim_gate",
|
|
69
|
+
"report_product_issue",
|
|
117
70
|
"request_human_escalation",
|
|
118
|
-
"
|
|
71
|
+
"reserve_purchase_requisition",
|
|
72
|
+
"require_evidence_for_claim",
|
|
73
|
+
"retrieve_lessons",
|
|
74
|
+
"run_autoresearch",
|
|
75
|
+
"run_harness",
|
|
76
|
+
"run_managed_lesson_agent",
|
|
77
|
+
"run_self_distill",
|
|
78
|
+
"satisfy_gate",
|
|
79
|
+
"search_lessons",
|
|
80
|
+
"search_thumbgate",
|
|
81
|
+
"self_distill_status",
|
|
82
|
+
"session_report",
|
|
83
|
+
"settle_purchase_requisition",
|
|
84
|
+
"set_branch_governance",
|
|
85
|
+
"set_task_scope",
|
|
86
|
+
"settings_status",
|
|
87
|
+
"start_handoff",
|
|
88
|
+
"suggest_fix",
|
|
89
|
+
"track_action",
|
|
90
|
+
"unified_context",
|
|
119
91
|
"verify_claim",
|
|
92
|
+
"workflow_sentinel"
|
|
93
|
+
],
|
|
94
|
+
"essential": [
|
|
95
|
+
"append_feedback_context",
|
|
96
|
+
"approve_protected_action",
|
|
97
|
+
"capture_feedback",
|
|
120
98
|
"check_operational_integrity",
|
|
121
|
-
"
|
|
99
|
+
"create_purchase_requisition",
|
|
100
|
+
"estimate_uncertainty",
|
|
122
101
|
"feedback_stats",
|
|
123
102
|
"feedback_summary",
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"require_evidence_for_claim",
|
|
127
|
-
"session_report",
|
|
103
|
+
"finalize_feedback_session",
|
|
104
|
+
"gate_check",
|
|
128
105
|
"generate_operator_artifact",
|
|
106
|
+
"get_agent_outcome_metrics",
|
|
107
|
+
"get_branch_governance",
|
|
108
|
+
"get_scope_state",
|
|
109
|
+
"get_task_outcomes",
|
|
110
|
+
"list_human_escalations",
|
|
111
|
+
"list_purchase_requisitions",
|
|
112
|
+
"open_feedback_session",
|
|
129
113
|
"parallel_workflow",
|
|
130
|
-
"
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
"
|
|
114
|
+
"plan_agent_design_governance",
|
|
115
|
+
"plan_chatgpt_ads_readiness",
|
|
116
|
+
"plan_context_footprint",
|
|
117
|
+
"plan_multimodal_retrieval",
|
|
118
|
+
"plan_oss_pr_opportunity_scout",
|
|
119
|
+
"plan_proactive_agent_eval_guardrails",
|
|
120
|
+
"plan_reward_hacking_guardrails",
|
|
121
|
+
"prevention_rules",
|
|
134
122
|
"recall",
|
|
123
|
+
"record_task_outcome",
|
|
124
|
+
"reconcile_purchase_ledger",
|
|
125
|
+
"reflect_on_feedback",
|
|
126
|
+
"report_product_issue",
|
|
127
|
+
"request_human_escalation",
|
|
128
|
+
"reserve_purchase_requisition",
|
|
129
|
+
"require_evidence_for_claim",
|
|
135
130
|
"retrieve_lessons",
|
|
131
|
+
"satisfy_gate",
|
|
132
|
+
"search_lessons",
|
|
136
133
|
"search_thumbgate",
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"get_scope_state",
|
|
134
|
+
"session_report",
|
|
135
|
+
"settle_purchase_requisition",
|
|
140
136
|
"set_branch_governance",
|
|
141
|
-
"
|
|
142
|
-
"
|
|
137
|
+
"set_task_scope",
|
|
138
|
+
"suggest_fix",
|
|
143
139
|
"track_action",
|
|
144
|
-
"
|
|
145
|
-
"get_task_outcomes",
|
|
146
|
-
"get_agent_outcome_metrics",
|
|
147
|
-
"request_human_escalation",
|
|
148
|
-
"list_human_escalations",
|
|
140
|
+
"unified_context",
|
|
149
141
|
"verify_claim",
|
|
142
|
+
"workflow_sentinel"
|
|
143
|
+
],
|
|
144
|
+
"commerce": [
|
|
145
|
+
"approve_protected_action",
|
|
146
|
+
"capture_feedback",
|
|
150
147
|
"check_operational_integrity",
|
|
151
|
-
"
|
|
152
|
-
"
|
|
148
|
+
"commerce_recall",
|
|
149
|
+
"create_purchase_requisition",
|
|
153
150
|
"feedback_stats",
|
|
154
151
|
"feedback_summary",
|
|
155
|
-
"
|
|
156
|
-
|
|
157
|
-
"readonly": [
|
|
158
|
-
"recall",
|
|
159
|
-
"unified_context",
|
|
160
|
-
"feedback_summary",
|
|
161
|
-
"search_lessons",
|
|
162
|
-
"retrieve_lessons",
|
|
163
|
-
"search_thumbgate",
|
|
164
|
-
"plan_multimodal_retrieval",
|
|
165
|
-
"plan_context_footprint",
|
|
166
|
-
"plan_agent_design_governance",
|
|
167
|
-
"plan_proactive_agent_eval_guardrails",
|
|
168
|
-
"plan_reward_hacking_guardrails",
|
|
169
|
-
"plan_oss_pr_opportunity_scout",
|
|
170
|
-
"plan_chatgpt_ads_readiness",
|
|
171
|
-
"feedback_stats",
|
|
172
|
-
"diagnose_failure",
|
|
173
|
-
"list_harnesses",
|
|
174
|
-
"list_intents",
|
|
175
|
-
"plan_intent",
|
|
176
|
-
"context_provenance",
|
|
177
|
-
"get_scope_state",
|
|
152
|
+
"gate_check",
|
|
153
|
+
"get_agent_outcome_metrics",
|
|
178
154
|
"get_branch_governance",
|
|
155
|
+
"get_scope_state",
|
|
179
156
|
"get_task_outcomes",
|
|
180
|
-
"get_agent_outcome_metrics",
|
|
181
157
|
"list_human_escalations",
|
|
158
|
+
"list_purchase_requisitions",
|
|
159
|
+
"prevention_rules",
|
|
160
|
+
"recall",
|
|
161
|
+
"record_task_outcome",
|
|
162
|
+
"reconcile_purchase_ledger",
|
|
163
|
+
"request_human_escalation",
|
|
164
|
+
"reserve_purchase_requisition",
|
|
165
|
+
"retrieve_lessons",
|
|
166
|
+
"search_thumbgate",
|
|
167
|
+
"set_branch_governance",
|
|
168
|
+
"set_task_scope",
|
|
169
|
+
"settle_purchase_requisition",
|
|
170
|
+
"suggest_fix",
|
|
171
|
+
"track_action",
|
|
182
172
|
"verify_claim",
|
|
173
|
+
"workflow_sentinel"
|
|
174
|
+
],
|
|
175
|
+
"readonly": [
|
|
183
176
|
"check_operational_integrity",
|
|
184
|
-
"
|
|
185
|
-
"gate_stats",
|
|
177
|
+
"context_provenance",
|
|
186
178
|
"dashboard",
|
|
187
|
-
"settings_status",
|
|
188
|
-
"native_messaging_audit",
|
|
189
|
-
"get_business_metrics",
|
|
190
|
-
"describe_semantic_entity",
|
|
191
|
-
"get_reliability_rules",
|
|
192
179
|
"describe_reliability_entity",
|
|
193
|
-
"
|
|
194
|
-
"
|
|
180
|
+
"describe_semantic_entity",
|
|
181
|
+
"diagnose_failure",
|
|
182
|
+
"feedback_stats",
|
|
183
|
+
"feedback_summary",
|
|
184
|
+
"gate_check",
|
|
185
|
+
"gate_stats",
|
|
195
186
|
"generate_operator_artifact",
|
|
196
|
-
"
|
|
187
|
+
"get_agent_outcome_metrics",
|
|
188
|
+
"get_branch_governance",
|
|
189
|
+
"get_business_metrics",
|
|
190
|
+
"get_reliability_rules",
|
|
191
|
+
"get_scope_state",
|
|
192
|
+
"get_task_outcomes",
|
|
193
|
+
"list_harnesses",
|
|
194
|
+
"list_human_escalations",
|
|
195
|
+
"list_intents",
|
|
196
|
+
"list_purchase_requisitions",
|
|
197
|
+
"native_messaging_audit",
|
|
197
198
|
"perplexity_ask",
|
|
198
|
-
"
|
|
199
|
-
],
|
|
200
|
-
"dispatch": [
|
|
201
|
-
"recall",
|
|
202
|
-
"unified_context",
|
|
203
|
-
"feedback_summary",
|
|
204
|
-
"search_lessons",
|
|
205
|
-
"retrieve_lessons",
|
|
206
|
-
"search_thumbgate",
|
|
207
|
-
"plan_multimodal_retrieval",
|
|
208
|
-
"plan_context_footprint",
|
|
199
|
+
"perplexity_search",
|
|
209
200
|
"plan_agent_design_governance",
|
|
210
|
-
"plan_proactive_agent_eval_guardrails",
|
|
211
|
-
"plan_reward_hacking_guardrails",
|
|
212
|
-
"plan_oss_pr_opportunity_scout",
|
|
213
201
|
"plan_chatgpt_ads_readiness",
|
|
214
|
-
"
|
|
215
|
-
"diagnose_failure",
|
|
216
|
-
"list_harnesses",
|
|
217
|
-
"list_intents",
|
|
202
|
+
"plan_context_footprint",
|
|
218
203
|
"plan_intent",
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
204
|
+
"plan_multimodal_retrieval",
|
|
205
|
+
"plan_oss_pr_opportunity_scout",
|
|
206
|
+
"plan_proactive_agent_eval_guardrails",
|
|
207
|
+
"plan_reward_hacking_guardrails",
|
|
208
|
+
"recall",
|
|
209
|
+
"reconcile_purchase_ledger",
|
|
210
|
+
"require_evidence_for_claim",
|
|
211
|
+
"retrieve_lessons",
|
|
212
|
+
"search_lessons",
|
|
213
|
+
"search_thumbgate",
|
|
214
|
+
"session_report",
|
|
215
|
+
"settings_status",
|
|
216
|
+
"suggest_fix",
|
|
217
|
+
"unified_context",
|
|
226
218
|
"verify_claim",
|
|
219
|
+
"workflow_sentinel"
|
|
220
|
+
],
|
|
221
|
+
"dispatch": [
|
|
227
222
|
"check_operational_integrity",
|
|
228
|
-
"
|
|
229
|
-
"gate_stats",
|
|
223
|
+
"context_provenance",
|
|
230
224
|
"dashboard",
|
|
231
|
-
"settings_status",
|
|
232
|
-
"native_messaging_audit",
|
|
233
|
-
"get_business_metrics",
|
|
234
|
-
"describe_semantic_entity",
|
|
235
|
-
"get_reliability_rules",
|
|
236
225
|
"describe_reliability_entity",
|
|
237
|
-
"
|
|
238
|
-
"
|
|
226
|
+
"describe_semantic_entity",
|
|
227
|
+
"diagnose_failure",
|
|
228
|
+
"feedback_stats",
|
|
229
|
+
"feedback_summary",
|
|
230
|
+
"gate_check",
|
|
231
|
+
"gate_stats",
|
|
239
232
|
"generate_operator_artifact",
|
|
240
|
-
"
|
|
233
|
+
"get_agent_outcome_metrics",
|
|
234
|
+
"get_branch_governance",
|
|
235
|
+
"get_business_metrics",
|
|
236
|
+
"get_reliability_rules",
|
|
237
|
+
"get_scope_state",
|
|
238
|
+
"get_task_outcomes",
|
|
239
|
+
"list_harnesses",
|
|
240
|
+
"list_human_escalations",
|
|
241
|
+
"list_intents",
|
|
242
|
+
"list_purchase_requisitions",
|
|
243
|
+
"native_messaging_audit",
|
|
241
244
|
"perplexity_ask",
|
|
242
|
-
"
|
|
243
|
-
],
|
|
244
|
-
"locked": [
|
|
245
|
-
"feedback_summary",
|
|
246
|
-
"search_lessons",
|
|
247
|
-
"retrieve_lessons",
|
|
248
|
-
"search_thumbgate",
|
|
249
|
-
"plan_context_footprint",
|
|
245
|
+
"perplexity_search",
|
|
250
246
|
"plan_agent_design_governance",
|
|
247
|
+
"plan_chatgpt_ads_readiness",
|
|
248
|
+
"plan_context_footprint",
|
|
249
|
+
"plan_intent",
|
|
250
|
+
"plan_multimodal_retrieval",
|
|
251
|
+
"plan_oss_pr_opportunity_scout",
|
|
251
252
|
"plan_proactive_agent_eval_guardrails",
|
|
252
253
|
"plan_reward_hacking_guardrails",
|
|
253
|
-
"
|
|
254
|
-
"
|
|
254
|
+
"recall",
|
|
255
|
+
"reconcile_purchase_ledger",
|
|
256
|
+
"require_evidence_for_claim",
|
|
257
|
+
"retrieve_lessons",
|
|
258
|
+
"run_harness",
|
|
259
|
+
"search_lessons",
|
|
260
|
+
"search_thumbgate",
|
|
261
|
+
"session_report",
|
|
262
|
+
"settings_status",
|
|
263
|
+
"suggest_fix",
|
|
264
|
+
"unified_context",
|
|
265
|
+
"verify_claim",
|
|
266
|
+
"workflow_sentinel"
|
|
267
|
+
],
|
|
268
|
+
"locked": [
|
|
269
|
+
"check_operational_integrity",
|
|
255
270
|
"diagnose_failure",
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
271
|
+
"feedback_summary",
|
|
272
|
+
"gate_check",
|
|
273
|
+
"generate_operator_artifact",
|
|
274
|
+
"get_agent_outcome_metrics",
|
|
260
275
|
"get_branch_governance",
|
|
276
|
+
"get_scope_state",
|
|
261
277
|
"get_task_outcomes",
|
|
262
|
-
"
|
|
278
|
+
"list_harnesses",
|
|
263
279
|
"list_human_escalations",
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"workflow_sentinel",
|
|
267
|
-
"settings_status",
|
|
280
|
+
"list_intents",
|
|
281
|
+
"list_purchase_requisitions",
|
|
268
282
|
"native_messaging_audit",
|
|
269
|
-
"
|
|
270
|
-
"
|
|
283
|
+
"plan_agent_design_governance",
|
|
284
|
+
"plan_chatgpt_ads_readiness",
|
|
285
|
+
"plan_context_footprint",
|
|
286
|
+
"plan_intent",
|
|
287
|
+
"plan_oss_pr_opportunity_scout",
|
|
288
|
+
"plan_proactive_agent_eval_guardrails",
|
|
289
|
+
"plan_reward_hacking_guardrails",
|
|
290
|
+
"retrieve_lessons",
|
|
291
|
+
"reconcile_purchase_ledger",
|
|
292
|
+
"search_lessons",
|
|
293
|
+
"search_thumbgate",
|
|
294
|
+
"settings_status",
|
|
295
|
+
"suggest_fix",
|
|
296
|
+
"verify_claim",
|
|
297
|
+
"workflow_sentinel"
|
|
271
298
|
]
|
|
272
299
|
}
|
|
273
300
|
}
|
package/config/model-tiers.json
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"nano": {
|
|
5
5
|
"label": "GPT-5.4 nano",
|
|
6
6
|
"modelId": "gpt-5.4-nano",
|
|
7
|
+
"provider": "openai",
|
|
7
8
|
"taskTypes": ["classification", "extraction", "ranking", "labeling", "summarization"],
|
|
8
9
|
"maxContextTokens": 32000,
|
|
9
10
|
"costMultiplier": 0.1
|
|
@@ -11,6 +12,7 @@
|
|
|
11
12
|
"mini": {
|
|
12
13
|
"label": "GPT-5.4 mini",
|
|
13
14
|
"modelId": "gpt-5.4-mini",
|
|
15
|
+
"provider": "openai",
|
|
14
16
|
"taskTypes": ["code-edit", "test-generation", "review", "tool-use", "debugging"],
|
|
15
17
|
"maxContextTokens": 200000,
|
|
16
18
|
"costMultiplier": 0.4
|
|
@@ -18,6 +20,7 @@
|
|
|
18
20
|
"frontier": {
|
|
19
21
|
"label": "GPT-5.5",
|
|
20
22
|
"modelId": "gpt-5.5",
|
|
23
|
+
"provider": "openai",
|
|
21
24
|
"taskTypes": ["architecture", "cross-file", "complex-debugging", "large-context"],
|
|
22
25
|
"maxContextTokens": 1000000,
|
|
23
26
|
"costMultiplier": 1.0,
|
|
@@ -27,7 +30,9 @@
|
|
|
27
30
|
}
|
|
28
31
|
},
|
|
29
32
|
"localFrontier": {
|
|
30
|
-
"label": "
|
|
33
|
+
"label": "Configured local frontier",
|
|
34
|
+
"modelId": null,
|
|
35
|
+
"provider": "openai-compatible",
|
|
31
36
|
"taskTypes": [],
|
|
32
37
|
"maxContextTokens": 1000000,
|
|
33
38
|
"costMultiplier": 0.0,
|
|
@@ -35,7 +40,7 @@
|
|
|
35
40
|
"tokenCap": 2000000,
|
|
36
41
|
"requireReason": false
|
|
37
42
|
},
|
|
38
|
-
"notes": "Self-hosted open-source tier.
|
|
43
|
+
"notes": "Self-hosted open-source tier. The runtime derives the served model from THUMBGATE_MODEL_ROLE_NORMAL, THUMBGATE_LOCAL_MODEL, THUMBGATE_MODEL_ID, or THUMBGATE_LOCAL_MODEL_FAMILY. Zero marginal API cost; no token budget enforcement needed."
|
|
39
44
|
}
|
|
40
45
|
},
|
|
41
46
|
"escalationRules": {
|
package/glama.json
ADDED