freshcrate
Home > MCP Servers > ThumbGate

ThumbGate

Self-improving agent governance: ๐Ÿ‘/๐Ÿ‘Ž โ†’ Pre-Action Gates that block repeat AI mistakes. Stop paying for the same mistake twice.

Description

Self-improving agent governance: ๐Ÿ‘/๐Ÿ‘Ž โ†’ Pre-Action Gates that block repeat AI mistakes. Stop paying for the same mistake twice.

README

ThumbGate

Your AI coding bill has a leak.

Stop paying $ for the same AI mistake.

Every retry loop, every hallucinated import, every "let me try a different approach" โ€” those are billable tokens on every LLM vendor's bill. Thumbs-down once; ThumbGate blocks that exact mistake on every future call. Across Claude Code, Cursor, Codex, Gemini, Amp, OpenCode โ€” any MCP-compatible agent, forever.

Under the hood: your thumbs-down becomes a Pre-Action Gate that physically blocks the pattern permanently on every future call โ€” across every session, every model, every agent. It is self-improving agent governance: every correction promotes a fresh prevention rule, and your library of Pre-Action Gates grows stronger with every lesson. Works with Claude Code, Cursor, Codex, Gemini CLI, Amp, OpenCode, and any MCP-compatible agent. The monthly Anthropic / OpenAI bill stops paying for the same lesson over and over โ€” local-first enforcement, zero tokens spent on repeats.

Prevent expensive AI mistakes. Make AI stop repeating mistakes. Turn a smart assistant into a reliable operator.

Mission: make AI coding affordable by making sure you never pay for the same mistake twice.

CI npm License: MIT


๐ŸŽฌ 90-second demo

Watch the force-push scenario: agent tries to git push --force, one thumbs-down, next session it's blocked โ€” zero tokens spent on the repeat.

โ–ถ Watch the 90-second demo ยท Script ยท ElevenLabs narration: npm run demo:voiceover


First-dollar activation path

If someone is not already bought into ThumbGate, do not lead with architecture. Lead with one repeated mistake.

  1. Show the pain: open the ThumbGate GPT and paste the bad answer, risky command, deploy, PR action, or agent plan before it runs again.
  2. Capture the lesson: type thumbs down: or thumbs up: with one concrete sentence. Native ChatGPT rating buttons are not the ThumbGate capture path; typed feedback is.
  3. Enforce the repeat: run npx thumbgate init where the agent executes so the lesson can become a Pre-Action Gate instead of another reminder.
  4. Upgrade only after proof: Solo Pro is for the dashboard, DPO export, proof-ready evidence, and higher capture limits after one real blocked repeat. Team starts with the Workflow Hardening Sprint around one repeated failure, one owner, and one proof review.

The buying question is simple: what repeated AI mistake would be worth blocking before the next tool call?


The Problem โ€” the bill nobody talks about

Frontier-model calls are not cheap. Sonnet 4.5 is ~$3 / 1M input tokens and ~$15 / 1M output tokens. Opus is 5ร— that. Every time your agent:

  • hallucinates a function name and you have to correct it,
  • retries the same failing tool call until it gives up,
  • regenerates a 4,000-token plan you already approved last session,
  • repeats a destructive command you blocked manually yesterday,

โ€ฆyou are paying for that round-trip. Twice if it retries. Three times if you re-prompt. And the agent has no memory across sessions, so the meter resets every Monday.

Session 1:  Agent force-pushes to main.     You fix it.    +4,200 tokens
Session 2:  Agent force-pushes again.       You fix it.    +4,200 tokens
Session 3:  Same mistake. Again.            You lose 45m.  +5,800 tokens

That's ~$0.21 in tokens just to fix the same mistake three times โ€” multiplied by every developer, every repeated-mistake class, every week. The math gets ugly fast.

The Solution โ€” fix it once, the bill never sees it again

Session 1:  Agent force-pushes to main.     You ๐Ÿ‘Ž it.       +4,200 tokens
Session 2:  โ›” Gate blocks the force-push.  Zero round-trip. +0 tokens
Session 3+: Never happens again.                              +0 tokens

One thumbs-down. The PreToolUse hook intercepts the call before it reaches the model โ€” no input tokens, no output tokens, no retry loop. The dashboard tracks tokens saved this week as a live counter so you can see exactly what your prevention rules are worth. Mark a review checkpoint once, and the dashboard narrows the next pass to only the feedback, lessons, and gate blocks that landed since your last review.

ThumbGate doesn't make your agent smarter. It makes your agent cheaper to be wrong with.


