thumbgate 1.27.18 → 1.27.20

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.
Files changed (170) hide show
  1. package/.claude/commands/dashboard.md +15 -0
  2. package/.claude/commands/thumbgate-blocked.md +27 -0
  3. package/.claude/commands/thumbgate-dashboard.md +15 -0
  4. package/.claude/commands/thumbgate-doctor.md +30 -0
  5. package/.claude/commands/thumbgate-guard.md +36 -0
  6. package/.claude/commands/thumbgate-protect.md +30 -0
  7. package/.claude/commands/thumbgate-rules.md +30 -0
  8. package/.claude-plugin/plugin.json +4 -3
  9. package/.well-known/agentic-verify.txt +1 -0
  10. package/.well-known/llms.txt +33 -12
  11. package/.well-known/mcp/server-card.json +8 -8
  12. package/README.md +246 -30
  13. package/adapters/claude/.mcp.json +2 -2
  14. package/adapters/codex/config.toml +2 -2
  15. package/adapters/gcp/dfcx-webhook-gate.js +295 -0
  16. package/adapters/gemini/function-declarations.json +1 -0
  17. package/adapters/letta/README.md +41 -0
  18. package/adapters/letta/thumbgate-letta-adapter.js +133 -0
  19. package/adapters/mcp/server-stdio.js +263 -11
  20. package/adapters/opencode/opencode.json +1 -1
  21. package/adapters/policy-engine/ethicore-guardian-client.js +68 -0
  22. package/adapters/policy-engine/thumbgate-policy-engine-adapter.js +260 -0
  23. package/bench/observability-eval-suite.json +26 -0
  24. package/bench/thumbgate-bench.json +2 -2
  25. package/bin/cli.js +1456 -122
  26. package/bin/dashboard-cli.js +7 -0
  27. package/bin/postinstall.js +11 -27
  28. package/commands/dashboard.md +15 -0
  29. package/commands/thumbgate-dashboard.md +15 -0
  30. package/config/gate-classifier-routing.json +98 -0
  31. package/config/gate-templates.json +216 -0
  32. package/config/gates/claim-verification.json +12 -0
  33. package/config/gates/default.json +31 -2
  34. package/config/github-about.json +2 -2
  35. package/config/mcp-allowlists.json +23 -13
  36. package/config/merge-quality-checks.json +0 -1
  37. package/config/model-candidates.json +121 -6
  38. package/config/post-deploy-marketing-pages.json +80 -0
  39. package/config/tessl-tiles.json +1 -3
  40. package/openapi/openapi.yaml +12 -0
  41. package/package.json +225 -100
  42. package/public/about.html +162 -0
  43. package/public/agent-manager.html +179 -0
  44. package/public/agents-cost-savings.html +153 -0
  45. package/public/ai-malpractice-prevention.html +818 -0
  46. package/public/assets/brand/github-social-preview.png +0 -0
  47. package/public/assets/brand/thumbgate-icon-512.png +0 -0
  48. package/public/assets/brand/thumbgate-icon-pro-512.png +0 -0
  49. package/public/assets/brand/thumbgate-icon-team-512.png +0 -0
  50. package/public/assets/brand/thumbgate-logo-1200x360.png +0 -0
  51. package/public/assets/brand/thumbgate-logo-transparent.svg +28 -0
  52. package/public/assets/brand/thumbgate-mark-inline-v3.svg +18 -0
  53. package/public/assets/brand/thumbgate-mark-pro.svg +23 -0
  54. package/public/assets/brand/thumbgate-mark-team.svg +26 -0
  55. package/public/assets/brand/thumbgate-mark.svg +21 -0
  56. package/public/assets/brand/thumbgate-wordmark.svg +20 -0
  57. package/public/assets/claude-thumbgate-statusbar.svg +8 -0
  58. package/public/assets/codex-thumbgate-statusbar-test.svg +9 -0
  59. package/public/assets/legal-intake-control-flow.svg +66 -0
  60. package/public/blog.html +4 -4
  61. package/public/brand/thumbgate-mark.svg +19 -0
  62. package/public/brand/thumbgate-og.svg +16 -0
  63. package/public/chatgpt-app.html +330 -0
  64. package/public/codex-enterprise.html +123 -0
  65. package/public/codex-plugin.html +72 -20
  66. package/public/compare.html +31 -8
  67. package/public/dashboard.html +930 -166
  68. package/public/diagnostic.html +345 -0
  69. package/public/federal.html +2 -2
  70. package/public/guide.html +33 -13
  71. package/public/index.html +469 -111
  72. package/public/install.html +193 -0
  73. package/public/js/buyer-intent.js +672 -0
  74. package/public/learn.html +183 -18
  75. package/public/lessons.html +168 -10
  76. package/public/numbers.html +7 -7
  77. package/public/pricing.html +399 -0
  78. package/public/pro.html +34 -11
  79. package/scripts/action-receipts.js +324 -0
  80. package/scripts/activation-quickstart.js +187 -0
  81. package/scripts/agent-memory-lifecycle.js +211 -0
  82. package/scripts/agent-operations-planner.js +621 -0
  83. package/scripts/agent-readiness.js +20 -3
  84. package/scripts/agent-reward-model.js +53 -1
  85. package/scripts/ai-component-inventory.js +367 -0
  86. package/scripts/async-eval-observability.js +236 -0
  87. package/scripts/audit.js +65 -0
  88. package/scripts/auto-promote-gates.js +82 -10
  89. package/scripts/auto-wire-hooks.js +14 -0
  90. package/scripts/aws-blocks-guardrails.js +272 -0
  91. package/scripts/billing.js +93 -1
  92. package/scripts/bot-detection.js +61 -3
  93. package/scripts/build-metadata.js +50 -10
  94. package/scripts/classifier-routing.js +130 -0
  95. package/scripts/cli-feedback.js +4 -2
  96. package/scripts/cli-schema.js +97 -0
  97. package/scripts/cli-telemetry.js +6 -1
  98. package/scripts/commercial-offer.js +82 -2
  99. package/scripts/context-manager.js +74 -6
  100. package/scripts/dashboard-chat.js +332 -0
  101. package/scripts/dashboard.js +68 -2
  102. package/scripts/export-databricks-bundle.js +5 -1
  103. package/scripts/export-dpo-pairs.js +7 -2
  104. package/scripts/feedback-aggregate.js +281 -0
  105. package/scripts/feedback-loop.js +123 -1
  106. package/scripts/feedback-quality.js +87 -0
  107. package/scripts/feedback-sanitizer.js +105 -0
  108. package/scripts/filesystem-search.js +35 -10
  109. package/scripts/gate-stats.js +89 -0
  110. package/scripts/gates-engine.js +1176 -85
  111. package/scripts/gemini-embedding-policy.js +2 -1
  112. package/scripts/hook-runtime.js +20 -14
  113. package/scripts/hook-stop-anti-claim.js +301 -0
  114. package/scripts/hook-thumbgate-cache-updater.js +18 -2
  115. package/scripts/hybrid-feedback-context.js +142 -7
  116. package/scripts/install-shim.js +87 -0
  117. package/scripts/lesson-inference.js +8 -3
  118. package/scripts/lesson-search.js +17 -1
  119. package/scripts/license.js +10 -10
  120. package/scripts/llm-client.js +169 -4
  121. package/scripts/local-model-profile.js +15 -8
  122. package/scripts/mcp-config.js +7 -1
  123. package/scripts/mcp-oauth.js +293 -0
  124. package/scripts/memory-scope-readiness.js +159 -0
  125. package/scripts/meta-agent-loop.js +36 -0
  126. package/scripts/noop-detect.js +285 -0
  127. package/scripts/operational-integrity.js +39 -5
  128. package/scripts/oss-pr-opportunity-scout.js +35 -5
  129. package/scripts/parallel-workflow-orchestrator.js +293 -0
  130. package/scripts/plan-gate.js +243 -0
  131. package/scripts/plausible-domain-config.js +99 -0
  132. package/scripts/plausible-server-events.js +9 -6
  133. package/scripts/pro-local-dashboard.js +4 -4
  134. package/scripts/proxy-pointer-rag-guardrails.js +42 -1
  135. package/scripts/published-cli.js +0 -8
  136. package/scripts/qa-scenario-planner.js +136 -0
  137. package/scripts/rate-limiter.js +64 -13
  138. package/scripts/repeat-metric.js +137 -0
  139. package/scripts/secret-fixture-tokens.js +61 -0
  140. package/scripts/secret-redaction.js +166 -0
  141. package/scripts/secret-scanner.js +44 -5
  142. package/scripts/security-scanner.js +260 -10
  143. package/scripts/self-distill-agent.js +3 -1
  144. package/scripts/self-harness-optimizer.js +141 -0
  145. package/scripts/self-healing-check.js +193 -0
  146. package/scripts/self-protection.js +90 -0
  147. package/scripts/seo-gsd.js +916 -7
  148. package/scripts/silent-failure-cluster.js +531 -0
  149. package/scripts/statusline-cache-path.js +17 -2
  150. package/scripts/statusline-cache-read.js +57 -0
  151. package/scripts/statusline-local-stats.js +9 -1
  152. package/scripts/statusline-meta.js +28 -2
  153. package/scripts/statusline.sh +20 -4
  154. package/scripts/sync-telemetry-from-prod.js +374 -0
  155. package/scripts/telemetry-analytics.js +357 -0
  156. package/scripts/thompson-sampling.js +31 -10
  157. package/scripts/thumbgate-bench.js +16 -1
  158. package/scripts/thumbgate-search.js +85 -19
  159. package/scripts/tool-contract-validator.js +76 -0
  160. package/scripts/tool-registry.js +169 -1
  161. package/scripts/trajectory-scorer.js +63 -0
  162. package/scripts/vector-store.js +45 -0
  163. package/scripts/verify-marketing-pages-deployed.js +212 -0
  164. package/scripts/visitor-journey.js +172 -0
  165. package/scripts/workflow-sentinel.js +286 -53
  166. package/scripts/workspace-evolver.js +62 -2
  167. package/src/api/server.js +2683 -319
  168. package/.claude-plugin/marketplace.json +0 -85
  169. package/adapters/chatgpt/openapi.yaml +0 -1695
  170. package/scripts/bot-detector.js +0 -50
