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
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: dashboard
3
+ description: Open the local HTTP dashboard for the current project in your web browser.
4
+ ---
5
+
6
+ # Open Dashboard
7
+
8
+ Open the local HTTP dashboard for the current project in your web browser.
9
+
10
+ ## Instructions
11
+ Execute the following command in the project directory to open the browser dashboard scoped to the current repository:
12
+ ```bash
13
+ thumbgate-dashboard
14
+ ```
15
+
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: thumbgate-blocked
3
+ description: Show what ThumbGate has actually blocked — gate enforcement stats and the full enforcement matrix. Use for "what has ThumbGate blocked", "show gate stats", "is enforcement working", "how many tokens did we save", "enforcement matrix".
4
+ allowed-tools: mcp__thumbgate__gate_stats, mcp__thumbgate__enforcement_matrix, Bash(npx thumbgate gate-stats:*)
5
+ ---
6
+
7
+ # ThumbGate Blocked
8
+
9
+ Show the enforcement record: how many risky actions were blocked vs warned, which gates fire most, and the full feedback → check → rejection pipeline.
10
+
11
+ This command wraps existing ThumbGate capability — **no new logic**. It reads the live enforcement counters.
12
+
13
+ ## Steps
14
+
15
+ 1. Call the `gate_stats` MCP tool for the headline numbers: blocked count, warned count, and the top gates by hits. (CLI fallback: `npx thumbgate gate-stats`.)
16
+ 2. Call the `enforcement_matrix` MCP tool for the full picture: feedback pipeline stats, active pre-action checks, and the rejection ledger with revival conditions.
17
+ 3. Summarize for the user:
18
+ - Total blocks (each block = a repeat mistake stopped before it spent tokens or did damage).
19
+ - Most-triggered gates.
20
+ - Anything in the rejection ledger that is close to revival.
21
+ 4. If counts are all zero, note that enforcement is wired but hasn't fired yet, and point to `/thumbgate-guard` to promote a rule.
22
+
23
+ ## Example
24
+
25
+ ```
26
+ /thumbgate-blocked
27
+ ```
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: thumbgate-dashboard
3
+ description: Open the local HTTP dashboard for the current project in your web browser.
4
+ ---
5
+
6
+ # Open Scoped ThumbGate Dashboard
7
+
8
+ Open the local HTTP dashboard for the current project in your web browser.
9
+
10
+ ## Instructions
11
+ Execute the following command in the project directory to open the browser dashboard:
12
+ ```bash
13
+ thumbgate-dashboard
14
+ ```
15
+
@@ -0,0 +1,30 @@
1
+ ---
2
+ name: thumbgate-doctor
3
+ description: Health-check the ThumbGate wiring for this project — hooks, MCP server, and agent-readiness — and report what's broken. Use for "is ThumbGate wired up", "thumbgate doctor", "check my guardrails are installed", "why aren't my gates firing", "agent readiness".
4
+ allowed-tools: Bash(npx thumbgate doctor:*), mcp__thumbgate__check_operational_integrity
5
+ ---
6
+
7
+ # ThumbGate Doctor
8
+
9
+ Audit whether ThumbGate is actually wired into this agent: PreToolUse / SessionStart hooks installed, MCP server reachable, lesson store present, and overall agent-readiness — then tell the user exactly what to fix.
10
+
11
+ This command wraps existing ThumbGate capability — **no new logic**. It runs the existing doctor + integrity checks.
12
+
13
+ ## Steps
14
+
15
+ 1. Run the existing wiring/health audit:
16
+ ```bash
17
+ npx thumbgate doctor
18
+ ```
19
+ (Add `--json` for a machine-readable report.) It exits non-zero when the project is not `ready`.
20
+ 2. For deeper runtime state, call the `check_operational_integrity` MCP tool to verify the server-side enforcement path is live, not just the local config.
21
+ 3. Summarize:
22
+ - ✅ what's wired (hooks, MCP, store, statusline).
23
+ - ❌ what's missing, with the exact fix command (usually `npx thumbgate init`).
24
+ 4. If everything is green, say so plainly with the readiness status; if not, lead with the single highest-impact fix.
25
+
26
+ ## Example
27
+
28
+ ```
29
+ /thumbgate-doctor
30
+ ```
@@ -0,0 +1,36 @@
1
+ ---
2
+ name: thumbgate-guard
3
+ description: Turn the last agent mistake into a hard prevention rule the agent cannot bypass. Use after a bad tool call, a wrong action, or a thumbs-down — "guard against this", "block this from happening again", "never do that again", "promote this to a rule".
4
+ allowed-tools: mcp__thumbgate__capture_feedback, Bash(npx thumbgate force-gate:*), Bash(npx thumbgate quickstart:*)
5
+ ---
6
+
7
+ # ThumbGate Guard
8
+
9
+ Capture the mistake the agent just made and promote it into a Pre-Action Check (a `block` gate) so the same tool-call shape is intercepted before it runs again — in this and every future session, across Claude Code, Cursor, Codex, Gemini, Amp, and Cline.
10
+
11
+ This command wraps existing ThumbGate capability. It adds **no new logic** — it routes to the real capture + force-promote path.
12
+
13
+ ## Steps
14
+
15
+ 1. Identify the specific bad action from the recent conversation (e.g. `git push --force origin main`, `DROP TABLE users`, deploy without tests). State it in one sentence.
16
+ 2. Record the signal with the `capture_feedback` MCP tool:
17
+ - `signal: "down"`
18
+ - `context`: one sentence describing what went wrong
19
+ - `whatWentWrong`: the concrete failure
20
+ - `whatToChange`: the prevention action
21
+ - `tags`: the domain (e.g. `git`, `database`, `deploy`)
22
+ - If the user only gave a vague signal, pass the recent turns through `conversationWindow` / `chatHistory` for history-aware distillation instead of refusing.
23
+ 3. Promote it to an enforced block gate using the existing force-promote path:
24
+ ```bash
25
+ npx thumbgate force-gate "<one-sentence context of the mistake>"
26
+ ```
27
+ This prints the new `gateId` and the total active gate count.
28
+ 4. Show the user the promoted rule and confirm it is now enforced as a PreToolUse block.
29
+
30
+ > First rule of the project and want the guided walkthrough (capture → promote → watch it block once)? Run `npx thumbgate quickstart` instead.
31
+
32
+ ## Example
33
+
34
+ ```
35
+ /thumbgate-guard the agent force-pushed to main and overwrote a teammate's commit
36
+ ```
@@ -0,0 +1,30 @@
1
+ ---
2
+ name: thumbgate-protect
3
+ description: Show this repo's branch/release governance and grant a scoped, time-limited approval for an action that touches protected files. Use for "protect this branch", "is main protected", "approve this protected change", "branch governance", "let me edit a protected file".
4
+ allowed-tools: mcp__thumbgate__get_branch_governance, mcp__thumbgate__approve_protected_action
5
+ ---
6
+
7
+ # ThumbGate Protect
8
+
9
+ Inspect the protected-action posture for this project and, when the user explicitly approves, grant a scoped, expiring exception so a protected-file edit or publish can proceed under audit.
10
+
11
+ This command wraps existing ThumbGate capability — **no new logic**. It reads governance state and records a time-boxed approval.
12
+
13
+ ## Steps
14
+
15
+ 1. Read the current posture with the `get_branch_governance` MCP tool: which branches are protected, release rules, and the protected-file globs in effect.
16
+ 2. Report it plainly: what is protected, and what the agent is currently blocked from touching without approval.
17
+ 3. **Only if the user explicitly asks to proceed**, grant a scoped approval with `approve_protected_action`:
18
+ - `pathGlobs`: the smallest set of protected globs the action needs.
19
+ - `reason`: why this is approved (one sentence).
20
+ - `evidence`: supporting note (tests passing, owner sign-off, etc.) when available.
21
+ - `ttlMs`: keep it short — default is 1 hour, never exceed what the task needs.
22
+ 4. Confirm the approval id, covered globs, and expiry. Approvals are deliberately temporary and audited; re-run for the next task.
23
+
24
+ > This is for granting *narrow, temporary* exceptions, not for disabling protection. Never use it to bypass branch governance wholesale.
25
+
26
+ ## Example
27
+
28
+ ```
29
+ /thumbgate-protect
30
+ ```
@@ -0,0 +1,30 @@
1
+ ---
2
+ name: thumbgate-rules
3
+ description: List the active prevention rules and learned lessons guarding this project. Use to answer "what is ThumbGate protecting me from", "show my gates/rules", "what has the agent learned", "what's blocked here".
4
+ allowed-tools: mcp__thumbgate__prevention_rules, mcp__thumbgate__get_reliability_rules, mcp__thumbgate__search_lessons, Bash(npx thumbgate rules:*)
5
+ ---
6
+
7
+ # ThumbGate Rules
8
+
9
+ Show the guardrails currently in force for this project: the auto-promoted prevention rules, the reliability rules, and the promoted lessons behind them.
10
+
11
+ This command wraps existing ThumbGate capability — **no new logic**. It reads the live rule + lesson stores.
12
+
13
+ ## Steps
14
+
15
+ 1. List the active prevention rules with the `prevention_rules` MCP tool (or the CLI fallback `npx thumbgate rules`).
16
+ 2. Pull the reliability rules with `get_reliability_rules` to show which tool-call shapes are gated.
17
+ 3. For each rule, surface the lesson it came from with `search_lessons` so the user sees *why* the rule exists, not just *what* it blocks.
18
+ 4. Present a compact table:
19
+
20
+ | Rule / Gate | Blocks | From lesson | State |
21
+ |-------------|--------|-------------|-------|
22
+ | … | … | … | active / archived |
23
+
24
+ 5. If there are zero active rules, point the user to `/thumbgate-guard` to promote their first one.
25
+
26
+ ## Example
27
+
28
+ ```
29
+ /thumbgate-rules
30
+ ```
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "thumbgate",
3
- "description": "One \ud83d\udc4e becomes a hard rule the agent cannot bypass. Captures thumbs-down feedback, distills it into PreToolUse Pre-Action Checks, enforced across every future Claude Code session.",
4
- "version": "1.20.0",
3
+ "description": "One 👎 becomes a hard rule the agent cannot bypass. Captures thumbs-down feedback, distills it into PreToolUse Pre-Action Checks, enforced across every future Claude Code session.",
4
+ "version": "1.27.20",
5
5
  "author": {
6
6
  "name": "Igor Ganapolsky",
7
7
  "email": "ig5973700@gmail.com",
8
8
  "url": "https://thumbgate.ai"
9
9
  },