Quick Start

npx thumbgate init       # auto-detects your agent, wires everything
npx thumbgate capture "Never run DROP on production tables"

That single command creates a gate rule. Next time any AI agent tries to run DROP on production:

โ›” Gate blocked: "Never run DROP on production tables"
   Pattern: DROP.*production
   Verdict: BLOCK

Architecture

ThumbGate operates as a 4-layer enforcement stack between your AI agent and your codebase:

ThumbGate Architecture

Layer 1: Feedback Capture

Your thumbs-up/down reactions are captured via MCP protocol, CLI, or the ChatGPT GPT surface. Each reaction is stored as a structured lesson with context, timestamp, and severity.

Layer 2: Gate Engine

The gate engine converts lessons into enforceable rules using pattern matching, semantic similarity (via LanceDB vectors), and Thompson Sampling for adaptive rule selection. Rules are stored locally in .thumbgate/gates/.

Layer 3: Pre-Action Interception

Before any agent action executes, ThumbGate's PreToolUse hook intercepts the command and evaluates it against all active gates. This happens at the MCP protocol level โ€” the agent physically cannot bypass it.

Layer 4: Multi-Agent Distribution

Gates are distributed across all connected agents via MCP stdio protocol. One correction in Claude Code protects Cursor, Codex, Gemini CLI, and any MCP-compatible agent.

Prompt engineering still matters, but it is only the starting point. ThumbGate adds prompt evaluation on top: proof lanes, benchmarks, and self-heal checks tell you whether your prompt and workflow actually held up under execution instead of leaving you to guess from vibes.

Feedback Pipeline

Agent Integration


Install for Your Agent

Agent Command
Claude Code npx thumbgate init --agent claude-code
Cursor npx thumbgate init --agent cursor
Codex npx thumbgate init --agent codex
Gemini CLI npx thumbgate init --agent gemini
Amp npx thumbgate init --agent amp
Claude Desktop Download extension bundle
Any MCP agent npx thumbgate serve

Works with Claude Code, Cursor, Codex, Gemini CLI, Amp, OpenCode, and any MCP-compatible agent.

Status bar proof

Claude Code ThumbGate footer

Codex ThumbGate test lane

Claude renders the live ThumbGate footer today. npx thumbgate init --agent codex now installs the full Codex hook bundle and writes the ThumbGate statusLine target into ~/.codex/config.json so you can test it on your local Codex build immediately.

Install Codex Plugin

Open the Codex plugin install page or download the standalone bundle from GitHub Releases. The Codex launcher resolves thumbgate@latest when MCP and hooks start, so published npm fixes reach active Codex installs without hand-editing ~/.codex/config.toml.

  1. Install page: thumbgate-production.up.railway.app/codex-plugin
  2. Direct zip: thumbgate-codex-plugin.zip
  3. Follow: plugins/codex-profile/INSTALL.md

How It Works

  STEP 1              STEP 2                 STEP 3
  โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€            โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€               โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

  You react           ThumbGate learns       The gate holds

  ๐Ÿ‘Ž on a bad    โ”€โ”€โ–บ  Feedback becomes  โ”€โ”€โ–บ  Next time the
  agent action        a saved lesson         agent tries the
                      and a block rule       same thing:
  ๐Ÿ‘ on a good   โ”€โ”€โ–บ  Good pattern gets      โ›” BLOCKED
  agent action        reinforced                 (or โœ… allowed)

No manual rule-writing. No config files. Your reactions teach the agent what your team actually wants.


ThumbGate sells three concrete outcomes:

  • Prevent expensive AI mistakes โ€” catch bad commands, destructive database actions, unsafe publishes, and risky API calls before they run.
  • Make AI stop repeating mistakes โ€” fix it once, turn the lesson into a rule, and block the repeat before the next tool call lands.
  • Turn AI into a reliable operator โ€” move from a smart assistant that apologizes after damage to a production-ready operator with checkpoints, proof, and enforcement.
  • Measure prompts instead of rewriting them blindly โ€” use proof lanes, ThumbGate Bench, and self-heal:check to evaluate whether prompts and workflows actually improved behavior.

Use Cases

  • Stop force-push to main โ€” Gate blocks git push --force on protected branches before it runs
  • Prevent repeated migration failures โ€” Each mistake becomes a searchable lesson that fires before the next attempt
  • Block unauthorized file edits โ€” Control which files agents can touch with path-based rules
  • Memory across sessions โ€” The agent remembers your feedback from yesterday
  • Shared team safety โ€” One developer's thumbs-down protects the whole team
  • Auto-improving without feedback โ€” Self-improvement mode evaluates outcomes and generates rules automatically