@@ -4,8 +4,8 @@
4
4
  "workloads": {
5
5
  "pretool-gating": {
6
6
  "label": "PreTool gating",
7
- "summary": "Fast, reliable gate judgments for tool-use and agentic coding decisions before commands run.",
8
- "desiredStrengths": ["agentic-coding", "tool-use", "reliability"],
7
+ "summary": "Fast, reliable gate judgments for tool-use and agentic coding decisions before commands run. Hybrid local-cloud candidates (e.g. perplexity/hybrid-local) excel here for privacy + low latency on sensitive paths.",
8
+ "desiredStrengths": ["agentic-coding", "tool-use", "reliability", "privacy", "fast-inference"],
9
9
  "targetContextWindow": 64000,
10
10
  "benchmarkCommands": [
11
11
  "npx thumbgate eval --from-feedback --json --min-score=0",
@@ -43,8 +43,8 @@
43
43
  },
44
44
  "cheap-fast-path": {
45
45
  "label": "Cheap fast path",
46
- "summary": "Low-cost first-pass model for cheap approval triage before escalating ambiguous work.",
47
- "desiredStrengths": ["agentic-coding", "tool-use"],
46
+ "summary": "Low-cost first-pass model for cheap approval triage before escalating ambiguous work. Perplexity hybrid-local is ideal: on-device for speed/privacy, escalate only when needed via orchestrator.",
47
+ "desiredStrengths": ["agentic-coding", "tool-use", "fast-inference", "privacy", "cost-efficiency"],
48
48
  "targetContextWindow": 32000,
49
49
  "benchmarkCommands": [
50
50
  "npx thumbgate eval --from-feedback --json --min-score=0",
@@ -60,8 +60,8 @@
60
60
  },
61
61
  "dashboard-analysis": {
62
62
  "label": "Dashboard and dataset analysis",
63
- "summary": "Evaluate frontier models for dataset analysis, chart generation, dashboard planning, and proof-backed insight quality before routing expensive analytical work.",
64
- "desiredStrengths": ["data-analysis", "dashboard-creation", "charting", "long-context", "reliability"],
63
+ "summary": "Evaluate frontier models for dataset analysis, chart generation, dashboard planning, and proof-backed insight quality before routing expensive analytical work. Perplexity hybrid excels for sensitive lessons/feedback data (local for privacy, cloud for depth).",
64
+ "desiredStrengths": ["data-analysis", "dashboard-creation", "charting", "long-context", "reliability", "privacy"],
65
65
  "targetContextWindow": 200000,
66
66
  "benchmarkCommands": [
67
67
  "npx thumbgate eval --from-feedback --json --min-score=0",
@@ -77,6 +77,27 @@
77
77
  "costPerAnalysisUsd"
78
78
  ]
79
79
  },
80
+ "claw-style-enterprise-agent": {
81
+ "label": "Claw-style enterprise agent governance",
82
+ "summary": "Governance, gating, and feedback for autonomous 'claw-style' agents (Automation Anywhere EnterpriseClaw, Nvidia OpenShell-inspired) that have device file system access, runtime dynamic tool creation, screen/UI interaction, and multi-platform orchestration. Especially relevant for on-prem/air-gapped/hybrid enterprise data realities.",
83
+ "desiredStrengths": ["agentic-coding", "tool-use", "reliability", "security", "orchestration", "audit-trail", "privacy"],
84
+ "targetContextWindow": 128000,
85
+ "benchmarkCommands": [
86
+ "npx thumbgate eval --from-feedback --json --min-score=0",
87
+ "node scripts/gate-eval.js run",
88
+ "npx thumbgate bench --json --min-score=90"
89
+ ],
90
+ "metrics": [
91
+ "passRate",
92
+ "falsePositiveRate",
93
+ "agentIdentitySeparation",
94
+ "dynamicToolSafety",
95
+ "screenInteractionAudit",
96
+ "orchestrationCompliance",
97
+ "medianLatencyMs",
98
+ "costPer1kActionsUsd"
99
+ ]
100
+ },
80
101
  "tokenizer-brittleness": {
81
102
  "label": "Tokenizer brittleness and byte-level robustness",
82
103
  "summary": "Evaluate models for malformed JSONL, Unicode confusables, stack traces, secrets, SQL snippets, file paths, and code-symbol-heavy inputs before routing log, code, or security workloads.",
@@ -95,6 +116,23 @@
95
116
  "medianLatencyMs",
96
117
  "memoryBandwidthEstimate"
97
118
  ]
119
+ },
120
+ "self-improving-agent-skill-synthesis": {
121
+ "label": "Self-improving agent skill synthesis",
122
+ "summary": "Evaluate models on their ability to self-improve, generate safe Markdown skills, and correctly check synthesized skills against existing gate/prevention rules.",
123
+ "desiredStrengths": ["agentic-coding", "tool-use", "self-evolving", "skill-synthesis", "reliability"],
124
+ "targetContextWindow": 128000,
125
+ "benchmarkCommands": [
126
+ "npx thumbgate eval --from-feedback --json --min-score=0",
127
+ "node scripts/gate-eval.js run"
128
+ ],
129
+ "metrics": [
130
+ "passRate",
131
+ "skillSafetyCheckAccuracy",
132
+ "ruleBypassDetectionRate",
133
+ "medianLatencyMs",
134
+ "costPerEvolutionUsd"
135
+ ]
98
136
  }
99
137
  },
100
138
  "candidates": [
@@ -214,6 +252,83 @@
214
252
  "costClass": "low",
215
253
  "strengths": ["agentic-coding", "tool-use", "fast-inference"],
216
254
  "notes": "Cheapest Tinker candidate for the fast gate path; use when latency/cost matter most."
255
+ },
256
+ {
257
+ "id": "perplexity/hybrid-local-cloud",
258
+ "vendor": "Perplexity",
259
+ "family": "hybrid",
260
+ "provider": "perplexity",
261
+ "model": "hybrid-local-cloud-orchestrator",
262
+ "contextWindow": 200000,
263
+ "costClass": "variable",
264
+ "strengths": ["agentic-coding", "tool-use", "privacy", "cost-efficiency", "fast-inference", "long-context", "reliability"],
265
+ "notes": "Perplexity hybrid local-cloud inference orchestrator (announced Computex 2026, part of Personal Computer). Autonomously routes: sensitive/privacy work to local on-device models, complex reasoning to frontier cloud. High-ROI for pretool-gating (local fast/privacy path), cheap-fast-path, and dashboard-analysis with sensitive data/lessons. Pair with ThumbGate hybrid-routing gates (see adapters/perplexity/HYBRID.md). Coming July 2026 for local inference."
266
+ },
267
+ {
268
+ "id": "perplexity/hybrid-local",
269
+ "vendor": "Perplexity",
270
+ "family": "hybrid",
271
+ "provider": "perplexity",
272
+ "model": "local-inference",
273
+ "contextWindow": 128000,
274
+ "costClass": "low",
275
+ "strengths": ["fast-inference", "privacy", "tool-use", "reliability"],
276
+ "notes": "Local-only mode of Perplexity hybrid for on-device pre-action gating, sensitivity classification, and low-latency checks on AI PCs (Intel, NVIDIA). Escalate via orchestrator for full capability. Use for cheap-fast-path and pretool-gating workloads."
277
+ },
278
+ {
279
+ "id": "automation-anywhere/enterprise-claw",
280
+ "vendor": "Automation Anywhere",
281
+ "family": "claw-style",
282
+ "provider": "automation-anywhere",
283
+ "model": "enterprise-claw",
284
+ "contextWindow": 200000,
285
+ "costClass": "variable",
286
+ "strengths": ["agentic-coding", "tool-use", "orchestration", "audit-trail", "security", "on-prem", "airgap", "dynamic-tool-creation", "screen-interaction"],
287
+ "notes": "Claw-style autonomous enterprise agents (EnterpriseClaw, inspired by Nvidia OpenShell). Device-level access, runtime tool creation, screen/UI interaction, multi-platform orchestration. Governance infrastructure (ThumbGate) is explicitly called out as catching up. High-ROI for enterprise on-prem/hybrid use cases. Pair with perplexity/hybrid for inference routing. See adapters/claw/CLAW.md and new gate templates."
288
+ },
289
+ {
290
+ "id": "nvidia/openshell-claw",
291
+ "vendor": "NVIDIA",
292
+ "family": "claw-style",
293
+ "provider": "nvidia",
294
+ "model": "openshell",
295
+ "contextWindow": 128000,
296
+ "costClass": "medium",
297
+ "strengths": ["agentic-coding", "tool-use", "dynamic-tool-creation", "screen-interaction", "on-prem", "self-evolving"],
298
+ "notes": "Nvidia OpenShell runtime for autonomous self-evolving claw-style agents (basis for Automation Anywhere EnterpriseClaw). Run locally/on-prem. ThumbGate provides the missing governance layer (gates, feedback, rules). Use with hybrid local-cloud for full enterprise deployment."
299
+ },
300
+ {
301
+ "id": "nousresearch/hermes-3-llama-3.1-70b",
302
+ "vendor": "Nous Research",
303
+ "family": "hermes",
304
+ "provider": "openrouter",
305
+ "model": "hermes-3-llama-3.1-70b",
306
+ "contextWindow": 128000,
307
+ "costClass": "medium",
308
+ "strengths": ["agentic-coding", "tool-use", "self-evolving", "skill-synthesis", "multi-platform", "reasoning"],
309
+ "notes": "Nous Research's Hermes 3 model family, optimized for autonomous reasoning, tool-use, and self-improvement loops. Benchmark KV caching, trace-length constraints, and dynamic skill synthesis validation rules before deploying."
310
+ },
311
+ {
312
+ "id": "anthropic/claude-opus-4-8",
313
+ "vendor": "Anthropic",
314
+ "family": "claude",
315
+ "provider": "anthropic",
316
+ "model": "claude-opus-4.8",
317
+ "contextWindow": 200000,
318
+ "costClass": "high",
319
+ "strengths": ["agentic-coding", "tool-use", "reliability", "long-context", "long-horizon-coding", "multi-agent"],
320
+ "notes": "Frontier coding model with 56.7 Coding Index. Grew 140% WoW on OpenRouter to 1.33T tokens. Ideal for long trace reviews and complex reasoning steps, despite higher latency and cost."
321
+ },
322
+ {
323
+ "id": "google/gemini-3.1-pro-preview",
324
+ "vendor": "Google",
325
+ "family": "gemini",
326
+ "provider": "google",
327
+ "model": "gemini-3.1-pro-preview",
328
+ "contextWindow": 2000000,
329
+ "costClass": "medium",
330
+ "strengths": ["agentic-coding", "tool-use", "reliability", "long-context", "data-analysis", "cost-efficiency"],
331
+ "notes": "Google's 3.1 Pro Preview model with 55.5 Coding Index and massive 2M token context window. Strong choice for complex RAG tasks, repository-scale auditing, and long-context trace analysis."
217
332
  }
218
333
  ]
