thumbgate 1.16.13 → 1.16.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.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/.well-known/mcp/server-card.json +1 -1
- package/README.md +3 -1
- package/adapters/claude/.mcp.json +2 -2
- package/adapters/mcp/server-stdio.js +26 -1
- package/adapters/opencode/opencode.json +1 -1
- package/bin/cli.js +420 -1
- package/bin/postinstall.js +2 -2
- package/config/gate-templates.json +372 -0
- package/config/mcp-allowlists.json +25 -0
- package/config/model-candidates.json +59 -2
- package/config/model-tiers.json +4 -1
- package/package.json +79 -22
- package/public/compare.html +6 -0
- package/public/index.html +153 -20
- package/public/numbers.html +6 -6
- package/public/pro.html +25 -27
- package/scripts/agent-design-governance.js +211 -0
- package/scripts/agent-reasoning-traces.js +683 -0
- package/scripts/agent-reward-model.js +438 -0
- package/scripts/agent-stack-survival-audit.js +231 -0
- package/scripts/ai-engineering-stack-guardrails.js +256 -0
- package/scripts/billing.js +33 -5
- package/scripts/chatgpt-ads-readiness-pack.js +195 -0
- package/scripts/cli-schema.js +277 -0
- package/scripts/code-graph-guardrails.js +176 -0
- package/scripts/commercial-offer.js +1 -1
- package/scripts/deepseek-v4-runtime-guardrails.js +253 -0
- package/scripts/gemini-embedding-policy.js +198 -0
- package/scripts/inference-cache-policy.js +39 -0
- package/scripts/judge-reward-function.js +396 -0
- package/scripts/llm-behavior-monitor.js +251 -0
- package/scripts/long-running-agent-context-guardrails.js +176 -0
- package/scripts/multimodal-retrieval-plan.js +31 -11
- package/scripts/oss-pr-opportunity-scout.js +240 -0
- package/scripts/proactive-agent-eval-guardrails.js +230 -0
- package/scripts/profile-router.js +5 -4
- package/scripts/prompting-operating-system.js +273 -0
- package/scripts/proxy-pointer-rag-guardrails.js +189 -0
- package/scripts/rag-precision-guardrails.js +202 -0
- package/scripts/rate-limiter.js +1 -1
- package/scripts/reasoning-efficiency-guardrails.js +176 -0
- package/scripts/reward-hacking-guardrails.js +251 -0
- package/scripts/seo-gsd.js +1201 -11
- package/scripts/single-use-credential-gate.js +182 -0
- package/scripts/structured-prompt-driven.js +226 -0
- package/scripts/telemetry-analytics.js +108 -6
- package/scripts/tool-registry.js +92 -0
- package/scripts/upstream-contribution-engine.js +379 -0
- package/scripts/vector-store.js +119 -4
- package/src/api/server.js +455 -143
- package/scripts/agents-sdk-sandbox-plan.js +0 -57
- package/scripts/ai-org-governance.js +0 -98
- package/scripts/artifact-agent-plan.js +0 -81
- package/scripts/enterprise-agent-rollout.js +0 -34
- package/scripts/experience-replay-governance.js +0 -69
- package/scripts/inference-economics.js +0 -53
- package/scripts/knowledge-layer-plan.js +0 -108
- package/scripts/memory-store-governance.js +0 -60
- package/scripts/post-training-governance.js +0 -34
- package/scripts/production-agent-readiness.js +0 -40
- package/scripts/scaling-law-claims.js +0 -60
- package/scripts/student-consistent-training.js +0 -73
package/public/index.html
CHANGED
|
@@ -397,6 +397,15 @@ __GA_BOOTSTRAP__
|
|
|
397
397
|
.btn-pro-page:hover { opacity: 0.9; transform: translateY(-1px); }
|
|
398
398
|
.btn-gpt-page { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; background: var(--green); color: #06120a; border-radius: 8px; text-decoration: none; font-size: 16px; font-weight: 800; box-shadow: 0 0 0 1px rgba(74,222,128,0.32), 0 12px 32px rgba(74,222,128,0.18); transition: opacity 0.15s, transform 0.15s; }
|
|
399
399
|
.btn-gpt-page:hover { opacity: 0.92; transform: translateY(-1px); }
|
|
400
|
+
.hero-paid-path { max-width: 780px; margin: 0 auto 28px; padding: 16px; border: 1px solid rgba(74,222,128,0.28); border-radius: 12px; background: rgba(74,222,128,0.07); display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 14px; align-items: center; text-align: left; }
|
|
401
|
+
.hero-paid-path strong { display: block; color: var(--text); font-size: 15px; line-height: 1.3; margin-bottom: 3px; }
|
|
402
|
+
.hero-paid-path span { color: var(--text-muted); font-size: 13px; line-height: 1.45; }
|
|
403
|
+
.hero-paid-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
|
|
404
|
+
.hero-paid-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 9px 13px; border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 800; white-space: nowrap; }
|
|
405
|
+
.hero-paid-actions .starter { background: #facc15; color: #17110a; border: 1px solid rgba(250,204,21,0.55); }
|
|
406
|
+
.hero-paid-actions .diagnostic { background: var(--green); color: #06120a; border: 1px solid rgba(74,222,128,0.45); }
|
|
407
|
+
.hero-paid-actions .sprint { color: var(--green); border: 1px solid rgba(74,222,128,0.45); background: rgba(17,17,19,0.72); }
|
|
408
|
+
.hero-paid-actions .intake { color: var(--cyan); border: 1px solid rgba(34,211,238,0.45); background: rgba(34,211,238,0.1); }
|
|
400
409
|
.hero-paid-note { font-size: 14px; color: var(--text-muted); max-width: 720px; margin: 0 auto 24px; }
|
|
401
410
|
.hero-paid-note strong { color: var(--text); }
|
|
402
411
|
.hero-install { background: var(--bg-raised); border: 1px solid var(--border); border-radius: 10px; padding: 14px 24px; display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 15px; margin-bottom: 40px; cursor: pointer; transition: border-color 0.2s; position: relative; max-width: 100%; overflow-x: auto; }
|
|
@@ -552,6 +561,10 @@ __GA_BOOTSTRAP__
|
|
|
552
561
|
.team-paid-price { color: var(--green); font-weight: 800; font-size: 18px; }
|
|
553
562
|
.team-paid-link { display: block; text-align: center; padding: 10px 12px; background: rgba(74,222,128,0.16); color: var(--green); border: 1px solid rgba(74,222,128,0.45); border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700; }
|
|
554
563
|
.team-paid-link:hover { border-color: var(--green); transform: translateY(-1px); }
|
|
564
|
+
.team-intake-recovery { margin: 0 0 16px; padding: 13px 14px; border: 1px solid rgba(34,211,238,0.28); border-radius: 12px; background: rgba(34,211,238,0.08); display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left; }
|
|
565
|
+
.team-intake-recovery strong { display: block; color: var(--text); font-size: 13px; margin-bottom: 2px; }
|
|
566
|
+
.team-intake-recovery span { display: block; color: var(--text-dim); font-size: 12px; line-height: 1.45; }
|
|
567
|
+
.team-intake-recovery a { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(34,211,238,0.45); color: var(--cyan); background: rgba(17,17,19,0.68); text-decoration: none; font-size: 12px; font-weight: 800; white-space: nowrap; }
|
|
555
568
|
.team-form { max-width: 860px; margin: 24px auto 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
|
|
556
569
|
.team-intake-panel .team-form { max-width: none; margin: 0; }
|
|
557
570
|
.team-form .full { grid-column: 1 / -1; }
|
|
@@ -618,10 +631,15 @@ __GA_BOOTSTRAP__
|
|
|
618
631
|
.team-intake-panel-head { display: block; }
|
|
619
632
|
.team-intake-badge { display: inline-block; margin-bottom: 10px; }
|
|
620
633
|
.team-paid-path { grid-template-columns: 1fr; }
|
|
634
|
+
.team-intake-recovery { align-items: stretch; flex-direction: column; text-align: center; }
|
|
635
|
+
.team-intake-recovery a { width: 100%; }
|
|
621
636
|
.team-form { grid-template-columns: 1fr; }
|
|
622
637
|
.hero { padding: 72px 0 56px; }
|
|
623
638
|
.hero-actions { flex-direction: column; }
|
|
624
639
|
.hero-actions a { width: 100%; }
|
|
640
|
+
.hero-paid-path { grid-template-columns: 1fr; text-align: center; }
|
|
641
|
+
.hero-paid-actions { justify-content: center; }
|
|
642
|
+
.hero-paid-actions a { width: 100%; }
|
|
625
643
|
.nav-links a:not(.nav-cta) { display: none; }
|
|
626
644
|
.proof-bar { gap: 8px; justify-content: flex-start; }
|
|
627
645
|
.proof-bar a { width: 100%; min-height: 42px; white-space: normal; }
|
|
@@ -678,7 +696,7 @@ __GA_BOOTSTRAP__
|
|
|
678
696
|
<div id="pro-pitch" style="max-width:820px;margin:0 auto 32px;padding:24px 28px;background:linear-gradient(180deg,rgba(17,17,19,0.94) 0%,rgba(22,22,24,0.94) 100%);border:1px solid rgba(34,211,238,0.32);border-radius:20px;box-shadow:0 0 0 1px rgba(34,211,238,0.18),0 24px 64px rgba(0,0,0,0.35);text-align:left;">
|
|
679
697
|
<div style="display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:16px;">
|
|
680
698
|
<div>
|
|
681
|
-
<div style="display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:999px;border:1px solid rgba(34,211,238,0.25);background:var(--cyan-dim);color:var(--cyan);font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;">
|
|
699
|
+
<div style="display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:999px;border:1px solid rgba(34,211,238,0.25);background:var(--cyan-dim);color:var(--cyan);font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;">Pay-now Pro</div>
|
|
682
700
|
<h2 style="margin:10px 0 4px;font-size:22px;letter-spacing:-0.025em;line-height:1.2;">Go Pro — one correction, every agent, every session.</h2>
|
|
683
701
|
<p style="margin:0;font-size:13px;color:var(--text-muted);">Personal local dashboard · DPO export from real corrections · founder support on risky flows.</p>
|
|
684
702
|
</div>
|
|
@@ -699,7 +717,21 @@ __GA_BOOTSTRAP__
|
|
|
699
717
|
<a href="/checkout/pro?utm_source=website&utm_medium=hero_pricing_card&utm_campaign=pro_pack&cta_id=hero_pro_annual&cta_placement=hero_pricing&plan_id=pro&billing_cycle=annual&landing_path=%2F" onclick="posthog.capture('hero_pricing_annual_click',{cta:'choose_annual'})" style="display:inline-flex;align-items:center;gap:6px;padding:11px 20px;background:rgba(17,17,19,0.75);color:var(--text);border:1px solid var(--border);border-radius:999px;text-decoration:none;font-weight:700;font-size:14px;white-space:nowrap;">Choose annual →</a>
|
|
700
718
|
</div>
|
|
701
719
|
</div>
|
|
702
|
-
<p style="margin:14px 0 0;font-size:11px;color:var(--text-muted);text-align:center;">
|
|
720
|
+
<p style="margin:14px 0 0;font-size:11px;color:var(--text-muted);text-align:center;">Card required · billed today · cancel anytime · your rules and captures stay local. <a href="/go/install" style="color:var(--cyan);text-decoration:none;">Prefer free? Install CLI →</a></p>
|
|
721
|
+
</div>
|
|
722
|
+
|
|
723
|
+
<div class="hero-paid-path" aria-label="Paid AI agent governance sprint checkout options">
|
|
724
|
+
<div>
|
|
725
|
+
<strong>Need buyer-ready proof today?</strong>
|
|
726
|
+
<span>Send one messy AI-agent workflow. We turn it into clear rules, examples, and pre-action checks, plus AI Agent Governance Sprint approval boundaries and rollback safety before it touches developer-machine risk surfaces.</span>
|
|
727
|
+
</div>
|
|
728
|
+
<div class="hero-paid-actions">
|
|
729
|
+
<a class="starter" href="https://buy.stripe.com/7sY4gzgH24r49G17mb3sI0g" onclick="sendFirstPartyTelemetry('founder_workflow_diagnostic_checkout_started',{ctaId:'hero_founder_workflow_diagnostic_checkout',ctaPlacement:'hero_paid_path',planId:'team',offer:'founder_workflow_diagnostic',price:99});sendGa4Event('begin_checkout',{currency:'USD',value:99,items:[{item_id:'founder_workflow_diagnostic',item_name:'Founder Workflow Diagnostic'}]});">Pay $99 diagnostic →</a>
|
|
730
|
+
<a class="diagnostic" href="__SPRINT_DIAGNOSTIC_CHECKOUT_URL__" onclick="sendFirstPartyTelemetry('workflow_sprint_diagnostic_checkout_started',{ctaId:'hero_workflow_sprint_diagnostic_checkout',ctaPlacement:'hero_paid_path',planId:'team',offer:'workflow_hardening_diagnostic',price:sprintDiagnosticPriceDollars});sendGa4Event('begin_checkout',{currency:'USD',value:sprintDiagnosticPriceDollars,items:[{item_id:'workflow_hardening_diagnostic',item_name:'Workflow Hardening Diagnostic'}]});">Pay $499 diagnostic →</a>
|
|
731
|
+
<a class="sprint" href="__WORKFLOW_SPRINT_CHECKOUT_URL__" onclick="sendFirstPartyTelemetry('workflow_sprint_checkout_started',{ctaId:'hero_workflow_sprint_checkout',ctaPlacement:'hero_paid_path',planId:'team',offer:'workflow_hardening_sprint',price:workflowSprintPriceDollars});sendGa4Event('begin_checkout',{currency:'USD',value:workflowSprintPriceDollars,items:[{item_id:'workflow_hardening_sprint',item_name:'Workflow Hardening Sprint'}]});">Pay $1500 sprint →</a>
|
|
732
|
+
<a class="intake" href="#workflow-sprint-intake" onclick="sendFirstPartyTelemetry('workflow_sprint_recovery_intake_clicked',{ctaId:'hero_workflow_sprint_recovery_intake',ctaPlacement:'hero_paid_path',planId:'team',offer:'workflow_hardening_sprint',reason:'not_ready_to_pay'});sendGa4Event('generate_lead',{currency:'USD',value:0,method:'workflow_sprint_recovery_intake'});">Send workflow first →</a>
|
|
733
|
+
<a class="starter" href="/guides/ai-agent-governance-sprint">See sprint scope →</a>
|
|
734
|
+
</div>
|
|
703
735
|
</div>
|
|
704
736
|
|
|
705
737
|
<a href="/dashboard" class="hero-dashboard-preview" style="display:block;max-width:620px;margin:0 auto 28px;background:linear-gradient(135deg,#0d1220 0%,#121a2e 100%);border:1px solid rgba(34,211,238,0.35);border-radius:12px;padding:20px 24px;box-shadow:0 0 48px rgba(34,211,238,0.15);font-family:var(--mono);text-align:left;text-decoration:none;color:inherit;" title="Open your live dashboard">
|
|
@@ -741,7 +773,7 @@ __GA_BOOTSTRAP__
|
|
|
741
773
|
<span class="copy-hint">click to copy</span>
|
|
742
774
|
</div>
|
|
743
775
|
<a href="/go/install?utm_source=website&utm_medium=hero_cta&utm_campaign=install_free&cta_id=hero_install_cli&cta_placement=hero" onclick="posthog.capture('hero_install_click',{cta:'install_cli'})" class="btn-gpt-page btn-install-hero" style="font-size:18px;padding:16px 36px;">Install Free CLI</a>
|
|
744
|
-
<a href="/go/pro?utm_source=website&utm_medium=hero_cta&utm_campaign=pro_upgrade&cta_id=hero_go_pro&cta_placement=hero&plan_id=pro&landing_path=%2F" onclick="posthog.capture('hero_pro_click',{cta:'go_pro'})" class="btn-pro-page" style="font-size:18px;padding:16px 32px;background:linear-gradient(135deg,#f59e0b 0%,#ef4444 100%);color:#fff;font-weight:700;border-radius:10px;box-shadow:0 0 32px rgba(239,68,68,0.35);display:inline-flex;align-items:center;gap:8px;">Start
|
|
776
|
+
<a href="/go/pro?utm_source=website&utm_medium=hero_cta&utm_campaign=pro_upgrade&cta_id=hero_go_pro&cta_placement=hero&plan_id=pro&landing_path=%2F" onclick="posthog.capture('hero_pro_click',{cta:'go_pro'})" class="btn-pro-page" style="font-size:18px;padding:16px 32px;background:linear-gradient(135deg,#f59e0b 0%,#ef4444 100%);color:#fff;font-weight:700;border-radius:10px;box-shadow:0 0 32px rgba(239,68,68,0.35);display:inline-flex;align-items:center;gap:8px;">Start Pro — $19/mo <span style="font-size:12px;opacity:0.85;font-weight:500;">→</span></a>
|
|
745
777
|
<div class="hero-secondary-ctas" style="display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:8px;opacity:0.7;">
|
|
746
778
|
<a href="https://github.com/IgorGanapolsky/ThumbGate/releases/latest/download/thumbgate-claude-desktop.mcpb" class="btn-gpt-page" target="_blank" rel="noopener" onclick="posthog.capture('hero_claude_extension_click',{cta:'install_claude_extension'})" style="font-size:12px;padding:8px 16px;background:#d97706;color:#fff;box-shadow:none;">Install Claude Extension</a>
|
|
747
779
|
<a href="/go/github?utm_source=website&utm_medium=hero_cta&utm_campaign=github_repo&cta_id=hero_star_github&cta_placement=hero" target="_blank" rel="noopener" class="btn-free" style="display:inline-flex;align-items:center;gap:6px;padding:8px 14px;border-radius:999px;font-size:12px;">⭐ Star on GitHub</a>
|
|
@@ -760,7 +792,7 @@ __GA_BOOTSTRAP__
|
|
|
760
792
|
<div id="demo" style="margin:28px auto 0;max-width:560px;text-align:center;" onclick="posthog.capture('hero_demo_view')">
|
|
761
793
|
<div style="font-size:13px;color:var(--text-muted);margin-bottom:8px;letter-spacing:0.04em;text-transform:uppercase;">▶ 90-second demo · force-push → 👎 → blocked</div>
|
|
762
794
|
<video src="/assets/tiktok-agent-memory.mp4" controls playsinline preload="metadata" poster="/assets/instagram-card.png" style="width:100%;max-width:560px;border-radius:12px;border:1px solid var(--border);background:#000;box-shadow:0 10px 40px rgba(0,0,0,0.4);"></video>
|
|
763
|
-
<a href="/checkout/pro?utm_source=website&utm_medium=hero_demo&utm_campaign=pro_trial&cta_id=hero_post_demo" onclick="posthog.capture('hero_cta_click',{cta:'start_trial_post_demo'})" style="display:inline-block;margin-top:14px;color:var(--cyan);font-size:14px;font-weight:700;text-decoration:none;">→ Start
|
|
795
|
+
<a href="/checkout/pro?utm_source=website&utm_medium=hero_demo&utm_campaign=pro_trial&cta_id=hero_post_demo" onclick="posthog.capture('hero_cta_click',{cta:'start_trial_post_demo'})" style="display:inline-block;margin-top:14px;color:var(--cyan);font-size:14px;font-weight:700;text-decoration:none;">→ Start Pro</a>
|
|
764
796
|
</div>
|
|
765
797
|
<p style="font-size:13px;color:var(--text-muted);margin:8px auto 28px;max-width:560px;">Your agent has no memory. Every session, the same wrong pattern runs. ThumbGate turns a single correction into a permanent block — before the next tool call fires. <a href="#pricing" style="color:var(--cyan);text-decoration:none;">See all plans →</a></p>
|
|
766
798
|
<div class="first-check-card" id="first-check">
|
|
@@ -984,6 +1016,10 @@ __GA_BOOTSTRAP__
|
|
|
984
1016
|
<h3>🧱 Isolated Execution Lanes</h3>
|
|
985
1017
|
<p>High-risk local autonomy can route into Docker Sandboxes, while hosted team automations use a signed sandbox dispatch lane instead of running loose on a shared host.</p>
|
|
986
1018
|
</div>
|
|
1019
|
+
<div class="agent-card">
|
|
1020
|
+
<h3>Data Processing Boundaries</h3>
|
|
1021
|
+
<p>Local enforcement data stays in the operator's ThumbGate feedback directory by default. Hosted checkout, intake, newsletter, team sync, and product analytics are labeled as hosted processing surfaces instead of being blurred into the local runtime.</p>
|
|
1022
|
+
</div>
|
|
987
1023
|
<div class="agent-card">
|
|
988
1024
|
<h3>🧪 Thompson Sampling</h3>
|
|
989
1025
|
<p>Confidence tiers (none/low/medium/high) tell you when to trust the model vs fall back to rules. No guessing.</p>
|
|
@@ -1070,6 +1106,96 @@ __GA_BOOTSTRAP__
|
|
|
1070
1106
|
<p>Keep global prompts lean, load MCP schemas on demand, and turn harness lessons into Pre-Action Checks that block repeat failures.</p>
|
|
1071
1107
|
<div class="card-arrow">Audit your harness →</div>
|
|
1072
1108
|
</a>
|
|
1109
|
+
<a class="seo-card" href="/guides/code-knowledge-graph-guardrails">
|
|
1110
|
+
<div class="seo-kicker">Knowledge Graphs</div>
|
|
1111
|
+
<h3>Code Knowledge Graph Guardrails</h3>
|
|
1112
|
+
<p>Use code graphs for context, then enforce diff-impact review, cross-layer checkpoints, and generated-artifact protection before agents act.</p>
|
|
1113
|
+
<div class="card-arrow">Turn graph context into gates →</div>
|
|
1114
|
+
</a>
|
|
1115
|
+
<a class="seo-card" href="/guides/developer-machine-supply-chain-guardrails">
|
|
1116
|
+
<div class="seo-kicker">Supply Chain</div>
|
|
1117
|
+
<h3>Developer Machine Supply Chain Guardrails</h3>
|
|
1118
|
+
<p>Stop AI assistants from amplifying npm, PyPI, Docker, and CLI compromise paths that harvest local developer credentials.</p>
|
|
1119
|
+
<div class="card-arrow">Gate risky local execution →</div>
|
|
1120
|
+
</a>
|
|
1121
|
+
<a class="seo-card" href="/guides/prompt-tricks-to-workflow-rules">
|
|
1122
|
+
<div class="seo-kicker">Prompt ROI</div>
|
|
1123
|
+
<h3>Prompt Tricks Are Not Enough</h3>
|
|
1124
|
+
<p>Turn clear instructions, examples, and repeated AI failures into workflow rules that run before the next risky tool call.</p>
|
|
1125
|
+
<div class="card-arrow">Convert prompts into gates →</div>
|
|
1126
|
+
</a>
|
|
1127
|
+
<a class="seo-card" href="/guides/semantic-programmatic-seo-guardrails">
|
|
1128
|
+
<div class="seo-kicker">Semantic pSEO</div>
|
|
1129
|
+
<h3>Semantic Programmatic SEO Guardrails</h3>
|
|
1130
|
+
<p>Scale SEO pages with authority maps, brand context governance, semantic internal links, and technical publish checks before AI content goes live.</p>
|
|
1131
|
+
<div class="card-arrow">Govern scaled content →</div>
|
|
1132
|
+
</a>
|
|
1133
|
+
<a class="seo-card" href="/guides/proxy-pointer-rag-guardrails">
|
|
1134
|
+
<div class="seo-kicker">Document RAG</div>
|
|
1135
|
+
<h3>Proxy-Pointer RAG Guardrails</h3>
|
|
1136
|
+
<p>Section trees, image pointers, visual-claim checks, and cross-document leakage blocks before multimodal answers ship.</p>
|
|
1137
|
+
<div class="card-arrow">Ground visual answers →</div>
|
|
1138
|
+
</a>
|
|
1139
|
+
<a class="seo-card" href="/guides/rag-precision-tuning-guardrails">
|
|
1140
|
+
<div class="seo-kicker">Retrieval Safety</div>
|
|
1141
|
+
<h3>RAG Precision Tuning Guardrails</h3>
|
|
1142
|
+
<p>Baseline recall, verifier coverage, and latency budgets before retrieval tuning feeds autonomous agent pipelines.</p>
|
|
1143
|
+
<div class="card-arrow">Gate retrieval changes →</div>
|
|
1144
|
+
</a>
|
|
1145
|
+
<a class="seo-card" href="/guides/internal-ai-engineering-stack-guardrails">
|
|
1146
|
+
<div class="seo-kicker">AI Stack</div>
|
|
1147
|
+
<h3>Internal AI Engineering Stack Guardrails</h3>
|
|
1148
|
+
<p>Gateway, MCP portal, AGENTS.md, LLM wiki, AI review, and sandbox checks before agent adoption scales.</p>
|
|
1149
|
+
<div class="card-arrow">Govern the AI stack →</div>
|
|
1150
|
+
</a>
|
|
1151
|
+
<a class="seo-card" href="/guides/seo-agent-skills-guardrails">
|
|
1152
|
+
<div class="seo-kicker">SEO Agents</div>
|
|
1153
|
+
<h3>SEO Agent Skills Guardrails</h3>
|
|
1154
|
+
<p>Workspace context, proof links, semantic mesh, and publish gates for AI-assisted content workflows.</p>
|
|
1155
|
+
<div class="card-arrow">Govern SEO agents →</div>
|
|
1156
|
+
</a>
|
|
1157
|
+
<a class="seo-card" href="/compare/fallow">
|
|
1158
|
+
<div class="seo-kicker">Comparison</div>
|
|
1159
|
+
<h3>ThumbGate vs Fallow</h3>
|
|
1160
|
+
<p>Fallow finds JS/TS code health issues. ThumbGate governs what AI agents are allowed to do next.</p>
|
|
1161
|
+
<div class="card-arrow">Compare tools →</div>
|
|
1162
|
+
</a>
|
|
1163
|
+
<a class="seo-card" href="/guides/claude-code-skills-guardrails">
|
|
1164
|
+
<div class="seo-kicker">Claude Skills</div>
|
|
1165
|
+
<h3>Claude Code Skills Guardrails</h3>
|
|
1166
|
+
<p>Turn skillbooks, reusable prompts, and project workflows into checks that survive beyond one session.</p>
|
|
1167
|
+
<div class="card-arrow">Enforce skillbooks →</div>
|
|
1168
|
+
</a>
|
|
1169
|
+
<a class="seo-card" href="/guides/long-running-agent-context-management">
|
|
1170
|
+
<div class="seo-kicker">Agent Context</div>
|
|
1171
|
+
<h3>Long-Running Agent Context Management</h3>
|
|
1172
|
+
<p>Director journals, critic reviews, credibility scores, and timelines instead of raw chat-log accumulation.</p>
|
|
1173
|
+
<div class="card-arrow">Structure agent memory →</div>
|
|
1174
|
+
</a>
|
|
1175
|
+
<a class="seo-card" href="/guides/reasoning-compression-guardrails">
|
|
1176
|
+
<div class="seo-kicker">Reasoning ROI</div>
|
|
1177
|
+
<h3>Reasoning Compression Guardrails</h3>
|
|
1178
|
+
<p>Verifier-backed token savings with step-level confidence checks before compressed reasoning reaches production.</p>
|
|
1179
|
+
<div class="card-arrow">Gate token savings →</div>
|
|
1180
|
+
</a>
|
|
1181
|
+
<a class="seo-card" href="/guides/background-agent-governance">
|
|
1182
|
+
<div class="seo-kicker">Background Agents</div>
|
|
1183
|
+
<h3>Background Agent Governance</h3>
|
|
1184
|
+
<p>Turn unattended agent PRs into a governed queue with run ledgers, pre-dispatch checks, isolated task lanes, and risk-tiered review.</p>
|
|
1185
|
+
<div class="card-arrow">Govern agent PRs →</div>
|
|
1186
|
+
</a>
|
|
1187
|
+
<a class="seo-card" href="/guides/ai-agent-governance-sprint">
|
|
1188
|
+
<div class="seo-kicker">Team Sprint</div>
|
|
1189
|
+
<h3>AI Agent Governance Sprint</h3>
|
|
1190
|
+
<p>Package one repo, one workflow owner, and one repeated failure into approval boundaries, rollback safety, and buyer-ready rollout proof.</p>
|
|
1191
|
+
<div class="card-arrow">Start with one workflow →</div>
|
|
1192
|
+
</a>
|
|
1193
|
+
<a class="seo-card" href="/guides/gpt-5-5-model-evaluation">
|
|
1194
|
+
<div class="seo-kicker">Model Routing</div>
|
|
1195
|
+
<h3>GPT-5.5 Model Evaluation</h3>
|
|
1196
|
+
<p>Benchmark GPT-5.5 for dashboard-analysis workloads before routing expensive agent work away from cheaper tiers.</p>
|
|
1197
|
+
<div class="card-arrow">Evaluate frontier routing →</div>
|
|
1198
|
+
</a>
|
|
1073
1199
|
<a class="seo-card" href="/guides/ai-search-topical-presence">
|
|
1074
1200
|
<div class="seo-kicker">AI Search</div>
|
|
1075
1201
|
<h3>AI Search Topical Presence</h3>
|
|
@@ -1174,7 +1300,7 @@ __GA_BOOTSTRAP__
|
|
|
1174
1300
|
</div>
|
|
1175
1301
|
<div class="autoresearch-cta">
|
|
1176
1302
|
<a class="primary" href="/guides/autoresearch-agent-safety?utm_source=website&utm_medium=autoresearch_pack&utm_campaign=autoresearch_safety&cta_id=autoresearch_guide&cta_placement=autoresearch_pack">Read the Autoresearch guide</a>
|
|
1177
|
-
<a class="secondary" href="/checkout/pro?utm_source=website&utm_medium=autoresearch_pack&utm_campaign=autoresearch_safety&cta_id=autoresearch_pro_trial&cta_placement=autoresearch_pack&plan_id=pro&landing_path=%2F">Start Pro
|
|
1303
|
+
<a class="secondary" href="/checkout/pro?utm_source=website&utm_medium=autoresearch_pack&utm_campaign=autoresearch_safety&cta_id=autoresearch_pro_trial&cta_placement=autoresearch_pack&plan_id=pro&landing_path=%2F">Start Pro</a>
|
|
1178
1304
|
</div>
|
|
1179
1305
|
</div>
|
|
1180
1306
|
</div>
|
|
@@ -1183,7 +1309,7 @@ __GA_BOOTSTRAP__
|
|
|
1183
1309
|
<!-- HOW IT WORKS -->
|
|
1184
1310
|
<section class="how-it-works" id="how-it-works">
|
|
1185
1311
|
<div class="container">
|
|
1186
|
-
<div class="section-label">New in v1.16.
|
|
1312
|
+
<div class="section-label">New in v1.16.20</div>
|
|
1187
1313
|
<h2 class="section-title">Three steps to stop repeated AI failures</h2>
|
|
1188
1314
|
<div class="steps">
|
|
1189
1315
|
<div class="step">
|
|
@@ -1355,7 +1481,7 @@ __GA_BOOTSTRAP__
|
|
|
1355
1481
|
<div class="price-sub">or $149/yr (save 35%) · Personal dashboard + enforcement proof</div>
|
|
1356
1482
|
<p style="font-size:13px;color:var(--cyan);margin-bottom:16px;font-weight:500;">Unlimited captures, unlimited rules, full recall. $19/mo costs less than 20 minutes of re-fixing a mistake your agent already learned to avoid.</p>
|
|
1357
1483
|
<div class="pro-upgrade-triggers" style="font-size:12px;color:#aaa;margin-bottom:12px;">
|
|
1358
|
-
<strong style="color:#fff;">
|
|
1484
|
+
<strong style="color:#fff;">Card required.</strong> Billed today. Cancel anytime. Your rules and captures stay local.
|
|
1359
1485
|
</div>
|
|
1360
1486
|
<div class="dashboard-preview" style="margin-bottom:16px;border:1px solid #333;border-radius:8px;overflow:hidden;">
|
|
1361
1487
|
<div style="background:linear-gradient(135deg,#1a1a2e 0%,#16213e 100%);padding:16px;text-align:center;">
|
|
@@ -1378,13 +1504,13 @@ __GA_BOOTSTRAP__
|
|
|
1378
1504
|
<li>Personal local dashboard — every Pro user gets a localhost dashboard without extra cloud setup</li>
|
|
1379
1505
|
<li>Review-ready workflow support — we help you wire the riskiest flows first: migrations, force-pushes, deploys, and CI</li>
|
|
1380
1506
|
</ul>
|
|
1381
|
-
<div class="trial-badge" style="background:var(--cyan);color:#000;display:inline-block;padding:4px 12px;border-radius:12px;font-size:12px;font-weight:700;margin-bottom:12px;">
|
|
1507
|
+
<div class="trial-badge" style="background:var(--cyan);color:#000;display:inline-block;padding:4px 12px;border-radius:12px;font-size:12px;font-weight:700;margin-bottom:12px;">PAY-NOW PRO</div>
|
|
1382
1508
|
<div style="display:flex;gap:8px;margin-bottom:12px;">
|
|
1383
1509
|
<input type="email" id="pro-email" data-buyer-email placeholder="you@company.com" style="flex:1;padding:10px 12px;border:1px solid var(--border);border-radius:8px;background:var(--bg-raised);color:var(--text);font-size:14px;">
|
|
1384
|
-
<a href="/go/pro?utm_source=website&utm_medium=pricing_card&utm_campaign=pro_upgrade&cta_id=pricing_pro_upgrade&cta_placement=pricing&plan_id=pro&landing_path=%2F" id="pro-checkout-link" class="btn-pro" onclick="handleProTrial();return false;" style="display:flex;align-items:center;padding:10px 20px;font-size:14px;white-space:nowrap;">
|
|
1510
|
+
<a href="/go/pro?utm_source=website&utm_medium=pricing_card&utm_campaign=pro_upgrade&cta_id=pricing_pro_upgrade&cta_placement=pricing&plan_id=pro&landing_path=%2F" id="pro-checkout-link" class="btn-pro" onclick="handleProTrial();return false;" style="display:flex;align-items:center;padding:10px 20px;font-size:14px;white-space:nowrap;">Upgrade now</a>
|
|
1385
1511
|
</div>
|
|
1386
1512
|
<a href="/go/pro?utm_source=website&utm_medium=pricing_card&utm_campaign=pro_upgrade&cta_id=pricing_pro_upgrade&cta_placement=pricing&plan_id=pro&landing_path=%2F" class="btn-pro" onclick="posthog.capture('pricing_cta_click',{cta:'pro_upgrade',plan:'pro'})" style="display:block;width:100%;text-align:center;padding:12px;font-size:15px;">Upgrade to Pro — $19/mo</a>
|
|
1387
|
-
<p style="font-size:11px;color:#666;margin-top:8px;">
|
|
1513
|
+
<p style="font-size:11px;color:#666;margin-top:8px;">Card required. Billed today. Cancel anytime. Your rules and captures stay local.</p>
|
|
1388
1514
|
</div>
|
|
1389
1515
|
<div class="price-card team">
|
|
1390
1516
|
<div class="tier">Team</div>
|
|
@@ -1392,10 +1518,10 @@ __GA_BOOTSTRAP__
|
|
|
1392
1518
|
<div class="price-sub">3-seat minimum · One engineer's correction protects the whole team</div>
|
|
1393
1519
|
<p style="font-size:13px;color:var(--green);margin-bottom:16px;font-weight:500;">When one engineer teaches the agent not to delete staging data, that lesson applies to every agent on the team. Stop paying the same mistake tax across different developers.</p>
|
|
1394
1520
|
<div class="pro-upgrade-triggers" style="font-size:12px;color:#aaa;margin-bottom:12px;">
|
|
1395
|
-
Start with one repo, one workflow, one
|
|
1521
|
+
No self-serve trial. Start with one repo, one workflow, and one repeated failure through the sprint intake.
|
|
1396
1522
|
</div>
|
|
1397
1523
|
<ul>
|
|
1398
|
-
<li>
|
|
1524
|
+
<li>AI Agent Governance Sprint — map one painful workflow, one repeated failure, approval boundaries, rollback safety, and one buyer proof review before wider rollout</li>
|
|
1399
1525
|
<li>Shared enforcement memory — a shared lesson database where one developer's 👎 on a bad migration protects every agent on the team</li>
|
|
1400
1526
|
<li>Team lesson export/import — export lessons from one project, import into another. Deduplication, provenance tracking, and <code>team-import</code> tagging built in. One team's hard-won lessons become every team's prevention rules</li>
|
|
1401
1527
|
<li>Org dashboard — active agents, check hit rates, risk agents, and proof-backed team metrics in one place</li>
|
|
@@ -1416,8 +1542,8 @@ __GA_BOOTSTRAP__
|
|
|
1416
1542
|
<section class="compatibility" id="workflow-sprint-intake">
|
|
1417
1543
|
<div class="container">
|
|
1418
1544
|
<div class="section-label">Team Pilot</div>
|
|
1419
|
-
<h2 class="section-title">Start
|
|
1420
|
-
<p style="color:var(--text-dim);max-width:720px;margin:0 auto 16px;">This is the fastest path to first paid value for teams. Start with one
|
|
1545
|
+
<h2 class="section-title">Start the AI Agent Governance Sprint with one repeat failure</h2>
|
|
1546
|
+
<p style="color:var(--text-dim);max-width:720px;margin:0 auto 16px;">This is the fastest path to first paid value for teams. Start with one repo, one workflow owner, and one blocker. The intake is designed to prove that ThumbGate reduces review churn, rollout risk, or repeated agent mistakes before a wider rollout.</p>
|
|
1421
1547
|
<div class="team-intake-panel">
|
|
1422
1548
|
<div class="team-intake-panel-head">
|
|
1423
1549
|
<div>
|
|
@@ -1434,20 +1560,27 @@ __GA_BOOTSTRAP__
|
|
|
1434
1560
|
</div>
|
|
1435
1561
|
<div>
|
|
1436
1562
|
<div class="team-paid-price">$<span data-sprint-diagnostic-price>499</span></div>
|
|
1437
|
-
<a class="team-paid-link" data-sprint-diagnostic-link href="
|
|
1563
|
+
<a class="team-paid-link" data-sprint-diagnostic-link href="__SPRINT_DIAGNOSTIC_CHECKOUT_URL__">Pay for diagnostic</a>
|
|
1438
1564
|
</div>
|
|
1439
1565
|
</div>
|
|
1440
1566
|
<div class="team-paid-card">
|
|
1441
1567
|
<div>
|
|
1442
|
-
<h4>
|
|
1443
|
-
<p>48-hour
|
|
1568
|
+
<h4>AI Agent Governance Sprint</h4>
|
|
1569
|
+
<p>48-hour Workflow Hardening Sprint for one workflow owner, one blocker, approval boundaries, rollback safety, one proof review, and one hardened rollout path.</p>
|
|
1444
1570
|
</div>
|
|
1445
1571
|
<div>
|
|
1446
1572
|
<div class="team-paid-price">$<span data-workflow-sprint-price>1500</span></div>
|
|
1447
|
-
<a class="team-paid-link" data-workflow-sprint-link href="
|
|
1573
|
+
<a class="team-paid-link" data-workflow-sprint-link href="__WORKFLOW_SPRINT_CHECKOUT_URL__">Pay for sprint</a>
|
|
1448
1574
|
</div>
|
|
1449
1575
|
</div>
|
|
1450
1576
|
</div>
|
|
1577
|
+
<div class="team-intake-recovery" aria-label="Checkout recovery path for workflow sprint buyers">
|
|
1578
|
+
<div>
|
|
1579
|
+
<strong>Not ready to pay from a checkout page?</strong>
|
|
1580
|
+
<span>Send the workflow first. We can qualify the blocker, confirm the proof plan, and route you to the $499 diagnostic or $1500 sprint only when the scope is real.</span>
|
|
1581
|
+
</div>
|
|
1582
|
+
<a href="#team-pilot-intake-form" onclick="sendFirstPartyTelemetry('workflow_sprint_recovery_intake_clicked',{ctaId:'team_workflow_sprint_recovery_intake',ctaPlacement:'team_paid_path_recovery',planId:'team',offer:'workflow_hardening_sprint',reason:'checkout_abandon'});sendGa4Event('generate_lead',{currency:'USD',value:0,method:'workflow_sprint_recovery_intake'});">Send workflow first</a>
|
|
1583
|
+
</div>
|
|
1451
1584
|
<form id="team-pilot-intake-form" class="team-form" action="/v1/intake/workflow-sprint" method="POST" data-team-intake-form>
|
|
1452
1585
|
<input type="hidden" name="ctaId" value="workflow_sprint_intake">
|
|
1453
1586
|
<input type="hidden" name="ctaPlacement" value="team_visible_intake">
|
|
@@ -1523,7 +1656,7 @@ __GA_BOOTSTRAP__
|
|
|
1523
1656
|
</div>
|
|
1524
1657
|
<div class="faq-item">
|
|
1525
1658
|
<div class="faq-q" role="button" tabindex="0" aria-expanded="false" onclick="toggleFaq(this)" onkeydown="handleFaqKeydown(event)">What does Pro cost?</div>
|
|
1526
|
-
<div class="faq-a">Pro is $19/mo or $149/yr for individual operators. Team is $49/seat/mo with a 3-seat minimum
|
|
1659
|
+
<div class="faq-a">Pro is $19/mo or $149/yr for individual operators and bills immediately through Stripe so the self-serve path can create revenue today. Team is $49/seat/mo with a 3-seat minimum and starts with the Workflow Hardening Sprint intake, not a self-serve trial.</div>
|
|
1527
1660
|
</div>
|
|
1528
1661
|
</div>
|
|
1529
1662
|
</div>
|
|
@@ -1575,7 +1708,7 @@ __GA_BOOTSTRAP__
|
|
|
1575
1708
|
<a href="https://www.linkedin.com/in/igorganapolsky" target="_blank" rel="noopener">LinkedIn</a>
|
|
1576
1709
|
<a href="/blog">Blog</a>
|
|
1577
1710
|
</div>
|
|
1578
|
-
<span class="footer-copy">© 2026 Max Smith KDP LLC · MIT License · v1.16.
|
|
1711
|
+
<span class="footer-copy">© 2026 Max Smith KDP LLC · MIT License · v1.16.20</span>
|
|
1579
1712
|
</div>
|
|
1580
1713
|
</footer>
|
|
1581
1714
|
|
package/public/numbers.html
CHANGED
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"alternateName": "thumbgate",
|
|
26
26
|
"applicationCategory": "DeveloperApplication",
|
|
27
27
|
"operatingSystem": "Cross-platform, Node.js >=18.18.0",
|
|
28
|
-
"softwareVersion": "1.16.
|
|
28
|
+
"softwareVersion": "1.16.20",
|
|
29
29
|
"url": "https://thumbgate-production.up.railway.app/numbers",
|
|
30
|
-
"dateModified": "2026-05-
|
|
30
|
+
"dateModified": "2026-05-05",
|
|
31
31
|
"creator": {
|
|
32
32
|
"@type": "Person",
|
|
33
33
|
"name": "Igor Ganapolsky",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"https://www.linkedin.com/in/igorganapolsky"
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
|
-
"dateModified": "2026-05-
|
|
61
|
-
"datePublished": "2026-05-
|
|
60
|
+
"dateModified": "2026-05-05",
|
|
61
|
+
"datePublished": "2026-05-05",
|
|
62
62
|
"keywords": [
|
|
63
63
|
"AI agent gates",
|
|
64
64
|
"LLM token savings",
|
|
@@ -190,7 +190,7 @@
|
|
|
190
190
|
<main class="container">
|
|
191
191
|
<h1>The Numbers</h1>
|
|
192
192
|
<p class="subtitle">Generated first-party operational data from the ThumbGate runtime. No surveys or projections — this page is a release-time snapshot produced by the same local scripts that power the CLI and dashboard.</p>
|
|
193
|
-
<div class="freshness">Updated: 2026-05-
|
|
193
|
+
<div class="freshness">Updated: 2026-05-05 · Version 1.16.20</div>
|
|
194
194
|
|
|
195
195
|
<h2>Gate enforcement</h2>
|
|
196
196
|
<div class="stats-grid">
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
<div class="cta">
|
|
265
265
|
<a href="https://www.npmjs.com/package/thumbgate">Install ThumbGate — npx thumbgate init</a>
|
|
266
266
|
<div class="footer-note">Prefer the raw feed? See <a href="https://github.com/IgorGanapolsky/ThumbGate">GitHub</a> or run <code>npm run gate:stats</code> locally.</div>
|
|
267
|
-
<div class="footer-note">Generated at 2026-05-
|
|
267
|
+
<div class="footer-note">Generated at 2026-05-05T14:49:47.056Z UTC.</div>
|
|
268
268
|
</div>
|
|
269
269
|
</main>
|
|
270
270
|
</body>
|
package/public/pro.html
CHANGED
|
@@ -796,7 +796,7 @@ __GA_BOOTSTRAP__
|
|
|
796
796
|
<a href="#pricing">Pricing</a>
|
|
797
797
|
<a href="#faq">FAQ</a>
|
|
798
798
|
<a href="/dashboard">Demo</a>
|
|
799
|
-
<a class="nav-cta btn-pro-checkout" href="/checkout/pro?utm_source=website&utm_medium=pro_page_nav&utm_campaign=pro_pack&cta_id=pro_page_nav&cta_placement=nav&plan_id=pro&landing_path=%2Fpro">Start
|
|
799
|
+
<a class="nav-cta btn-pro-checkout" href="/checkout/pro?utm_source=website&utm_medium=pro_page_nav&utm_campaign=pro_pack&cta_id=pro_page_nav&cta_placement=nav&plan_id=pro&landing_path=%2Fpro">Start Pro Now</a>
|
|
800
800
|
</div>
|
|
801
801
|
</div>
|
|
802
802
|
</nav>
|
|
@@ -804,11 +804,11 @@ __GA_BOOTSTRAP__
|
|
|
804
804
|
<section class="hero">
|
|
805
805
|
<div class="container hero-grid">
|
|
806
806
|
<div class="panel hero-copy">
|
|
807
|
-
<div class="eyebrow">
|
|
808
|
-
<h1>
|
|
807
|
+
<div class="eyebrow">Paid lane for individual operators</div>
|
|
808
|
+
<h1>Buy the operator loop that proves your AI agent stopped repeating the mistake.</h1>
|
|
809
809
|
<p style="font-size:13px;opacity:0.8;margin-bottom:0.5rem;">Updated: <time datetime="2026-04-20">2026-04-20</time> · by <a href="https://github.com/IgorGanapolsky" style="color:inherit;">Igor Ganapolsky</a></p>
|
|
810
|
-
<p>ThumbGate
|
|
811
|
-
<p>
|
|
810
|
+
<p>ThumbGate Pro is the fastest paid path for one operator who already hit a repeated AI-agent failure and now needs proof: what was blocked, why it was blocked, and what changed before the next risky run.</p>
|
|
811
|
+
<p>Start with the local-first Pro dashboard and DPO export. Move to Team only when one correction needs to protect multiple developers, agents, or shared repos.</p>
|
|
812
812
|
<div class="hero-proof">
|
|
813
813
|
<div class="proof-pill">Personal local dashboard</div>
|
|
814
814
|
<div class="proof-pill">DPO export from real corrections</div>
|
|
@@ -816,7 +816,7 @@ __GA_BOOTSTRAP__
|
|
|
816
816
|
<div class="proof-pill">Founder support on risky flows</div>
|
|
817
817
|
</div>
|
|
818
818
|
<div class="hero-actions">
|
|
819
|
-
<a class="btn-primary btn-pro-checkout" href="/checkout/pro?utm_source=website&utm_medium=pro_page_hero&utm_campaign=pro_pack&cta_id=pro_page_primary&cta_placement=hero&plan_id=pro&landing_path=%2Fpro">Start
|
|
819
|
+
<a class="btn-primary btn-pro-checkout" href="/checkout/pro?utm_source=website&utm_medium=pro_page_hero&utm_campaign=pro_pack&cta_id=pro_page_primary&cta_placement=hero&plan_id=pro&landing_path=%2Fpro">Start Pro Now</a>
|
|
820
820
|
<a class="btn-secondary btn-demo" href="/dashboard?utm_source=website&utm_medium=pro_page&utm_campaign=pro_pack">Open dashboard demo</a>
|
|
821
821
|
<a class="btn-ghost btn-free-path" href="/guide?utm_source=website&utm_medium=pro_page&utm_campaign=free_install">Stay on Free and install locally</a>
|
|
822
822
|
</div>
|
|
@@ -860,7 +860,7 @@ __GA_BOOTSTRAP__
|
|
|
860
860
|
<input type="email" name="email" data-buyer-email placeholder="you@company.com" required>
|
|
861
861
|
<div class="buyer-form-actions">
|
|
862
862
|
<button type="submit" class="btn-secondary">Email me the demo</button>
|
|
863
|
-
<button type="button" class="btn-primary btn-email-checkout">Start
|
|
863
|
+
<button type="button" class="btn-primary btn-email-checkout">Start Pro with this email</button>
|
|
864
864
|
</div>
|
|
865
865
|
<p class="buyer-form-note">No sales deck. Just the Pro demo path, launch updates, and a prefilled checkout when you are ready.</p>
|
|
866
866
|
<p class="buyer-form-status" data-newsletter-status aria-live="polite"></p>
|
|
@@ -960,32 +960,30 @@ __GA_BOOTSTRAP__
|
|
|
960
960
|
<div class="container pricing-shell">
|
|
961
961
|
<div class="pricing-card">
|
|
962
962
|
<div class="section-label" style="text-align:left;margin-bottom:8px;">Pricing</div>
|
|
963
|
-
<h3>ThumbGate
|
|
964
|
-
<div class="price">$
|
|
965
|
-
<div class="annual"
|
|
966
|
-
<p class="pricing-note">
|
|
963
|
+
<h3>ThumbGate Pro</h3>
|
|
964
|
+
<div class="price">$19<span>/mo</span></div>
|
|
965
|
+
<div class="annual">$149/year available · Card required · billed today</div>
|
|
966
|
+
<p class="pricing-note">For the individual operator who wants a personal local dashboard, DPO export, review-ready evidence, and founder help on the first risky workflow.</p>
|
|
967
967
|
<ul>
|
|
968
|
-
<li><strong>
|
|
969
|
-
<li><strong>
|
|
970
|
-
<li><strong>
|
|
971
|
-
<li><strong>
|
|
972
|
-
<li><strong>Sandbox routing</strong> — route risky agent runs into isolated execution environments.</li>
|
|
973
|
-
<li><strong>Org dashboard</strong> — active agents, check hit rates, risk scores, and proof-backed team metrics.</li>
|
|
968
|
+
<li><strong>Personal local dashboard</strong> — inspect blocked actions, active checks, and lesson evidence without a cloud account.</li>
|
|
969
|
+
<li><strong>DPO export</strong> — turn real thumbs-down corrections into training pairs you can review or reuse.</li>
|
|
970
|
+
<li><strong>Review-ready proof</strong> — bring evidence links and blocked-action history to the next risky workflow review.</li>
|
|
971
|
+
<li><strong>Founder support</strong> — get help hardening the first force-push, deploy, migration, or CI failure that keeps repeating.</li>
|
|
974
972
|
</ul>
|
|
975
973
|
<div class="pricing-actions">
|
|
976
|
-
<a class="btn-primary" href="
|
|
977
|
-
<a class="btn-secondary btn-
|
|
974
|
+
<a class="btn-primary btn-pro-checkout" href="/checkout/pro?utm_source=website&utm_medium=pro_page_pricing&utm_campaign=pro_pack&cta_id=pricing_pro&cta_placement=pricing&plan_id=pro&landing_path=%2Fpro">Start Pro Now</a>
|
|
975
|
+
<a class="btn-secondary btn-pro-checkout" href="/checkout/pro?utm_source=website&utm_medium=pro_page_pricing&utm_campaign=pro_pack&cta_id=pricing_pro_annual&cta_placement=pricing&plan_id=pro&billing_cycle=annual&landing_path=%2Fpro">Choose annual</a>
|
|
978
976
|
</div>
|
|
979
|
-
<div class="pricing-meta">
|
|
977
|
+
<div class="pricing-meta">Best for one operator with one repeated failure to prove. Stay on Free if you only need the local install; buy Pro when the dashboard, export, and proof trail save you time.</div>
|
|
980
978
|
</div>
|
|
981
979
|
|
|
982
980
|
<div class="pricing-sidebar">
|
|
983
981
|
<div class="team-card">
|
|
984
982
|
<div class="section-label" style="text-align:left;margin-bottom:8px;">When Team is better</div>
|
|
985
|
-
<h3>
|
|
986
|
-
<p>
|
|
983
|
+
<h3>Need shared enforcement?</h3>
|
|
984
|
+
<p>Choose Team when one correction must protect multiple developers or agents across shared repositories, CI, approval policies, and audit trails. Team is $49/seat/mo with a 3-seat minimum after qualification.</p>
|
|
987
985
|
<div class="hero-actions" style="margin-top:18px;">
|
|
988
|
-
<a class="btn-secondary" href="
|
|
986
|
+
<a class="btn-secondary" href="/#workflow-sprint-intake">Book a Team Pilot Call</a>
|
|
989
987
|
</div>
|
|
990
988
|
</div>
|
|
991
989
|
<div class="team-card">
|
|
@@ -1025,11 +1023,11 @@ __GA_BOOTSTRAP__
|
|
|
1025
1023
|
<section class="final-cta">
|
|
1026
1024
|
<div class="container">
|
|
1027
1025
|
<div class="final-shell">
|
|
1028
|
-
<h2>
|
|
1029
|
-
<p>
|
|
1026
|
+
<h2>Stop losing time to the same AI-agent failure.</h2>
|
|
1027
|
+
<p>Start Pro, harden one repeated mistake, and keep the proof trail: blocked action, lesson, prevention rule, and export path.</p>
|
|
1030
1028
|
<div class="hero-actions" style="justify-content:center;">
|
|
1031
|
-
<a class="btn-primary" href="
|
|
1032
|
-
<a class="btn-secondary btn-demo" href="/dashboard?utm_source=website&utm_medium=pro_page_final&utm_campaign=
|
|
1029
|
+
<a class="btn-primary btn-pro-checkout" href="/checkout/pro?utm_source=website&utm_medium=pro_page_final&utm_campaign=pro_pack&cta_id=final_go_pro&cta_placement=final&plan_id=pro&landing_path=%2Fpro">Start 7-Day Free Trial</a>
|
|
1030
|
+
<a class="btn-secondary btn-demo" href="/dashboard?utm_source=website&utm_medium=pro_page_final&utm_campaign=pro_pack">Open dashboard demo</a>
|
|
1033
1031
|
</div>
|
|
1034
1032
|
</div>
|
|
1035
1033
|
</div>
|