Built-in Gates

โ›” force-push          โ†’ blocks git push --force
โ›” protected-branch    โ†’ blocks direct push to main
โ›” unresolved-threads  โ†’ blocks push with open reviews
โ›” package-lock-reset  โ†’ blocks destructive lock edits
โ›” env-file-edit       โ†’ blocks .env secret exposure

+ custom gates in config/gates/custom.json

CLI Reference

npx thumbgate init       # detect agent, wire hooks
npx thumbgate doctor     # health check
npx thumbgate capture    # create a gate from text
npx thumbgate lessons    # see what's been learned
npx thumbgate explore    # terminal explorer for lessons, gates, stats
npx thumbgate dashboard  # open local dashboard
npx thumbgate serve      # start MCP server on stdio
npx thumbgate bench      # run reliability benchmark

Pricing

Free Pro ($19/mo) Team ($49/seat/mo)
Local CLI + enforced gates โœ… โœ… โœ…
Feedback captures (lifetime) 3 Unlimited Unlimited
Auto-promoted prevention rules 1 Unlimited Unlimited
MCP agent integrations All All All
Personal dashboard โ€” โœ… โœ…
DPO export (model fine-tuning) โ€” โœ… โœ…
Team lesson export/import โ€” โœ… โœ…
Shared hosted lesson DB โ€” โ€” โœ…
Org-wide dashboard โ€” โ€” โœ…
Approval + audit proof โ€” โ€” โœ…

The free tier gives you 3 lifetime feedback captures and 1 auto-promoted prevention rule โ€” enough to prove the enforcement loop works. MCP integrations for all agents (Claude Code, Cursor, Codex, Gemini, Amp, OpenCode) ship free.

Pro ($19/mo or $149/yr) lifts those caps and adds history-aware lesson recall, lesson search, DPO export, and a personal dashboard. Team ($49/seat/mo) adds a shared hosted lesson DB, org dashboard, and shared enforcement across the org. Pro and Team include open_feedback_session, append_feedback_context, and finalize_feedback_session for structured multi-turn feedback capture.

Best first paid motion for teams: the Workflow Hardening Sprint โ€” qualify one repeated failure before committing to a full rollout. Start intake โ†’

Best first technical motion: install the CLI-first and let init wire hooks for the agent you already use.

Paid path for individual operators: ThumbGate Pro is the self-serve side lane for a personal dashboard and export-ready evidence.

Start free ยท See Pro ยท Team Sprint intake


Team Lesson Sharing (Pro + Team)

One team's hard-won lessons shouldn't stay trapped on one laptop. ThumbGate Pro and Team can export lessons as portable bundles and import them into any other ThumbGate instance โ€” so a mistake caught by Team A becomes a prevention rule for Team B.

Export lessons from one project:

curl -X POST http://localhost:3456/v1/lessons/export \
  -H "Authorization: Bearer $THUMBGATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"outputPath": "./lessons-export.json"}'

Filter by signal or tags:

curl -X POST http://localhost:3456/v1/lessons/export \
  -H "Authorization: Bearer $THUMBGATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"signal": "down", "tags": ["push-notifications", "ci"]}'

Import into another team's ThumbGate:

curl -X POST http://localhost:3456/v1/lessons/import \
  -H "Authorization: Bearer $THUMBGATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d @lessons-export.json

What happens on import:

  • Deduplication โ€” lessons with the same ID or title+signal are skipped
  • Provenance tracking โ€” every imported lesson is tagged team-import with original source project, export timestamp, and original ID
  • No overwrite โ€” import is additive; existing lessons are never modified

The export bundle includes full lesson metadata: signal, title, context, tags, failure type, skill, structured rules, and diagnosis. It's the same data you see in the lesson detail dashboard โ€” portable as JSON.

Use cases:

  • Share enforcement patterns across repos in the same org
  • Onboard a new team with pre-built lessons from a mature project
  • Export lessons before a project handoff so institutional knowledge transfers
  • Feed lessons from multiple teams into a centralized DPO training pipeline

DPO Export for Fine-Tuning (Pro + Team)

Every thumbs-up and thumbs-down becomes a training signal. ThumbGate Pro exports your captured feedback as DPO (Direct Preference Optimization) pairs โ€” ready to feed into a LoRA fine-tune so your model stops repeating known mistakes at the weight level, not just the gate level.

Export DPO pairs:

curl -X POST http://localhost:3456/v1/dpo/export \
  -H "Authorization: Bearer $THUMBGATE_API_KEY" \
  -o dpo-pairs.jsonl

What you get: JSONL where each line is a preference pair:

  • chosen โ€” the agent action you thumbed up
  • rejected โ€” the action you thumbed down for the same task context
  • prompt โ€” the originating user intent

Use cases:

  • Fine-tune Llama 3 / Mistral / local models with a LoRA adapter trained on your real mistakes
  • Feed into RLAIF or KTO pipelines (KTO export also available via /v1/kto/export)
  • Build a model that natively avoids your team's known failure patterns โ€” no gate at inference time needed

Why this matters: Gates block mistakes. Fine-tuning prevents them from being attempted. Combine both for belt-and-suspenders governance.


Tech Stack

Layer Technology
Storage SQLite + FTS5, LanceDB vectors, JSONL logs
Capture 3 feedback captures lifetime (free), unlimited (Pro)
Intelligence MemAlign dual recall, Thompson Sampling
Enforcement PreToolUse hook engine, Gates config
Interfaces MCP stdio, HTTP API, CLI (Node.js >=18)
Billing Stripe
Execution Railway, Cloudflare Workers, Docker Sandboxes
Governance Workflow Sentinel, control plane, Docker Sandboxes

Every Changeset is tied to the exact main merge commit and generates Verification Evidence for Release Confidence.


Popular buyer questions: Stop repeated AI agent mistakes ยท Autoresearch agent safety ยท Cursor guardrails ยท Codex CLI guardrails ยท Gemini CLI memory + enforcement

Workflow Hardening Sprint ยท Live Dashboard


Integrations

  • Open ThumbGate GPT โ€” ThumbGate GPT: start here. Paste agent actions, get advice + checkpointing. No, users do not have to keep chatting inside the ThumbGate GPT to use ThumbGate โ€” the hard enforcement layer still runs where the work happens.
  • Claude Desktop Extension โ€” One-click install for Claude Desktop
  • Codex Plugin โ€” Auto-updating standalone bundle and install page for Codex CLI
  • Perplexity Command Center โ€” AI-search visibility + lead discovery
  • ThumbGate Bench โ€” Reliability benchmark for gate evaluation
  • Manus AI Skill โ€” ThumbGate integration for Manus AI agents

Feedback Sessions

Give the agent more context when a thumbs-down isn't enough:

๐Ÿ‘Ž thumbs down
  โ””โ”€โ–บ open_feedback_session
        โ””โ”€โ–บ "you lied about deployment"    (append_feedback_context)
        โ””โ”€โ–บ "tests were actually failing"  (append_feedback_context)
        โ””โ”€โ–บ finalize_feedback_session
              โ””โ”€โ–บ lesson inferred from full conversation

Free and self-hosted users can invoke search_lessons directly through MCP, and via the CLI with npx thumbgate lessons. History-aware feedback sessions give the agent full context for each lesson.


FAQ

Is ThumbGate a model fine-tuning tool? No. ThumbGate does not update model weights. It captures feedback, stores lessons, injects context at runtime, and blocks bad actions before they execute.

How is this different from CLAUDE.md or .cursorrules? Those are suggestions the agent can ignore. ThumbGate gates are enforced โ€” they physically block the action before it runs. They also auto-generate from feedback instead of requiring manual writing.

Does it work with my agent? If it supports MCP or pre-action hooks, yes. Claude Code, Claude Desktop, Cursor, Codex, Gemini CLI, Amp, OpenCode all work out of the box.

Is it free? The free tier gives you 3 lifetime feedback captures and 1 auto-promoted prevention rule โ€” enough to prove the enforcement loop works. MCP integrations ship free for every agent.

Pro ($19/mo or $149/yr) lifts those caps and adds history-aware lesson recall, lesson search, and a personal dashboard. Team ($49/seat/mo) adds a shared hosted lesson DB, org dashboard, and shared enforcement.


Docs


License

MIT. See LICENSE.

Release History