219
334
  }
@@ -0,0 +1,80 @@
1
+ {
2
+ "$comment": "Sentinel manifest for post-deploy verification of top-level marketing pages. Each entry is curled against the live production URL after every push to main; if the sentinel string is missing from the response body, the deploy is flagged as broken and the workflow comments on the associated PR. Adding a new top-level marketing page? Add it here so the deploy-verify workflow catches a route regression before a real visitor does. Keep sentinel strings short and stable (visible body copy, not styling classes or hashed assets).",
3
+ "version": 1,
4
+ "pages": [
5
+ {
6
+ "route": "/",
7
+ "sentinel": "Stop paying for the same AI mistake twice",
8
+ "description": "Home page hero (lifeblood — never regress)"
9
+ },
10
+ {
11
+ "route": "/pro",
12
+ "sentinel": "ThumbGate Pro",
13
+ "description": "Pro landing page"
14
+ },
15
+ {
16
+ "route": "/checkout/pro",
17
+ "sentinel": "Optional. Stripe can collect your email on the secure checkout page.",
18
+ "mustNotContain": [
19
+ "Required for your Stripe receipt and checkout recovery link."
20
+ ],
21
+ "userAgent": "curl/8.0.0",
22
+ "description": "Pro checkout interstitial must not require email before Stripe"
23
+ },
24
+ {
25
+ "route": "/diagnostic",
26
+ "sentinel": "Workflow Hardening Diagnostic",
27
+ "description": "Workflow Hardening Diagnostic intake page for high-intent warm traffic"
28
+ },
29
+ {
30
+ "route": "/dashboard",
31
+ "sentinel": "ThumbGate Dashboard",
32
+ "description": "Dashboard demo (already enforced by /dashboard step; included here for symmetry with PR comment surface)"
33
+ },
34
+ {
35
+ "route": "/federal",
36
+ "sentinel": "ThumbGate",
37
+ "description": "Federal lead-gen page (SBIR / GSA arrivals)"
38
+ },
39
+ {
40
+ "route": "/numbers",
41
+ "sentinel": "ThumbGate",
42
+ "description": "First-party numbers / data transparency page"
43
+ },
44
+ {
45
+ "route": "/ai-malpractice-prevention",
46
+ "sentinel": "Pre-Execution Controls for Legal AI Agents",
47
+ "description": "Legal AI intake risk-controls page for law-firm pilot conversations"
48
+ },
49
+ {
50
+ "route": "/learn/background-agent-control-layer",
51
+ "sentinel": "Background agents need a control layer outside the model",
52
+ "description": "Background-agent AI-SDLC control-layer positioning page"
53
+ },
54
+ {
55
+ "route": "/llm-context.md",
56
+ "sentinel": "## What ThumbGate Is",
57
+ "description": "Canonical declarative summary AI crawlers read"
58
+ },
59
+ {
60
+ "route": "/robots.txt",
61
+ "sentinel": "User-agent",
62
+ "description": "Crawl directives (mandatory per Google's 2026-05-15 AI features guide)"
63
+ },
64
+ {
65
+ "route": "/sitemap.xml",
66
+ "sentinel": "<urlset",
67
+ "description": "XML sitemap for search-engine discoverability"
68
+ },
69
+ {
70
+ "route": "/about",
71
+ "sentinel": "Igor Ganapolsky",
72
+ "description": "About page for GEO discoverability"
73
+ },
74
+ {
75
+ "route": "/leash-beta",
76
+ "sentinel": "Stop Runaway AI Agents From Freezing Your Machine",
77
+ "description": "Hermes Mobile founding beta / Leash Pro pricing landing"
78
+ }
79
+ ]
80
+ }
@@ -2,9 +2,7 @@
2
2
  "version": 1,
