thumbgate 1.16.22 โ 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/.well-known/llms.txt +1 -1
- package/.well-known/mcp/server-card.json +1 -1
- package/README.md +11 -5
- package/adapters/claude/.mcp.json +2 -2
- package/adapters/mcp/server-stdio.js +1 -1
- package/adapters/opencode/opencode.json +1 -1
- package/config/github-about.json +1 -1
- package/package.json +5 -2
- package/public/blog.html +18 -19
- package/public/compare.html +2 -2
- package/public/guide.html +1 -1
- package/public/index.html +164 -418
- package/public/numbers.html +2 -2
- package/scripts/billing.js +62 -3
- package/scripts/rate-limiter.js +15 -15
- package/src/api/server.js +69 -18
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thumbgate-marketplace",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"owner": {
|
|
5
5
|
"name": "Igor Ganapolsky",
|
|
6
6
|
"email": "ig5973700@gmail.com"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"source": "npm",
|
|
14
14
|
"package": "thumbgate"
|
|
15
15
|
},
|
|
16
|
-
"version": "1.
|
|
16
|
+
"version": "1.17.0",
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "Igor Ganapolsky"
|
|
19
19
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thumbgate",
|
|
3
3
|
"description": "Type ๐ or ๐ on any agent action. ThumbGate captures it, distills a lesson, and blocks the pattern from repeating. One thumbs-down = the agent physically cannot make that mistake again. 33 pre-action checks, budget enforcement, self-protection, and NIST/SOC2 compliance tags.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.17.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Igor Ganapolsky"
|
|
7
7
|
},
|
package/.well-known/llms.txt
CHANGED
|
@@ -40,7 +40,7 @@ npx thumbgate init --agent claude-code
|
|
|
40
40
|
## Pricing
|
|
41
41
|
|
|
42
42
|
- Free GPT: advice, checkpointing, and setup help in ChatGPT
|
|
43
|
-
- Free local CLI:
|
|
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
44
|
- Pro: $19/mo or $149/yr โ personal enforcement proof, local dashboard, check debugger, DPO export, and review-ready exports
|
|
45
45
|
- Team: $49/seat/mo, 3-seat minimum after intake โ shared lessons, org visibility, approval boundaries, and rollout proof
|
|
46
46
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thumbgate",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"description": "ThumbGate โ ๐๐ feedback that teaches your AI agent. Thumbs down a mistake, it never happens again.",
|
|
5
5
|
"homepage": "https://thumbgate-production.up.railway.app",
|
|
6
6
|
"transport": "stdio",
|
package/README.md
CHANGED
|
@@ -146,6 +146,9 @@ Each recommendation ships with the benchmark commands to run next: feedback-deri
|
|
|
146
146
|
|-------|---------|
|
|
147
147
|
| **Claude Code** | `npx thumbgate init --agent claude-code` |
|
|
148
148
|
| **Cursor** | `npx thumbgate init --agent cursor` |
|
|
149
|
+
| **VS Code / Open VSX** | [plugins/vscode-extension/README.md](plugins/vscode-extension/README.md) |
|
|
150
|
+
| **Antigravity-compatible** | [plugins/antigravity-extension/INSTALL.md](plugins/antigravity-extension/INSTALL.md) |
|
|
151
|
+
| **JetBrains** | [plugins/jetbrains-plugin/README.md](plugins/jetbrains-plugin/README.md) |
|
|
149
152
|
| **Codex** | `npx thumbgate init --agent codex` |
|
|
150
153
|
| **Gemini CLI** | `npx thumbgate init --agent gemini` |
|
|
151
154
|
| **Amp** | `npx thumbgate init --agent amp` |
|
|
@@ -260,9 +263,9 @@ npx thumbgate bench --programbench-smoke # include cleanroom whole-repo proof l
|
|
|
260
263
|
| Org-wide dashboard | โ | โ | โ
|
|
|
261
264
|
| Approval + audit proof | โ | โ | โ
|
|
|
262
265
|
|
|
263
|
-
The free tier gives you
|
|
266
|
+
The free tier gives you unlimited feedback captures and up to 5 active auto-promoted prevention rules โ generous enough to make ThumbGate part of your daily flow. MCP integrations for all agents (Claude Code, Cursor, Codex, Gemini, Amp, Cline, OpenCode) ship free.
|
|
264
267
|
|
|
265
|
-
Pro ($19/mo or $149/yr)
|
|
268
|
+
Pro ($19/mo or $149/yr) removes the rule cap 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.
|
|
266
269
|
|
|
267
270
|
**Best first paid motion for teams:** the **Workflow Hardening Sprint** โ qualify one repeated failure before committing to a full rollout. **[Start intake โ](https://thumbgate-production.up.railway.app/?utm_source=github&utm_medium=readme&utm_campaign=team_rollout#workflow-sprint-intake)**
|
|
268
271
|
|
|
@@ -351,7 +354,7 @@ curl -X POST http://localhost:3456/v1/dpo/export \
|
|
|
351
354
|
| Layer | Technology |
|
|
352
355
|
|-------|-----------|
|
|
353
356
|
| **Storage** | SQLite + FTS5, LanceDB vectors, JSONL logs |
|
|
354
|
-
| **Capture** |
|
|
357
|
+
| **Capture** | Unlimited feedback captures (free + Pro) |
|
|
355
358
|
| **Intelligence** | MemAlign dual recall, Thompson Sampling |
|
|
356
359
|
| **Enforcement** | PreToolUse hook engine, Checks config |
|
|
357
360
|
| **Interfaces** | MCP stdio, HTTP API, CLI (Node.js >=18) |
|
|
@@ -374,6 +377,9 @@ Every Changeset is tied to the exact `main` merge commit and generates Verificat
|
|
|
374
377
|
- **[Open ThumbGate GPT](https://thumbgate-production.up.railway.app/go/gpt?utm_source=github&utm_medium=readme&utm_campaign=readme_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.
|
|
375
378
|
- **[Claude Desktop Extension](https://github.com/IgorGanapolsky/ThumbGate/releases/latest/download/thumbgate-claude-desktop.mcpb)** โ One-click install for Claude Desktop
|
|
376
379
|
- **[Codex Plugin](https://thumbgate-production.up.railway.app/codex-plugin)** โ Auto-updating standalone bundle and install page for Codex CLI
|
|
380
|
+
- **[VS Code / Open VSX Extension](plugins/vscode-extension/README.md)** โ Marketplace-ready MCP provider and `.vscode/mcp.json` fallback for VS Code-compatible IDEs
|
|
381
|
+
- **[Antigravity-compatible VSIX](plugins/antigravity-extension/INSTALL.md)** โ Open VSX/direct VSIX install path while Antigravity-specific marketplace support is still unproven
|
|
382
|
+
- **[JetBrains Plugin Scaffold](plugins/jetbrains-plugin/README.md)** โ IntelliJ/PyCharm Marketplace path for the same `thumbgate@latest` runtime
|
|
377
383
|
- **[Perplexity Command Center](docs/PERPLEXITY_MAX_COMMAND_CENTER.md)** โ AI-search visibility + lead discovery
|
|
378
384
|
- **[ThumbGate Bench](docs/THUMBGATE_BENCH.md)** โ Reliability benchmark and ProgramBench-style cleanroom proof lane
|
|
379
385
|
- **[Manus AI Skill](skills/thumbgate/SKILL.md)** โ ThumbGate integration for Manus AI agents
|
|
@@ -409,9 +415,9 @@ Those are suggestions the agent can ignore. ThumbGate checks are enforced โ th
|
|
|
409
415
|
If it supports MCP or pre-action hooks, yes. Claude Code, Claude Desktop, Cursor, Codex, Gemini CLI, Amp, Cline, OpenCode all work out of the box.
|
|
410
416
|
|
|
411
417
|
**Is it free?**
|
|
412
|
-
The free tier gives you
|
|
418
|
+
The free tier gives you unlimited feedback captures and up to 5 active auto-promoted prevention rules โ generous enough for solo devs to use daily. MCP integrations ship free for every agent.
|
|
413
419
|
|
|
414
|
-
Pro ($19/mo or $149/yr)
|
|
420
|
+
Pro ($19/mo or $149/yr) removes the rule cap 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.
|
|
415
421
|
|
|
416
422
|
---
|
|
417
423
|
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
"mcpServers": {
|
|
3
3
|
"thumbgate": {
|
|
4
4
|
"command": "npx",
|
|
5
|
-
"args": ["--yes", "--package", "thumbgate@1.
|
|
5
|
+
"args": ["--yes", "--package", "thumbgate@1.17.0", "thumbgate", "serve"]
|
|
6
6
|
}
|
|
7
7
|
},
|
|
8
8
|
"hooks": {
|
|
9
9
|
"preToolUse": {
|
|
10
10
|
"command": "npx",
|
|
11
|
-
"args": ["--yes", "--package", "thumbgate@1.
|
|
11
|
+
"args": ["--yes", "--package", "thumbgate@1.17.0", "thumbgate", "gate-check"]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -216,7 +216,7 @@ const {
|
|
|
216
216
|
finalizeSession: finalizeFeedbackSession,
|
|
217
217
|
} = require('../../scripts/feedback-session');
|
|
218
218
|
|
|
219
|
-
const SERVER_INFO = { name: 'thumbgate-mcp', version: '1.
|
|
219
|
+
const SERVER_INFO = { name: 'thumbgate-mcp', version: '1.17.0' };
|
|
220
220
|
const COMMERCE_CATEGORIES = [
|
|
221
221
|
'product_recommendation',
|
|
222
222
|
'brand_compliance',
|
package/config/github-about.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"repositoryUrl": "https://github.com/IgorGanapolsky/ThumbGate",
|
|
4
4
|
"homepageUrl": "https://thumbgate-production.up.railway.app",
|
|
5
5
|
"githubDescription": "Agent governance for ThumbGate: ๐/๐ become Pre-Action Checks that block repeat mistakes before code, money, or customer systems change.",
|
|
6
|
-
"metaDescription": "Stop paying for the same AI mistake twice. ThumbGate is machine-speed pre-action defense for AI coding agents: ๐ thumbs up and ๐ thumbs down become history-aware lessons, shared lessons and org visibility, actionable remediations, agent surface inventory, and Pre-Action Checks that block repeat mistakes before the next tool call across Claude Code, Cursor, Codex, Gemini, Amp, Cline, and OpenCode.",
|
|
6
|
+
"metaDescription": "Stop paying for the same AI mistake twice. ThumbGate is machine-speed pre-action defense for AI coding agents and vibe coding workflows: ๐ thumbs up and ๐ thumbs down become history-aware lessons, shared lessons and org visibility, actionable remediations, agent surface inventory, and Pre-Action Checks that block repeat mistakes before the next tool call across Claude Code, Cursor, Codex, Gemini, Amp, Cline, and OpenCode.",
|
|
7
7
|
"topics": [
|
|
8
8
|
"thumbgate",
|
|
9
9
|
"pre-action-checks",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thumbgate",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"description": "ThumbGate self-improving agent governance: thumbs-up/down turns every mistake into a prevention rule and blocks repeat patterns. 33 pre-action checks, budget enforcement, and self-protection for Claude Code, Cursor, Codex, Gemini CLI, and Amp.",
|
|
5
5
|
"homepage": "https://thumbgate-production.up.railway.app",
|
|
6
6
|
"repository": {
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"scripts/cli-feedback.js",
|
|
77
77
|
"scripts/cli-schema.js",
|
|
78
78
|
"scripts/cli-status.js",
|
|
79
|
+
"scripts/cli-test-block.js",
|
|
79
80
|
"scripts/cli-telemetry.js",
|
|
80
81
|
"scripts/cloudflare-dynamic-sandbox.js",
|
|
81
82
|
"scripts/code-mode-mcp-plan.js",
|
|
@@ -238,6 +239,7 @@
|
|
|
238
239
|
"build:claude-mcpb": "node scripts/build-claude-mcpb.js",
|
|
239
240
|
"build:claude-review-zip": "node scripts/build-claude-mcpb.js --review-zip",
|
|
240
241
|
"build:codex-plugin": "node scripts/build-codex-plugin.js",
|
|
242
|
+
"build:vscode-extension": "cd plugins/vscode-extension && npx --yes @vscode/vsce package",
|
|
241
243
|
"verify:quick": "node scripts/verify-run.js quick",
|
|
242
244
|
"verify:full": "node scripts/verify-run.js full",
|
|
243
245
|
"budget:status": "node scripts/budget-guard.js --status",
|
|
@@ -399,7 +401,7 @@
|
|
|
399
401
|
"test:loop": "node scripts/feedback-loop.js --test",
|
|
400
402
|
"test:dpo": "node scripts/export-dpo-pairs.js --test",
|
|
401
403
|
"test:kto": "node --test tests/export-kto.test.js",
|
|
402
|
-
"test:api": "node --test --test-concurrency=1 tests/api-server.test.js tests/api-events-sse.test.js tests/api-auth-config.test.js tests/mcp-server.test.js tests/adapters.test.js tests/openapi-parity.test.js tests/budget-guard.test.js tests/context-manager.test.js tests/contextfs.test.js tests/job-api.test.js tests/pack-templates.test.js tests/dashboard.test.js tests/dashboard-render-spec.test.js tests/dashboard-html.test.js tests/agent-readiness.test.js tests/mcp-policy.test.js tests/subagent-profiles.test.js tests/intent-router.test.js tests/internal-agent-bootstrap.test.js tests/lesson-search.test.js tests/thumbgate-search.test.js tests/document-intake.test.js tests/rubric-engine.test.js tests/self-healing-check.test.js tests/self-heal.test.js tests/feedback-schema.test.js tests/thompson-sampling.test.js tests/feedback-sequences.test.js tests/diversity-tracking.test.js tests/vector-store.test.js tests/gemini-embedding-policy.test.js tests/feedback-attribution.test.js tests/hybrid-feedback-context.test.js tests/loop-closure.test.js tests/code-reasoning.test.js tests/feedback-loop.test.js tests/feedback-inbox-read.test.js tests/feedback-to-memory.test.js tests/test-coverage.test.js tests/version-metadata.test.js tests/claude-mcpb.test.js tests/claude-codex-bridge.test.js tests/cursor-plugin.test.js tests/codex-plugin.test.js tests/telemetry-analytics.test.js tests/public-landing.test.js tests/lessons-page.test.js tests/pro-landing.test.js tests/local-model-profile.test.js tests/risk-scorer.test.js tests/context-compaction.test.js tests/reminder-engine.test.js tests/post-to-x.test.js tests/verification-loop.test.js tests/async-job-runner.test.js tests/commerce-quality.test.js tests/recall-limit.test.js tests/problem-detail.test.js tests/natural-language-harness.test.js tests/settings-hierarchy.test.js",
|
|
404
|
+
"test:api": "node --test --test-concurrency=1 tests/api-server.test.js tests/api-events-sse.test.js tests/api-auth-config.test.js tests/mcp-server.test.js tests/adapters.test.js tests/openapi-parity.test.js tests/budget-guard.test.js tests/context-manager.test.js tests/contextfs.test.js tests/job-api.test.js tests/pack-templates.test.js tests/dashboard.test.js tests/dashboard-render-spec.test.js tests/dashboard-html.test.js tests/agent-readiness.test.js tests/mcp-policy.test.js tests/subagent-profiles.test.js tests/intent-router.test.js tests/internal-agent-bootstrap.test.js tests/lesson-search.test.js tests/thumbgate-search.test.js tests/document-intake.test.js tests/rubric-engine.test.js tests/self-healing-check.test.js tests/self-heal.test.js tests/feedback-schema.test.js tests/thompson-sampling.test.js tests/feedback-sequences.test.js tests/diversity-tracking.test.js tests/vector-store.test.js tests/gemini-embedding-policy.test.js tests/feedback-attribution.test.js tests/hybrid-feedback-context.test.js tests/loop-closure.test.js tests/code-reasoning.test.js tests/feedback-loop.test.js tests/feedback-inbox-read.test.js tests/feedback-to-memory.test.js tests/test-coverage.test.js tests/version-metadata.test.js tests/claude-mcpb.test.js tests/claude-codex-bridge.test.js tests/cursor-plugin.test.js tests/codex-plugin.test.js tests/ide-marketplace-extensions.test.js tests/telemetry-analytics.test.js tests/public-landing.test.js tests/lessons-page.test.js tests/pro-landing.test.js tests/local-model-profile.test.js tests/risk-scorer.test.js tests/context-compaction.test.js tests/reminder-engine.test.js tests/post-to-x.test.js tests/verification-loop.test.js tests/async-job-runner.test.js tests/commerce-quality.test.js tests/recall-limit.test.js tests/problem-detail.test.js tests/natural-language-harness.test.js tests/settings-hierarchy.test.js",
|
|
403
405
|
"test:proof": "node --test tests/prove-adapters.test.js tests/prove-attribution.test.js tests/prove-cloudflare-sandbox.test.js tests/prove-data-quality.test.js tests/prove-intelligence.test.js tests/prove-lancedb.test.js tests/prove-loop-closure.test.js tests/prove-training-export.test.js tests/prove-local-intelligence.test.js tests/prove-workflow-contract.test.js tests/prove-autoresearch.test.js tests/prove-claim-verification.test.js tests/prove-data-pipeline.test.js tests/prove-evolution.test.js tests/prove-harnesses.test.js tests/prove-packaged-runtime.test.js tests/prove-runtime.test.js tests/prove-seo-gsd.test.js tests/prove-settings.test.js tests/prove-xmemory.test.js && node --test tests/prove-automation.test.js",
|
|
404
406
|
"test:e2e": "node --test tests/e2e-pipeline.test.js tests/e2e-product-flows.test.js tests/e2e-coverage-contract.test.js",
|
|
405
407
|
"test:rlaif": "node --test tests/rlaif-self-audit.test.js tests/dpo-optimizer.test.js tests/meta-policy.test.js tests/agent-reward-model.test.js",
|
|
@@ -435,6 +437,7 @@
|
|
|
435
437
|
"feedback:summary": "npm run test:api && node scripts/feedback-to-rules.js",
|
|
436
438
|
"feedback:rules": "node scripts/feedback-to-rules.js --rules",
|
|
437
439
|
"feedback:stats": "node .claude/scripts/feedback/capture-feedback.js --stats",
|
|
440
|
+
"test-block": "node bin/cli.js test-block",
|
|
438
441
|
"demo:narration": "node scripts/render-demo-video/generate-narration.js",
|
|
439
442
|
"demo:render": "node scripts/render-demo-video/render.js",
|
|
440
443
|
"demo:render:full": "npm run demo:narration && npm run demo:render",
|
package/public/blog.html
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@type": "Blog",
|
|
33
33
|
"name": "ThumbGate Blog",
|
|
34
34
|
"url": "https://thumbgate-production.up.railway.app/blog",
|
|
35
|
-
"publisher": { "@type": "Organization", "name": "
|
|
35
|
+
"publisher": { "@type": "Organization", "name": "ThumbGate" },
|
|
36
36
|
"blogPost": [
|
|
37
37
|
{
|
|
38
38
|
"@type": "BlogPosting",
|
|
@@ -293,15 +293,17 @@
|
|
|
293
293
|
<h2>The Claude Code Leak Proves Why Pre-Action Checks Matter</h2>
|
|
294
294
|
|
|
295
295
|
<p>
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
296
|
+
A public Claude Code packaging incident showed why local agent
|
|
297
|
+
guardrails need to be evaluated as runtime behavior, not only as
|
|
298
|
+
documentation. When implementation details move quickly, teams need a
|
|
299
|
+
way to verify what their agents are allowed to do before the next tool
|
|
300
|
+
call runs.
|
|
300
301
|
</p>
|
|
301
302
|
|
|
302
303
|
<p>
|
|
303
|
-
|
|
304
|
-
|
|
304
|
+
The lesson for agent builders is practical: permissions, hooks, retry
|
|
305
|
+
loops, and local memory are product surfaces. Treat them as governed
|
|
306
|
+
workflow boundaries, not as invisible plumbing.
|
|
305
307
|
</p>
|
|
306
308
|
|
|
307
309
|
<h3>What the leak revealed about agent security</h3>
|
|
@@ -343,9 +345,9 @@
|
|
|
343
345
|
</p>
|
|
344
346
|
|
|
345
347
|
<p>
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
348
|
+
Agents are powerful but fallible software. Memory without enforcement
|
|
349
|
+
is a suggestion. ThumbGate adds a pre-action check layer so repeated
|
|
350
|
+
mistakes can be caught before execution.
|
|
349
351
|
</p>
|
|
350
352
|
|
|
351
353
|
<a class="cta" href="https://www.npmjs.com/package/thumbgate"
|
|
@@ -367,12 +369,10 @@
|
|
|
367
369
|
|
|
368
370
|
<h3>The problem we didn't see</h3>
|
|
369
371
|
<p>
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
the
|
|
373
|
-
|
|
374
|
-
nobody reaches is irrelevant. We were optimizing a storefront in a
|
|
375
|
-
building with no door.
|
|
372
|
+
The problem we missed was structural: users can arrive through npm or
|
|
373
|
+
the GitHub README, run <code>npx thumbgate init</code>, use the free
|
|
374
|
+
local install, and never visit the landing page. A checkout flow that
|
|
375
|
+
only exists on the website is easy for CLI-first users to miss.
|
|
376
376
|
</p>
|
|
377
377
|
|
|
378
378
|
<h3>Gate reasoning chains</h3>
|
|
@@ -429,8 +429,7 @@
|
|
|
429
429
|
|
|
430
430
|
<h3>The funnel fix</h3>
|
|
431
431
|
<p>
|
|
432
|
-
Four touchpoints now put the checkout URL
|
|
433
|
-
actually are:
|
|
432
|
+
Four touchpoints now put the checkout URL closer to the CLI workflow:
|
|
434
433
|
</p>
|
|
435
434
|
<ul>
|
|
436
435
|
<li>
|
|
@@ -467,7 +466,7 @@
|
|
|
467
466
|
<a href="https://github.com/IgorGanapolsky/ThumbGate">GitHub</a> ยท
|
|
468
467
|
<a href="https://x.com/IgorGanapolsky">X</a> ยท
|
|
469
468
|
<a href="https://www.linkedin.com/in/igorganapolsky">LinkedIn</a>
|
|
470
|
-
<br /><br />ยฉ 2026
|
|
469
|
+
<br /><br />ยฉ 2026 ThumbGate ยท MIT License
|
|
471
470
|
</div>
|
|
472
471
|
</footer>
|
|
473
472
|
</body>
|
package/public/compare.html
CHANGED
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"name": "Is ThumbGate free?",
|
|
63
63
|
"acceptedAnswer": {
|
|
64
64
|
"@type": "Answer",
|
|
65
|
-
"text": "ThumbGate has a free tier that includes local enforcement with
|
|
65
|
+
"text": "ThumbGate has a free tier that includes local enforcement with unlimited feedback captures, up to 5 active auto-promoted prevention rules, and pre-action check blocking. Pro ($19/mo or $149/yr) adds a personal local dashboard, recall, lesson search, unlimited rules, and DPO export. Team rollout ($49/seat/mo) adds a shared lesson database and org dashboard."
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
{
|
|
@@ -299,7 +299,7 @@
|
|
|
299
299
|
|
|
300
300
|
<div class="card">
|
|
301
301
|
<h3>Is ThumbGate free?</h3>
|
|
302
|
-
<p>ThumbGate has a free tier that includes local enforcement with
|
|
302
|
+
<p>ThumbGate has a free tier that includes local enforcement with unlimited feedback captures, up to 5 active auto-promoted prevention rules, and pre-action check blocking. Pro ($19/mo or $149/yr) adds a personal local dashboard, recall, lesson search, unlimited rules, and DPO export. Team rollout ($49/seat/mo) adds a shared lesson database and org dashboard.</p>
|
|
303
303
|
</div>
|
|
304
304
|
|
|
305
305
|
<div class="card">
|
package/public/guide.html
CHANGED
|
@@ -356,7 +356,7 @@ npx thumbgate init --agent gemini</code></pre>
|
|
|
356
356
|
<a href="https://buy.stripe.com/00w14neyUcXA5pL5e33sI0e" class="cta cta-secondary">Pay $499 diagnostic</a>
|
|
357
357
|
<a href="https://buy.stripe.com/fZu9AT76saPsg4pbCr3sI0f" class="cta cta-secondary">Pay $1500 sprint</a>
|
|
358
358
|
<a href="https://thumbgate.ai/#workflow-sprint-intake" class="cta cta-secondary">Send workflow first</a>
|
|
359
|
-
<p style="color:var(--muted); font-size:0.85rem;">Free:
|
|
359
|
+
<p style="color:var(--muted); font-size:0.85rem;">Free: unlimited captures, 5 active prevention rules, hook blocking. Pro: dashboard, recall, lesson search, unlimited rules, DPO export. Team: intake first, then $49/seat/mo with a 3-seat minimum.</p>
|
|
360
360
|
|
|
361
361
|
</div>
|
|
362
362
|
</body>
|