VersionChangesUrgencyDate
v1.14.1# thumbgate@1.14.1 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.14.1 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.14.1 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.14.0...v1.14.1 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24695366288 - npm published at: 2026-04-20T23:21:52.146Z - npm shasum: `0dd89428d1fdc2a1a1896312ad6b33d1e18e7358` - npm tarball: https://registry.npmjs.org/thumbgateHigh4/20/2026
v1.14.0# thumbgate@1.14.0 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.14.0 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.14.0 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.13.0...v1.14.0 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24694451887 - npm published at: 2026-04-20T22:53:04.213Z - npm shasum: `132e7b8f9b7620332b0d2bd37649c98429800448` - npm tarball: https://registry.npmjs.org/thumbgateHigh4/20/2026
v1.13.0# thumbgate@1.13.0 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.13.0 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.13.0 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.12.2...v1.13.0 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24693134002 - npm published at: 2026-04-20T22:15:30.984Z - npm shasum: `0f88c042f4b9e9a3f5127b542a1c3ac439929f3f` - npm tarball: https://registry.npmjs.org/thumbgateHigh4/20/2026
v1.12.2# thumbgate@1.12.2 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.12.2 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.12.2 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.12.1...v1.12.2 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24686140167 - npm published at: 2026-04-20T19:31:16.173Z - npm shasum: `1446be1087e3802e668bfc1e20bc38ebd53c9694` - npm tarball: https://registry.npmjs.org/thumbgateHigh4/20/2026
v1.12.1# thumbgate@1.12.1 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.12.1 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.12.1 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.12.0...v1.12.1 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24683850168 - npm published at: 2026-04-20T18:39:25.559Z - npm shasum: `cad178e6098e7bf3385f22238135f6e0072f7707` - npm tarball: https://registry.npmjs.org/thumbgateHigh4/20/2026
v1.12.0# thumbgate@1.12.0 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.12.0 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.12.0 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.11.1...v1.12.0 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24680361780 - npm published at: 2026-04-20T17:21:24.152Z - npm shasum: `3e4157ac9409635a2a0f1a3c25763637c0ff39be` - npm tarball: https://registry.npmjs.org/thumbgateHigh4/20/2026
v1.11.1# thumbgate@1.11.1 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.11.1 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.11.1 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.11.0...v1.11.1 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24678862974 - npm published at: 2026-04-20T16:48:27.419Z - npm shasum: `5e0a8032ff71d76902cfdbfb1f5ce0d557b5040e` - npm tarball: https://registry.npmjs.org/thumbgateHigh4/20/2026
v1.11.0# thumbgate@1.11.0 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.11.0 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.11.0 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.10.1...v1.11.0 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24673220917 - npm published at: 2026-04-20T14:50:24.322Z - npm shasum: `f7bc98f50940c4b47949ef93325b1f4e2122e70f` - npm tarball: https://registry.npmjs.org/thumbgateHigh4/20/2026
v1.10.1# thumbgate@1.10.1 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.10.1 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.10.1 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.9.0...v1.10.1 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24649905220 - npm published at: 2026-04-20T05:24:58.617Z - npm shasum: `02455711284fe30ded80b6e711eeca214dd14248` - npm tarball: https://registry.npmjs.org/thumbgate/High4/20/2026
v1.9.0# thumbgate@1.9.0 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.9.0 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.9.0 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.8.0...v1.9.0 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24645400274 - npm published at: 2026-04-20T02:20:15.658Z - npm shasum: `f98b34ef347380f42f7a52ed6e119e24f8513768` - npm tarball: https://registry.npmjs.org/thumbgate/-/thHigh4/20/2026
v1.8.0# thumbgate@1.8.0 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.8.0 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.8.0 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.7.0...v1.8.0 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24643992529 - npm published at: 2026-04-20T01:18:26.894Z - npm shasum: `84d565fb5fb27831df7e098e79d1d9e7dd0906ee` - npm tarball: https://registry.npmjs.org/thumbgate/-/thHigh4/20/2026
v1.7.0# thumbgate@1.7.0 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.7.0 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.7.0 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.6.0...v1.7.0 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24617269043 - npm published at: 2026-04-19T00:31:13.596Z - npm shasum: `5f6501bc691fe119c7636ac0fc4ef2ebc03a689a` - npm tarball: https://registry.npmjs.org/thumbgate/-/thHigh4/19/2026
v1.6.0# thumbgate@1.6.0 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.6.0 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.6.0 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.5.8...v1.6.0 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24615891351 - npm published at: 2026-04-18T23:04:06.366Z - npm shasum: `498206642719a266186dbdfce1b7f3f5dc15df07` - npm tarball: https://registry.npmjs.org/thumbgate/-/thHigh4/18/2026
v1.5.8# thumbgate@1.5.8 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.5.8 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.5.8 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.5.4...v1.5.8 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24535069445 - npm published at: 2026-04-16T21:32:11.063Z - npm shasum: `2a37fb8fa800128a13968481073104f111716506` - npm tarball: https://registry.npmjs.org/thumbgate/-/thHigh4/16/2026
v1.5.4# thumbgate@1.5.4 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.5.4 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.5.4 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.5.3...v1.5.4 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24530745019 - npm published at: 2026-04-16T19:52:25.949Z - npm shasum: `16292275174d1b8f7179ab7ac1721d2edfae3eca` - npm tarball: https://registry.npmjs.org/thumbgate/-/thHigh4/16/2026
v1.5.3# thumbgate@1.5.3 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.5.3 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.5.3 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.5.2...v1.5.3 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24530345652 - npm published at: 2026-04-16T19:43:28.823Z - npm shasum: `24c55ecd7c43fb4e0f6a7c0366b268085bfc2568` - npm tarball: https://registry.npmjs.org/thumbgate/-/thHigh4/16/2026
v1.5.2# thumbgate@1.5.2 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.5.2 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.5.2 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.5.1...v1.5.2 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24525342298 - npm published at: 2026-04-16T17:50:02.888Z - npm shasum: `b4a2e3fa92b1c9c444a73440d702cb918c6108b5` - npm tarball: https://registry.npmjs.org/thumbgate/-/thHigh4/16/2026
v1.5.1# thumbgate@1.5.1 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.5.1 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.5.1 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.5.0...v1.5.1 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24522055102 - npm published at: 2026-04-16T16:35:20.572Z - npm shasum: `2c8ead2ee399f9bf4ccb0489bc5ac8fb4f1557ca` - npm tarball: https://registry.npmjs.org/thumbgate/-/thHigh4/16/2026
v1.5.0# thumbgate@1.5.0 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.5.0 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.5.0 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.4.6...v1.5.0 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24420027751 - npm published at: 2026-04-14T19:59:44.911Z - npm shasum: `9cf4516aa205383eb17741d59292641c1125ba8b` - npm tarball: https://registry.npmjs.org/thumbgate/-/thMedium4/14/2026
v1.4.6# thumbgate@1.4.6 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.4.6 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.4.6 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.4.5...v1.4.6 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24410268228 - Release ref: c988ea8e1a074250ccd7157e01cd5e0be8aa9e1e ## Full Changeset Release Notes ### Patch Changes #### .changeset/first-party-link-router.md Add fMedium4/14/2026
v1.4.5# thumbgate@1.4.5 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.4.5 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.4.5 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.4.4...v1.4.5 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24408978735 - Release ref: 83ec53dff0da18e41ccccc12f8563b0d84a53076 ## Full Changeset Release Notes ### Patch Changes #### .changeset/costly-agent-mistakes.md Lead puMedium4/14/2026
v1.4.4# thumbgate@1.4.4 ## Release Links - npm: https://www.npmjs.com/package/thumbgate/v/1.4.4 - GitHub Release: https://github.com/IgorGanapolsky/ThumbGate/releases/tag/v1.4.4 - Compare: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.4.3...v1.4.4 - Publish workflow: https://github.com/IgorGanapolsky/ThumbGate/actions/runs/24403949822 - Release ref: a1828a97028f5ec82ceced3657d7fe3f09d00126 ## Full Changeset Release Notes ### Patch Changes #### .changeset/slim-npm-package-boundary.md Slim thMedium4/14/2026
v1.4.3## What's Changed * feat: add Perplexity command center by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/788 * chore(deps): bump better-sqlite3 from 12.8.0 to 12.9.0 by @dependabot[bot] in https://github.com/IgorGanapolsky/ThumbGate/pull/757 * fix: trim env vars + X auth debug in ralph-mode-ci by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/778 * chore(deps-dev): bump @changesets/changelog-github from 0.5.2 to 0.6.0 by @dependabot[bot] in https://githMedium4/14/2026
v1.4.1## What's Changed * feat: harden Claude plugin listing readiness by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/739 * fix: isolate test fixtures from environment signing and learned policy state by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/741 * feat: wire up hosted billing with operator key for CFO dashboard by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/743 * fix: respect HTTPS_PROXY in fetch for hosted billing summary bMedium4/13/2026
v1.4.0## What's Changed * feat: team governance pivot, AEO, LinkedIn fix by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/656 * fix: serve llms.txt from public route (no auth) by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/668 * chore: retry published runtime smoke after npm propagation by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/670 * fix: copy .well-known/ into Docker image for llms.txt by @IgorGanapolsky in https://github.com/Medium4/10/2026
v1.3.0## What's Changed * fix: add lessons + dashboard to Claude Code statusline by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/640 * feat: integrate GLM 5.1 as zero-cost local frontier tier by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/643 * fix: resolve pre-existing test failures (signing, DNS hang, sqlite) by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/645 * fix: prevent packaged runtime release regressions by @IgorGanapolsky Medium4/9/2026
v1.2.0## What's Changed * fix: restore release verification parity by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/636 * feat: add changesets for auditable release management by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/637 * feat: AI SEO comparison page + visibility tracker by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/638 * [codex] add Docker sandbox routing and release changesets by @IgorGanapolsky in https://github.com/IgorGMedium4/8/2026
v1.1.0## What's Changed * feat: HuggingFace dataset exporter for agent traces by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/633 * chore(release): v1.1.0 โ€” HuggingFace export + unified context by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/635 **Full Changelog**: https://github.com/IgorGanapolsky/ThumbGate/compare/v1.0.0...v1.1.0Medium4/8/2026
v1.0.0## What's Changed * feat: add durable hosted jobs for exports and harnesses by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/628 * [codex] add workflow sentinel safeguards by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/629 * feat: ForgeCode adapter, Plausible analytics, YouTube Shorts, daily revenue loop by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/625 * chore(release): cut ThumbGate 1.0.0 by @IgorGanapolsky in https://githuMedium4/8/2026
v0.9.14## What's Changed * feat: add buyer-intent GEO visibility pages by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/619 * fix: close all duplicate-posting code paths by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/618 * fix: extend railway rollout verification window by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/621 * fix: scope ThumbGate status and dashboard to active project by @IgorGanapolsky in https://github.com/IgorGanapolsMedium4/8/2026
v0.9.13## What's Changed * fix: auto-include conversation window in capture_feedback by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/616 **Full Changelog**: https://github.com/IgorGanapolsky/ThumbGate/compare/v0.9.12...v0.9.13Medium4/8/2026
v0.9.12## What's Changed * fix: wire all 6 platforms + dedup guard + automation workflows by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/611 * fix: harden published runtime and statusline fallback by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/614 **Full Changelog**: https://github.com/IgorGanapolsky/ThumbGate/compare/v0.9.11...v0.9.12Medium4/8/2026
v0.9.11## What's Changed * chore: remove legacy Railway env aliases by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/597 * feat: reposition landing page around bad AI PRs by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/600 * feat: overhaul social posting strategy based on top SaaS research by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/602 * Harden ThumbGate governance and release integrity by @IgorGanapolsky in https://github.com/IgoMedium4/8/2026
v0.9.10## What's Changed * chore(deps): Bump actions/checkout from 4 to 6 by @dependabot[bot] in https://github.com/IgorGanapolsky/ThumbGate/pull/584 * chore(deps): Bump getsentry/action-release from 1 to 3 by @dependabot[bot] in https://github.com/IgorGanapolsky/ThumbGate/pull/583 * fix(feedback): infer tags for promotable signals by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/588 * fix(audit): harden coverage and verification gates by @IgorGanapolsky in https://github.com/IgorMedium4/6/2026
v0.9.9## What's Changed * docs: update README, landing page, About for v0.9.9 by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/556 * feat: per-step scoring โ€” OpenClaw-RL binary signals from audit trail by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/557 * feat(cli): add top-level activate command + evergreen landing page label by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/558 * feat: weekly auto-post โ€” build-in-public stats every MoMedium4/6/2026
v0.9.8## What's Changed * refactor: move Pro overlay out of public repo by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/553 * feat: ADK-style progressive disclosure โ€” L3 resources, skill factory, token metrics by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/554 **Full Changelog**: https://github.com/IgorGanapolsky/ThumbGate/compare/v0.9.7...v0.9.8Medium4/3/2026
v0.9.7## What's Changed * feat: add Cloudflare dynamic sandbox dispatch lane by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/548 * security: remove hardcoded bypass secrets from public code by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/543 * feat: prompt-level DLP โ€” real-time PII scan, shadow detection, governance score by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/549 * feat: in-app feedback widget + MCP tool for user issue repoMedium4/3/2026
v0.9.6## What's Changed * feat: social analytics observability by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/528 * fix(lessons): make all stat cards clickable by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/531 * feat: social media assets for Instagram and TikTok by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/527 * fix: harden conversation feedback pipeline follow-up by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGatMedium4/3/2026
v0.9.5## What's Changed * docs: v0.9.5 โ€” README, landing page, GitHub About, version sync by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/529 **Full Changelog**: https://github.com/IgorGanapolsky/ThumbGate/compare/v0.9.4...v0.9.5Medium4/3/2026
v0.9.4## What's Changed * feat: data governance โ€” interaction data preferences, PII-gated exports by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/514 * feat: add predictive insights pipeline by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/515 * feat: hallucination detector โ€” claim verification, confidence gates, grounding by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/516 * feat: lesson inference โ€” context extraction, lesson linkingMedium4/3/2026
v0.9.3## What's Changed * test: add coverage for 0.9.0 fixes by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/511 **Full Changelog**: https://github.com/IgorGanapolsky/ThumbGate/compare/v0.9.2...v0.9.3Medium4/2/2026
v0.9.2## What's Changed * feat: AI Control Tower + v0.9.1 docs/publish by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/510 **Full Changelog**: https://github.com/IgorGanapolsky/ThumbGate/compare/v0.9.0...v0.9.2Medium4/2/2026
v0.9.0## What's Changed * feat: add IndexCache-aware local routing by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/507 * feat: MetaClaw-inspired features โ€” skill packs, eval harness, slow loop, metered billing, daily digest by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/508 * chore: bump to 0.9.0 โ€” fix MCP tool stalling by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/509 **Full Changelog**: https://github.com/IgorGanapolsky/ThumbGMedium4/2/2026
v0.8.9## What's Changed * fix: skip railway deploy for non-runtime changes by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/501 * fix: detect non-runtime deploy changes reliably by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/502 * fix: diff deploy scope against push range by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/503 * feat: REST API fallback for feedback capture + statusline auto-refresh by @IgorGanapolsky in https://github.coMedium4/2/2026
v0.8.8## What's Changed * feat: structured pre-gate reasoning (Meta semi-formal prompting) by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/493 * feat: /learn content hub โ€” 3 SEO articles for long-tail growth by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/492 * feat: add natural-language harness runtime by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/494 * feat: hero headers to differentiate Dashboard vs Lessons by @IgorGanapolsky inMedium4/2/2026
v0.8.7## What's Changed * feat: rich quick-feedback confirmation page with context input, undo, and animations by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/476 * feat: /lessons page โ€” Active Rules, Timeline, Insights by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/481 * fix: wire live lessons page and harden statusline tests by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/482 * fix: isolate rate-limiter tests from saved Pro licensMedium4/1/2026
v0.8.6## What's Changed * fix: harden workflow trust and permissions by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/439 * feat: enforce free/pro npm publish parity by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/440 * fix: reduce CI runner waste โ€” 29 fewer runs/day by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/441 * fix: sharpen pricing to convert free users to Pro by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/Medium4/1/2026
v0.8.5## What's Changed * feat: add research-backed autoresearch and remove aider by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/381 * fix: skip npm publish on already-released versions by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/382 * feat: wire new Stripe product (ThumbGate Pro) by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/383 * fix: enforce github about congruence by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThuMedium3/31/2026
v0.8.4## What's Changed * feat: clickable stat cards filter demo results by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/374 * feat: deployment verification gate โ€” no more lying about done by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/375 * fix: stat card highlights the clicked card, not the wrong one by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/376 * feat: rebrand README to ThumbGate + dashboard demo + test sync by @IgorGanapolMedium3/27/2026
v0.8.3## What's Changed * fix: Railway deploy uses --detach to avoid build log streaming errors by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/362 * feat: Pro dashboard + honest pricing + clickable landing page by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/363 * fix: dashboard explains API key and DPO export for users by @IgorGanapolsky in https://github.com/IgorGanapolsky/ThumbGate/pull/364 * feat: demo-mode dashboard + Pro CLI upgrade flow by @IgorGanMedium3/26/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

JobForgeAI-powered job search automation โ€” evaluate offers, generate ATS-optimized CVs, scan portals, negotiate, and track applications. One config drives OpenCode, Cursor, Claude Code, and Codex. Free end-tov2.14.4
@actwith-ai/mcp-serverGive your AI agent a career. Persistent memory, reputation, expertise, and community โ€” for any MCP-compatible AI agent.0.15.1
speclockAI Constraint Engine by Sandeep Roy โ€” stops AI from breaking what you locked. 100/100 on Claude's adversarial test suite. 42 MCP tools. Works with Bolt.new, Lovable, Claude Code, Cursor. Free & open sv5.5.2
cursor-claude-messengerMCP server for AI agent-to-agent messaging, backed by Beads0.3.1
supersetCode Editor for the AI Agents Era - Run an army of Claude Code, Codex, etc. on your machinedesktop-v1.5.8