3
3
  "defaultWorkspace": "thumbgate",
4
4
  "proofLinks": {
5
- "verificationEvidence": "https://github.com/IgorGanapolsky/ThumbGate/blob/main/docs/VERIFICATION_EVIDENCE.md",
6
- "compatibilityReport": "https://github.com/IgorGanapolsky/ThumbGate/blob/main/proof/compatibility/report.json",
7
- "automationReport": "https://github.com/IgorGanapolsky/ThumbGate/blob/main/proof/automation/report.json"
5
+ "verificationEvidence": "https://github.com/IgorGanapolsky/ThumbGate/blob/main/docs/VERIFICATION_EVIDENCE.md"
8
6
  },
9
7
  "tiles": [
10
8
  {
@@ -72,6 +72,11 @@ components:
72
72
  description: Optional domain tags. If omitted, ThumbGate infers one from the feedback text before promotion.
73
73
  skill:
74
74
  type: string
75
+ source:
76
+ type: string
77
+ enum: [chatgpt_gpt]
78
+ default: chatgpt_gpt
79
+ description: Attribution marker for ThumbGate analytics. The published ThumbGate GPT should send `chatgpt_gpt` so owner dashboards can distinguish GPT Action calls from local API calls.
75
80
  IntentPlanRequest:
76
81
  type: object
77
82
  required: [intentId]
@@ -89,6 +94,8 @@ components:
89
94
  delegationMode:
90
95
  type: string
91
96
  enum: [off, auto, sequential]
97
+ enforcePlanQuality:
98
+ type: boolean
92
99
  approved:
93
100
  type: boolean
94
101
  repoPath:
@@ -880,6 +887,11 @@ paths:
880
887
  toolName:
881
888
  type: string
882
889
  description: Tool name is optional when provider-native tool call payload is supplied.
890
+ source:
891
+ type: string
892
+ enum: [chatgpt_gpt]
893
+ default: chatgpt_gpt
894
+ description: Attribution marker for ThumbGate analytics. The published ThumbGate GPT should send `chatgpt_gpt` so owner dashboards can distinguish GPT Action calls from local API calls.
883
895
  provider:
884
896
  type: string
885
897
  model: