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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thumbgate",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.20",
|
|
4
4
|
"description": "Self-improving agent governance: type thumbs-up or thumbs-down on any AI agent action. ThumbGate turns every mistake into a prevention rule and blocks the pattern from repeating. One thumbs-down, never again. 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": {
|
|
@@ -45,15 +45,18 @@
|
|
|
45
45
|
"public/pro.html",
|
|
46
46
|
"scripts/access-anomaly-detector.js",
|
|
47
47
|
"scripts/agent-audit-trace.js",
|
|
48
|
+
"scripts/agent-design-governance.js",
|
|
48
49
|
"scripts/agent-memory-lifecycle.js",
|
|
49
50
|
"scripts/agent-readiness.js",
|
|
50
51
|
"scripts/agent-readiness-plan.js",
|
|
52
|
+
"scripts/agent-reasoning-traces.js",
|
|
53
|
+
"scripts/agent-reward-model.js",
|
|
54
|
+
"scripts/agent-stack-survival-audit.js",
|
|
51
55
|
"scripts/agentic-data-pipeline.js",
|
|
52
|
-
"scripts/
|
|
53
|
-
"scripts/ai-org-governance.js",
|
|
56
|
+
"scripts/ai-engineering-stack-guardrails.js",
|
|
54
57
|
"scripts/ai-search-distribution.js",
|
|
55
58
|
"scripts/analytics-window.js",
|
|
56
|
-
"scripts/
|
|
59
|
+
"scripts/chatgpt-ads-readiness-pack.js",
|
|
57
60
|
"scripts/autoresearch-runner.js",
|
|
58
61
|
"scripts/async-job-runner.js",
|
|
59
62
|
"scripts/audit-trail.js",
|
|
@@ -66,6 +69,7 @@
|
|
|
66
69
|
"scripts/bot-detection.js",
|
|
67
70
|
"scripts/bot-detector.js",
|
|
68
71
|
"scripts/build-metadata.js",
|
|
72
|
+
"scripts/chatgpt-ads-readiness-pack.js",
|
|
69
73
|
"scripts/claude-feedback-sync.js",
|
|
70
74
|
"scripts/cli-demo.js",
|
|
71
75
|
"scripts/cli-feedback.js",
|
|
@@ -75,6 +79,7 @@
|
|
|
75
79
|
"scripts/cloudflare-dynamic-sandbox.js",
|
|
76
80
|
"scripts/code-mode-mcp-plan.js",
|
|
77
81
|
"scripts/code-reasoning.js",
|
|
82
|
+
"scripts/code-graph-guardrails.js",
|
|
78
83
|
"scripts/codegraph-context.js",
|
|
79
84
|
"scripts/commercial-offer.js",
|
|
80
85
|
"scripts/context-manager.js",
|
|
@@ -87,13 +92,12 @@
|
|
|
87
92
|
"scripts/dashboard.js",
|
|
88
93
|
"scripts/decision-journal.js",
|
|
89
94
|
"scripts/durability/step.js",
|
|
95
|
+
"scripts/deepseek-v4-runtime-guardrails.js",
|
|
90
96
|
"scripts/docker-sandbox-planner.js",
|
|
91
97
|
"scripts/document-intake.js",
|
|
92
98
|
"scripts/document-workflow-governance.js",
|
|
93
|
-
"scripts/enterprise-agent-rollout.js",
|
|
94
99
|
"scripts/evolution-state.js",
|
|
95
100
|
"scripts/experiment-tracker.js",
|
|
96
|
-
"scripts/experience-replay-governance.js",
|
|
97
101
|
"scripts/explore-subcommands.js",
|
|
98
102
|
"scripts/explore.js",
|
|
99
103
|
"scripts/export-databricks-bundle.js",
|
|
@@ -112,6 +116,7 @@
|
|
|
112
116
|
"scripts/gate-stats.js",
|
|
113
117
|
"scripts/gate-templates.js",
|
|
114
118
|
"scripts/gates-engine.js",
|
|
119
|
+
"scripts/gemini-embedding-policy.js",
|
|
115
120
|
"scripts/growth-campaigns.js",
|
|
116
121
|
"scripts/harness-selector.js",
|
|
117
122
|
"scripts/hf-papers.js",
|
|
@@ -122,27 +127,27 @@
|
|
|
122
127
|
"scripts/hybrid-supervisor-agent.js",
|
|
123
128
|
"scripts/install-mcp.js",
|
|
124
129
|
"scripts/inference-cache-policy.js",
|
|
125
|
-
"scripts/inference-economics.js",
|
|
126
130
|
"scripts/internal-agent-bootstrap.js",
|
|
127
131
|
"scripts/intervention-policy.js",
|
|
128
132
|
"scripts/jsonl-watcher.js",
|
|
133
|
+
"scripts/judge-reward-function.js",
|
|
129
134
|
"scripts/lesson-canonical.js",
|
|
130
135
|
"scripts/lesson-db.js",
|
|
131
136
|
"scripts/lesson-inference.js",
|
|
132
137
|
"scripts/lesson-rotation.js",
|
|
133
138
|
"scripts/lesson-search.js",
|
|
134
139
|
"scripts/lesson-synthesis.js",
|
|
135
|
-
"scripts/knowledge-layer-plan.js",
|
|
136
140
|
"scripts/rule-validator.js",
|
|
137
141
|
"scripts/license.js",
|
|
138
142
|
"scripts/llm-client.js",
|
|
143
|
+
"scripts/llm-behavior-monitor.js",
|
|
139
144
|
"scripts/mailer/index.js",
|
|
140
145
|
"scripts/mailer/resend-mailer.js",
|
|
141
146
|
"scripts/local-model-profile.js",
|
|
147
|
+
"scripts/long-running-agent-context-guardrails.js",
|
|
142
148
|
"scripts/mcp-config.js",
|
|
143
149
|
"scripts/mcp-policy.js",
|
|
144
150
|
"scripts/mcp-transport-strategy.js",
|
|
145
|
-
"scripts/memory-store-governance.js",
|
|
146
151
|
"scripts/memory-firewall.js",
|
|
147
152
|
"scripts/meta-agent-loop.js",
|
|
148
153
|
"scripts/model-access-eligibility.js",
|
|
@@ -151,6 +156,7 @@
|
|
|
151
156
|
"scripts/native-messaging-audit.js",
|
|
152
157
|
"scripts/natural-language-harness.js",
|
|
153
158
|
"scripts/obsidian-export.js",
|
|
159
|
+
"scripts/oss-pr-opportunity-scout.js",
|
|
154
160
|
"scripts/otel-declarative-config.js",
|
|
155
161
|
"scripts/operational-integrity.js",
|
|
156
162
|
"scripts/perplexity-client.js",
|
|
@@ -158,16 +164,20 @@
|
|
|
158
164
|
"scripts/private-core-boundary.js",
|
|
159
165
|
"scripts/pro-local-dashboard.js",
|
|
160
166
|
"scripts/problem-detail.js",
|
|
167
|
+
"scripts/proactive-agent-eval-guardrails.js",
|
|
161
168
|
"scripts/product-feedback.js",
|
|
169
|
+
"scripts/prompting-operating-system.js",
|
|
162
170
|
"scripts/provider-action-normalizer.js",
|
|
163
171
|
"scripts/profile-router.js",
|
|
164
172
|
"scripts/prompt-programs.js",
|
|
165
173
|
"scripts/prompt-eval.js",
|
|
166
174
|
"scripts/prompt-guard.js",
|
|
167
|
-
"scripts/
|
|
168
|
-
"scripts/
|
|
175
|
+
"scripts/proxy-pointer-rag-guardrails.js",
|
|
176
|
+
"scripts/rag-precision-guardrails.js",
|
|
169
177
|
"scripts/published-cli.js",
|
|
170
178
|
"scripts/rate-limiter.js",
|
|
179
|
+
"scripts/reasoning-efficiency-guardrails.js",
|
|
180
|
+
"scripts/reward-hacking-guardrails.js",
|
|
171
181
|
"scripts/risk-scorer.js",
|
|
172
182
|
"scripts/rlaif-self-audit.js",
|
|
173
183
|
"scripts/rubric-engine.js",
|
|
@@ -175,13 +185,13 @@
|
|
|
175
185
|
"scripts/security-scanner.js",
|
|
176
186
|
"scripts/self-distill-agent.js",
|
|
177
187
|
"scripts/self-heal.js",
|
|
178
|
-
"scripts/scaling-law-claims.js",
|
|
179
188
|
"scripts/semantic-dedup.js",
|
|
180
189
|
"scripts/semantic-layer.js",
|
|
181
190
|
"scripts/seo-gsd.js",
|
|
182
191
|
"scripts/settings-hierarchy.js",
|
|
183
192
|
"scripts/skill-generator.js",
|
|
184
193
|
"scripts/skill-rag-router.js",
|
|
194
|
+
"scripts/single-use-credential-gate.js",
|
|
185
195
|
"scripts/slo-alert-engine.js",
|
|
186
196
|
"scripts/spec-gate.js",
|
|
187
197
|
"scripts/statusline-cache-path.js",
|
|
@@ -192,7 +202,7 @@
|
|
|
192
202
|
"scripts/statusline-meta.js",
|
|
193
203
|
"scripts/statusline-tower.js",
|
|
194
204
|
"scripts/statusline.sh",
|
|
195
|
-
"scripts/
|
|
205
|
+
"scripts/structured-prompt-driven.js",
|
|
196
206
|
"scripts/synthetic-data-provenance.js",
|
|
197
207
|
"scripts/task-context-result.js",
|
|
198
208
|
"scripts/telemetry-analytics.js",
|
|
@@ -201,6 +211,7 @@
|
|
|
201
211
|
"scripts/token-tco.js",
|
|
202
212
|
"scripts/token-savings.js",
|
|
203
213
|
"scripts/tool-registry.js",
|
|
214
|
+
"scripts/upstream-contribution-engine.js",
|
|
204
215
|
"scripts/user-profile.js",
|
|
205
216
|
"scripts/validate-workflow-contract.js",
|
|
206
217
|
"scripts/vector-store.js",
|
|
@@ -235,6 +246,8 @@
|
|
|
235
246
|
"cfo:report": "node bin/cli.js cfo",
|
|
236
247
|
"creator:links": "node scripts/creator-campaigns.js",
|
|
237
248
|
"stripe:live": "node scripts/stripe-live-status.js",
|
|
249
|
+
"stripe:webhook:audit": "node scripts/rotate-stripe-webhook-secret.js --audit",
|
|
250
|
+
"stripe:webhook:disable-legacy": "node scripts/rotate-stripe-webhook-secret.js --disable-legacy",
|
|
238
251
|
"gtm:revenue-loop": "node scripts/autonomous-sales-agent.js",
|
|
239
252
|
"gtm:aiventyx": "node scripts/aiventyx-marketplace-plan.js",
|
|
240
253
|
"gtm:chatgpt": "node scripts/chatgpt-gpt-revenue-pack.js",
|
|
@@ -242,6 +255,8 @@
|
|
|
242
255
|
"gtm:linkedin": "node scripts/linkedin-workflow-hardening-pack.js",
|
|
243
256
|
"gtm:roo-sunset": "node scripts/roo-sunset-demand-pack.js",
|
|
244
257
|
"gtm:reddit": "node scripts/reddit-dm-workflow-hardening-pack.js",
|
|
258
|
+
"medium:weekly:draft": "node scripts/medium-weekly.js --write",
|
|
259
|
+
"medium:weekly:schedule": "node scripts/medium-weekly.js --schedule",
|
|
245
260
|
"sales:pipeline": "node scripts/sales-pipeline.js",
|
|
246
261
|
"social:prepare": "node scripts/social-pipeline.js prepare",
|
|
247
262
|
"social:post": "node scripts/social-pipeline.js post",
|
|
@@ -267,6 +282,26 @@
|
|
|
267
282
|
"session:capture": "node scripts/session-episode-store.js capture",
|
|
268
283
|
"session:patterns": "node scripts/session-episode-store.js patterns",
|
|
269
284
|
"session:history": "node scripts/session-episode-store.js history",
|
|
285
|
+
"session:reward": "node scripts/agent-reward-model.js report",
|
|
286
|
+
"session:reward:pairs": "node scripts/agent-reward-model.js pairs",
|
|
287
|
+
"session:reward:gates": "node scripts/agent-reward-model.js gates",
|
|
288
|
+
"session:traces": "node scripts/agent-reasoning-traces.js report",
|
|
289
|
+
"session:traces:json": "node scripts/agent-reasoning-traces.js json",
|
|
290
|
+
"session:traces:eval": "node scripts/agent-reasoning-traces.js eval",
|
|
291
|
+
"session:traces:rlsd": "node scripts/agent-reasoning-traces.js rlsd",
|
|
292
|
+
"judge:reward": "node scripts/judge-reward-function.js report",
|
|
293
|
+
"judge:reward:json": "node scripts/judge-reward-function.js json",
|
|
294
|
+
"judge:reward:prompt": "node scripts/judge-reward-function.js prompt",
|
|
295
|
+
"llm:behavior": "node scripts/llm-behavior-monitor.js report",
|
|
296
|
+
"llm:behavior:json": "node scripts/llm-behavior-monitor.js json",
|
|
297
|
+
"prompt:plan": "node scripts/prompting-operating-system.js plan",
|
|
298
|
+
"prompt:plan:json": "node scripts/prompting-operating-system.js json",
|
|
299
|
+
"credentials:plan": "node scripts/single-use-credential-gate.js plan",
|
|
300
|
+
"credentials:plan:json": "node scripts/single-use-credential-gate.js json",
|
|
301
|
+
"spdd:canvas": "node scripts/structured-prompt-driven.js canvas",
|
|
302
|
+
"spdd:canvas:json": "node scripts/structured-prompt-driven.js json",
|
|
303
|
+
"stack:survival": "node scripts/agent-stack-survival-audit.js report",
|
|
304
|
+
"stack:survival:json": "node scripts/agent-stack-survival-audit.js json",
|
|
270
305
|
"spec:check": "node scripts/spec-gate.js check",
|
|
271
306
|
"spec:gates": "node scripts/spec-gate.js gates",
|
|
272
307
|
"spec:audit": "node scripts/spec-gate.js audit",
|
|
@@ -275,9 +310,29 @@
|
|
|
275
310
|
"trace:eval": "node scripts/decision-trace.js eval",
|
|
276
311
|
"social:reply-monitor": "node scripts/social-reply-monitor.js",
|
|
277
312
|
"social:reply-monitor:dry": "node scripts/social-reply-monitor.js --dry-run",
|
|
278
|
-
"
|
|
313
|
+
"social:reply-monitor:install-reddit": "node scripts/reddit-monitor-launchd.js install",
|
|
314
|
+
"social:reply-monitor:bluesky": "node scripts/social-reply-monitor-bluesky.js",
|
|
315
|
+
"social:reply-monitor:bluesky:dry": "node scripts/social-reply-monitor-bluesky.js --dry-run",
|
|
316
|
+
"social:reply-monitor:install-bluesky": "node scripts/bluesky-monitor-launchd.js install",
|
|
317
|
+
"social:reply-monitor:bluesky:status": "node scripts/bluesky-monitor-launchd.js status",
|
|
318
|
+
"social:prospect:bluesky": "node scripts/social-bluesky-prospecting.js",
|
|
319
|
+
"social:prospect:bluesky:dry": "node scripts/social-bluesky-prospecting.js --dry-run",
|
|
320
|
+
"social:reply-publish:bluesky:dry": "node scripts/social-reply-monitor-bluesky.js --publish-approved --dry-run",
|
|
321
|
+
"test": "npm run test:schema && npm run test:loop && npm run test:dpo && npm run test:kto && npm run test:api && npm run test:proof && npm run test:e2e && npm run test:rlaif && npm run test:attribution && npm run test:quality && npm run test:intelligence && npm run test:training-export && npm run test:deployment && npm run test:operational-integrity && npm run test:workflow && npm run test:billing && npm run test:cli && npm run test:watcher && npm run test:autoresearch && npm run test:ops && npm run test:session-analyzer && npm run test:tessl && npm run test:gates && npm run test:evoskill && npm run test:gates-hardening && npm run test:workers && npm run test:social-analytics && npm run test:memalign && npm run test:xmemory-lite && npm run test:filesystem-search && npm run test:zernio && npm run test:platform-limits && npm run test:post-video && npm run test:post-everywhere-instagram && npm run test:post-everywhere-channels && npm run test:post-everywhere-zernio-default && npm run test:zernio-canonical-pollers && npm run test:zernio-status && npm run test:obsidian-export && npm run test:lesson-db && npm run test:lesson-rotation && npm run test:memory-dedup && npm run test:feedback-quality && npm run test:sync-version && npm run test:check-congruence && npm run test:tool-registry && npm run test:feedback-to-rules && npm run test:memory-firewall && npm run test:belief-update && npm run test:hosted-config && npm run test:operational-summary && npm run test:operational-dashboard && npm run test:operator-artifacts && npm run test:operator-key-auth && npm run test:cloudflare-sandbox && npm run test:mcp-config && npm run test:plan-gate && npm run test:pulse && npm run test:semantic-layer && npm run test:data-pipeline && npm run test:optimize-context && npm run test:principle-extractor && npm run test:analytics-window && npm run test:funnel-analytics && npm run test:experiment-tracker && npm run test:build-metadata && npm run test:context-engine && npm run test:hf-papers && npm run test:marketing-experiment && npm run test:seo-gsd && npm run test:verify-run && npm run test:export-dpo-pairs && npm run test:export-hf-dataset && npm run test:license && npm run test:bot-detector && npm run test:postinstall && npm run test:funnel-invariants && npm run test:cli-telemetry && npm run test:pro-parity && npm run test:model-tier-router && npm run test:computer-use-firewall && npm run test:skill-exporter && npm run test:statusline && npm run test:evolution && npm run test:org-dashboard && npm run test:multi-hop-recall && npm run test:synthetic-dpo && npm run test:thumbgate-skill && npm run test:learn-hub && npm run test:feedback-fallback && npm run test:metaclaw && npm run test:server-lock && npm run test:control-tower && npm run test:pii-scanner && npm run test:data-governance && npm run test:lesson-inference && npm run test:semantic-dedup && npm run test:fs-utils && npm run test:cli-schema && npm run test:explore && npm run test:lesson-reranker && npm run test:lesson-retrieval && npm run test:cross-encoder && npm run test:reflector-agent && npm run test:feedback-session && npm run test:feedback-history-distiller && npm run test:hallucination-detector && npm run test:history-distiller && npm run test:predictive-insights && npm run test:prove-predictive-insights && npm run test:statusbar-cli && npm run test:generate-instagram-card && npm run test:instagram-thumbgate-post && npm run test:publish-instagram-thumbgate && npm run test:lesson-synthesis && npm run test:lesson-canonical && npm run test:background-governance && npm run test:memory-migration && npm run test:prompt-dlp && npm run test:ephemeral-store && npm run test:agent-security && npm run test:skill-progressive && npm run test:per-step-scoring && npm run test:weekly-auto-post && npm run test:social-post-hourly && npm run test:social-quality-gate && npm run test:a2ui-engine && npm run test:gate-satisfy && npm run test:money-watcher && npm run test:budget && npm run test:quick-start && npm run test:utm && npm run test:product-feedback && npm run test:feedback-root-consolidator && npm run test:engagement-audit && npm run test:install-growth-automation && npm run test:publish-thumbgate-launch && npm run test:reconcile-thumbgate-campaign && npm run test:reddit-publisher && npm run test:schedule-thumbgate-campaign && npm run test:social-reply-monitor && npm run test:sync-launch-assets && npm run test:ai-search-visibility && npm run test:perplexity && npm run test:security-scanner && npm run test:llm-client && npm run test:managed-lesson-agent && npm run test:self-distill && npm run test:meta-agent && npm run test:harness-selector && npm run test:thumbgate-bench && npm run test:seo-guides && npm run test:enforcement-loop && npm run test:cli-agent-experience && npm run test:bot-detection && npm run test:checkout-bot-guard && npm run test:session-health && npm run test:session-episodes && npm run test:spec-gate && npm run test:decision-trace && npm run test:dashboard-insights && npm run test:telemetry-tracked-link-slug && npm run test:prompt-eval && npm run test:demo-voiceover && npm run test:gate-coherence && npm run test:gate-eval && npm run test:high-roi && npm run test:public-static-assets && npm run test:token-savings && npm run test:numbers-page && npm run test:workflow-gate-checkpoint && npm run test:lesson-export-import && npm run test:landing-page-claims && npm run test:competitive-positioning-marketing && npm run test:medium-weekly && npm run test:dashboard-deeplink-e2e && npm run test:public-package-parity && npm run test:token-savings-dashboard && npm run test:cursor-wiring && npm run test:pretooluse-injection && npm run test:recent-corrective-context && npm run test:durability-step && npm run test:mailer && npm run test:brand-assets && npm run test:enforcement-teeth && npm run test:bayes-optimal-gate && npm run test:swarm-coordinator && npm run test:session-report && npm run test:agent-reasoning-traces && npm run test:judge-reward && npm run test:llm-behavior-monitor && npm run test:prompting-os && npm run test:single-use-credential-gate && npm run test:structured-prompt-driven && npm run test:require-evidence-gate && npm run test:rule-validator && npm run test:bluesky-atproto && npm run test:social-reply-monitor-bluesky && npm run test:bluesky-delete-replies && npm run test:architect-kit-memory-bridge && npm run test:sonar-review-hotspots && npm run test:actionable-remediations && npm run test:gemini-embedding-policy && npm run test:agent-design-governance && npm run test:public-core-boundary",
|
|
279
322
|
"test:swarm-coordinator": "node --test tests/swarm-coordinator.test.js",
|
|
280
323
|
"test:session-report": "node --test tests/session-report.test.js",
|
|
324
|
+
"test:agent-reasoning-traces": "node --test tests/agent-reasoning-traces.test.js tests/agent-stack-survival-audit.test.js",
|
|
325
|
+
"test:gemini-embedding-policy": "node --test tests/gemini-embedding-policy.test.js",
|
|
326
|
+
"test:agent-design-governance": "node --test tests/agent-design-governance.test.js",
|
|
327
|
+
"test:proactive-agent-eval-guardrails": "node --test tests/proactive-agent-eval-guardrails.test.js",
|
|
328
|
+
"test:reward-hacking-guardrails": "node --test tests/reward-hacking-guardrails.test.js",
|
|
329
|
+
"test:oss-pr-opportunity-scout": "node --test tests/oss-pr-opportunity-scout.test.js",
|
|
330
|
+
"test:chatgpt-ads-readiness-pack": "node --test tests/chatgpt-ads-readiness-pack.test.js",
|
|
331
|
+
"test:judge-reward": "node --test tests/judge-reward-function.test.js",
|
|
332
|
+
"test:llm-behavior-monitor": "node --test tests/llm-behavior-monitor.test.js",
|
|
333
|
+
"test:prompting-os": "node --test tests/prompting-operating-system.test.js",
|
|
334
|
+
"test:single-use-credential-gate": "node --test tests/single-use-credential-gate.test.js",
|
|
335
|
+
"test:structured-prompt-driven": "node --test tests/structured-prompt-driven.test.js",
|
|
281
336
|
"test:require-evidence-gate": "node --test tests/require-evidence-gate.test.js",
|
|
282
337
|
"test:rule-validator": "node --test tests/rule-validator.test.js",
|
|
283
338
|
"test:session-health": "node --test tests/session-health-sensor.test.js",
|
|
@@ -342,10 +397,10 @@
|
|
|
342
397
|
"test:loop": "node scripts/feedback-loop.js --test",
|
|
343
398
|
"test:dpo": "node scripts/export-dpo-pairs.js --test",
|
|
344
399
|
"test:kto": "node --test tests/export-kto.test.js",
|
|
345
|
-
"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/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",
|
|
400
|
+
"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",
|
|
346
401
|
"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",
|
|
347
402
|
"test:e2e": "node --test tests/e2e-pipeline.test.js tests/e2e-product-flows.test.js tests/e2e-coverage-contract.test.js",
|
|
348
|
-
"test:rlaif": "node --test tests/rlaif-self-audit.test.js tests/dpo-optimizer.test.js tests/meta-policy.test.js",
|
|
403
|
+
"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",
|
|
349
404
|
"test:attribution": "node --test tests/feedback-attribution.test.js tests/hybrid-feedback-context.test.js",
|
|
350
405
|
"test:quality": "node --test tests/validate-feedback.test.js",
|
|
351
406
|
"test:intelligence": "node --test tests/intelligence.test.js",
|
|
@@ -355,7 +410,7 @@
|
|
|
355
410
|
"test:workflow": "node --test tests/workflow-contract.test.js tests/social-marketing-assets.test.js tests/social-pipeline.test.js tests/positioning-contract.test.js tests/docs-claim-hygiene.test.js tests/thumbgate-scope.test.js tests/workflow-runs.test.js tests/workflow-sprint-intake.test.js tests/gtm-revenue-loop.test.js tests/may-2026-revenue-machine.test.js tests/customer-discovery-sprint.test.js tests/revenue-pack-utils.test.js tests/aiventyx-marketplace-plan.test.js tests/cursor-marketplace-revenue-pack.test.js tests/codex-marketplace-revenue-pack.test.js tests/codex-plugin-revenue-pack.test.js tests/gemini-cli-demand-pack.test.js tests/roo-sunset-demand-pack.test.js tests/linkedin-workflow-hardening-pack.test.js tests/chatgpt-gpt-revenue-pack.test.js tests/mcp-directory-revenue-pack.test.js tests/autonomous-sales-agent.test.js tests/reddit-dm-workflow-hardening-pack.test.js tests/sales-pipeline.test.js tests/reddit-dm-outreach.test.js tests/github-outreach.test.js tests/enterprise-story.test.js tests/ralph-loop.test.js tests/ralph-mode-ci.test.js tests/guide-conversion-path.test.js tests/roo-sunset-marketing.test.js",
|
|
356
411
|
"test:sales-pipeline": "node --test tests/sales-pipeline.test.js",
|
|
357
412
|
"test:billing": "node --test tests/billing.test.js tests/stripe-sync-product-images.test.js",
|
|
358
|
-
"test:cli": "node --test tests/analytics-report.test.js tests/codex-self-heal.test.js tests/creator-campaigns.test.js tests/cli.test.js tests/codex-bridge-script.test.js tests/dependabot-changeset.test.js tests/dispatch-brief.test.js tests/feedback-normalize.test.js tests/install-mcp.test.js tests/pr-manager.test.js tests/pro-local-dashboard.test.js tests/published-cli.test.js tests/revenue-status.test.js tests/stripe-live-status.test.js",
|
|
413
|
+
"test:cli": "node --test tests/analytics-report.test.js tests/agent-design-governance.test.js tests/codex-self-heal.test.js tests/creator-campaigns.test.js tests/cli.test.js tests/codex-bridge-script.test.js tests/dependabot-changeset.test.js tests/dispatch-brief.test.js tests/feedback-normalize.test.js tests/install-mcp.test.js tests/pr-manager.test.js tests/pro-local-dashboard.test.js tests/published-cli.test.js tests/revenue-status.test.js tests/stripe-live-status.test.js",
|
|
359
414
|
"test:evolution": "node --test tests/workspace-evolver.test.js",
|
|
360
415
|
"test:watcher": "node --test tests/jsonl-watcher.test.js",
|
|
361
416
|
"test:autoresearch": "node --test tests/autoresearch.test.js",
|
|
@@ -483,9 +538,9 @@
|
|
|
483
538
|
"test:publish-thumbgate-launch": "node --test tests/publish-thumbgate-launch.test.js",
|
|
484
539
|
"test:reconcile-thumbgate-campaign": "node --test tests/reconcile-thumbgate-campaign.test.js",
|
|
485
540
|
"test:schedule-thumbgate-campaign": "node --test tests/schedule-thumbgate-campaign.test.js",
|
|
486
|
-
"test:social-reply-monitor": "node --test tests/social-reply-monitor.test.js",
|
|
541
|
+
"test:social-reply-monitor": "node --test tests/social-reply-monitor.test.js tests/reddit-monitor-launchd.test.js",
|
|
487
542
|
"test:bluesky-atproto": "node --test tests/bluesky-atproto.test.js",
|
|
488
|
-
"test:social-reply-monitor-bluesky": "node --test tests/social-reply-monitor-bluesky.test.js",
|
|
543
|
+
"test:social-reply-monitor-bluesky": "node --test tests/social-reply-monitor-bluesky.test.js tests/bluesky-monitor-launchd.test.js tests/social-bluesky-prospecting.test.js",
|
|
489
544
|
"test:bluesky-delete-replies": "node --test tests/bluesky-delete-replies.test.js",
|
|
490
545
|
"test:architect-kit-memory-bridge": "node --test tests/architect-kit-memory-bridge.test.js",
|
|
491
546
|
"test:sonar-review-hotspots": "node --test tests/sonar-review-hotspots.test.js",
|
|
@@ -530,7 +585,8 @@
|
|
|
530
585
|
"test:gate-coherence": "node --test tests/gate-coherence.test.js",
|
|
531
586
|
"test:gate-eval": "node --test tests/gate-eval.test.js",
|
|
532
587
|
"gate-eval:ci": "node scripts/gate-eval.js run",
|
|
533
|
-
"test:
|
|
588
|
+
"test:ai-engineering-stack-guardrails": "node --test tests/ai-engineering-stack-guardrails.test.js",
|
|
589
|
+
"test:high-roi": "node --test tests/high-roi.test.js tests/model-candidates.test.js tests/autonomous-workflow.test.js tests/high-roi-agent-workflows.test.js tests/code-graph-guardrails.test.js tests/proxy-pointer-rag-guardrails.test.js tests/rag-precision-guardrails.test.js tests/ai-engineering-stack-guardrails.test.js tests/long-running-agent-context-guardrails.test.js tests/reasoning-efficiency-guardrails.test.js tests/deepseek-v4-runtime-guardrails.test.js tests/upstream-contribution-engine.test.js tests/proactive-agent-eval-guardrails.test.js tests/reward-hacking-guardrails.test.js tests/chatgpt-ads-readiness-pack.test.js tests/oss-pr-opportunity-scout.test.js tests/agent-design-governance.test.js tests/gemini-embedding-policy.test.js",
|
|
534
590
|
"test:public-static-assets": "node --test tests/public-static-assets.test.js",
|
|
535
591
|
"test:token-savings": "node --test tests/token-savings.test.js",
|
|
536
592
|
"test:numbers-page": "node --test tests/numbers-page.test.js",
|
|
@@ -538,7 +594,8 @@
|
|
|
538
594
|
"workflow:autonomous": "node scripts/autonomous-workflow.js",
|
|
539
595
|
"test:lesson-export-import": "node --test tests/lesson-export-import.test.js",
|
|
540
596
|
"test:landing-page-claims": "node --test tests/landing-page-claims.test.js",
|
|
541
|
-
"test:competitive-positioning-marketing": "node --test tests/competitive-positioning-marketing.test.js",
|
|
597
|
+
"test:competitive-positioning-marketing": "node --test tests/competitive-positioning-marketing.test.js tests/knowledge-graph-guardrails.test.js tests/supply-chain-guardrails.test.js",
|
|
598
|
+
"test:medium-weekly": "node --test tests/medium-weekly.test.js",
|
|
542
599
|
"test:dashboard-deeplink-e2e": "node --test tests/dashboard-deeplink-e2e.test.js",
|
|
543
600
|
"test:public-package-parity": "node --test tests/public-package-parity.test.js",
|
|
544
601
|
"prepare": "bash bin/install-hooks.sh >/dev/null 2>&1 || true",
|
|
@@ -627,6 +684,6 @@
|
|
|
627
684
|
"@changesets/changelog-github": "^0.6.0",
|
|
628
685
|
"@changesets/cli": "^2.31.0",
|
|
629
686
|
"c8": "^11.0.0",
|
|
630
|
-
"undici": "^8.
|
|
687
|
+
"undici": "^8.2.0"
|
|
631
688
|
}
|
|
632
689
|
}
|
package/public/compare.html
CHANGED
|
@@ -249,6 +249,12 @@
|
|
|
249
249
|
<p><a href="/compare/ai-experience-orchestration" class="cta">Read orchestration vs enforcement</a></p>
|
|
250
250
|
</div>
|
|
251
251
|
|
|
252
|
+
<div class="card">
|
|
253
|
+
<h3>Comparing custom AI agent agencies?</h3>
|
|
254
|
+
<p>AI automation agencies validate the same buyer pain: production agents need safe action execution, policy checks, observability, and approval boundaries. ThumbGate owns the productized enforcement layer under those workflows.</p>
|
|
255
|
+
<p><a href="/compare/agentix-labs" class="cta">Read ThumbGate vs Agentix Labs</a></p>
|
|
256
|
+
</div>
|
|
257
|
+
|
|
252
258
|
<h2>How It Works</h2>
|
|
253
259
|
<div class="step-grid">
|
|
254
260
|
<div class="step-card">
|