10
- "homepage": "https://thumbgate-production.up.railway.app",
10
+ "homepage": "https://thumbgate.ai",
11
11
  "repository": "https://github.com/IgorGanapolsky/ThumbGate",
12
12
  "license": "MIT",
13
13
  "category": "developer-tools",
@@ -28,6 +28,7 @@
28
28
  "memory"
29
29
  ],
30
30
  "skills": "./skills/",
31
+ "commands": "./.claude/commands/",
31
32
  "mcpServers": {
32
33
  "thumbgate": {
33
34
  "command": "npx",
@@ -0,0 +1 @@
1
+ 3588d0ad8f7b89fd7b9fbf771c1dd7dd09310e88aa6a7ae049b1decfa971650b
@@ -1,5 +1,5 @@
1
1
  # ThumbGate — Stop AI agents before they make costly mistakes.
2
- # https://thumbgate-production.up.railway.app
2
+ # https://thumbgate.ai
3
3
  # https://github.com/IgorGanapolsky/ThumbGate
4
4
  # https://www.npmjs.com/package/thumbgate
5
5
 
@@ -15,6 +15,7 @@
15
15
  - CLAUDE.md and .cursorrules files are suggestions agents can ignore
16
16
  - No memory between sessions means no learning from corrections
17
17
  - Teams have no shared safety rules across developers
18
+ - AI crawlers and agents create machine traffic without proving buyer intent; teams need AI-discoverable proof plus runtime gates before internal agents act
18
19
 
19
20
  ## How it works
20
21
 
@@ -24,6 +25,15 @@
24
25
  4. PreToolUse hooks block the pattern before it executes again
25
26
  5. Thompson Sampling adapts gate confidence over time
26
27
 
28
+ ## Agentic development cycle fit
29
+
30
+ ThumbGate maps to Guide, Generate, Verify, Solve by adding a pre-action execution gate:
31
+
32
+ - Guide: feedback and policies become concrete rules
33
+ - Generate: agents still produce plans, edits, and tool calls
34
+ - Verify: risky actions require evidence before execution
35
+ - Solve: blocked failures become reusable lessons and prevention gates
36
+
27
37
  ## Who it's for
28
38
 
29
39
  - Developers using Claude Code, Cursor, Codex, Gemini CLI, or any MCP-compatible agent
@@ -39,23 +49,34 @@ npx thumbgate init --agent claude-code
39
49
 
40
50
  ## Pricing
41
51
 
52
+ - ChatGPT App / GPT Action: https://thumbgate.ai/chatgpt-app
42
53
  - Free GPT: advice, checkpointing, and setup help in ChatGPT
43
- - Free local CLI: unlimited feedback captures, up to 5 active prevention rules, and local Pre-Action Checks after install (recall and lesson search are Pro-only)
44
- - Pro: $19/mo or $149/yr personal enforcement proof, local dashboard, check debugger, DPO export, and review-ready exports
45
- - Team: $49/seat/mo, 3-seat minimum after intake shared lessons, org visibility, approval boundaries, and rollout proof
54
+ - Codex Plugin: https://thumbgate.ai/codex-plugin
55
+ - Free local CLI: 2 captures/day, 10 total captures, up to 3 active auto-promoted prevention rules, and local Pre-Action Checks after install (recall and lesson search are Pro-only)
56
+ - Pro: $19/mo or $149/yr personal enforcement proof, local dashboard, check debugger, DPO export, synced lessons/rules across machines, and review-ready exports
57
+ - Enterprise: custom pricing, scoped after intake — shared hosted lesson database, org-wide dashboard, GCP/DFCX guardrails, VPC gating, and white-glove workflow hardening sprints
46
58
 
47
59
  ## Links
48
60
 
49
- - Agent discovery: https://thumbgate-production.up.railway.app/.well-known/mcp.json
50
- - Progressive tool index: https://thumbgate-production.up.railway.app/.well-known/mcp/tools.json
51
- - Context footprint report: https://thumbgate-production.up.railway.app/.well-known/mcp/footprint.json
52
- - Agent skills: https://thumbgate-production.up.railway.app/.well-known/mcp/skills.json
53
- - MCP applications: https://thumbgate-production.up.railway.app/.well-known/mcp/applications.json
54
- - Documentation: https://thumbgate-production.up.railway.app/guide
55
- - Dashboard: https://thumbgate-production.up.railway.app/dashboard
61
+ - Home: https://thumbgate.ai/
62
+ - Pricing: https://thumbgate.ai/pricing
63
+ - Pro checkout: https://thumbgate.ai/checkout/pro
64
+ - Agent discovery: https://thumbgate.ai/.well-known/mcp.json
65
+ - Progressive tool index: https://thumbgate.ai/.well-known/mcp/tools.json
66
+ - Context footprint report: https://thumbgate.ai/.well-known/mcp/footprint.json
67
+ - Headroom context compression guardrails: https://thumbgate.ai/guides/headroom-context-compression-guardrails
68
+ - Sovereign coding model guardrails: https://thumbgate.ai/guides/sovereign-coding-model-guardrails
69
+ - Agentic web governance: https://thumbgate.ai/guides/agentic-web-governance
70
+ - AI Mode ads and agent governance: https://thumbgate.ai/guides/ai-mode-ads-agent-governance
71
+ - MCP tool governance: https://thumbgate.ai/guides/mcp-tool-governance
72
+ - AI agent pre-action approval gates: https://thumbgate.ai/guides/ai-agent-pre-action-approval-gates
73
+ - Agent skills: https://thumbgate.ai/.well-known/mcp/skills.json
74
+ - MCP applications: https://thumbgate.ai/.well-known/mcp/applications.json
75
+ - Documentation: https://thumbgate.ai/guide
76
+ - Dashboard: https://thumbgate.ai/dashboard
56
77
  - GitHub: https://github.com/IgorGanapolsky/ThumbGate
57
78
  - npm: https://www.npmjs.com/package/thumbgate
58
- - Full LLM context: https://thumbgate-production.up.railway.app/public/llm-context.md
79
+ - Full LLM context: https://thumbgate.ai/llm-context.md
59
80
 
60
81
  ## Compared to alternatives
61
82
 
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "thumbgate",
3
- "version": "1.20.0",
3
+ "version": "1.27.20",
4
4
  "description": "ThumbGate — 👍👎 feedback that teaches your AI agent. Thumbs down a mistake, it never happens again.",
5
- "homepage": "https://thumbgate-production.up.railway.app",
5
+ "homepage": "https://thumbgate.ai",
6
6
  "transport": "stdio",
7
7
  "discovery": {
8
- "manifestUrl": "https://thumbgate-production.up.railway.app/.well-known/mcp.json",
9
- "toolIndexUrl": "https://thumbgate-production.up.railway.app/.well-known/mcp/tools.json",
10
- "toolSchemaUrlTemplate": "https://thumbgate-production.up.railway.app/.well-known/mcp/tools/{name}.json",
11
- "footprintUrl": "https://thumbgate-production.up.railway.app/.well-known/mcp/footprint.json",
12
- "skillsUrl": "https://thumbgate-production.up.railway.app/.well-known/mcp/skills.json",
13
- "applicationsUrl": "https://thumbgate-production.up.railway.app/.well-known/mcp/applications.json"
8
+ "manifestUrl": "https://thumbgate.ai/.well-known/mcp.json",
9
+ "toolIndexUrl": "https://thumbgate.ai/.well-known/mcp/tools.json",
10
+ "toolSchemaUrlTemplate": "https://thumbgate.ai/.well-known/mcp/tools/{name}.json",
11
+ "footprintUrl": "https://thumbgate.ai/.well-known/mcp/footprint.json",
12
+ "skillsUrl": "https://thumbgate.ai/.well-known/mcp/skills.json",
13
+ "applicationsUrl": "https://thumbgate.ai/.well-known/mcp/applications.json"
14
14
  }
15
15
  }