thumbgate 1.27.19 → 1.28.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/commands/dashboard.md +15 -0
- package/.claude/commands/thumbgate-blocked.md +27 -0
- package/.claude/commands/thumbgate-dashboard.md +15 -0
- package/.claude/commands/thumbgate-doctor.md +30 -0
- package/.claude/commands/thumbgate-guard.md +36 -0
- package/.claude/commands/thumbgate-protect.md +30 -0
- package/.claude/commands/thumbgate-rules.md +30 -0
- package/.claude-plugin/plugin.json +1 -1
- package/.well-known/mcp/server-card.json +1 -1
- package/README.md +63 -45
- package/adapters/claude/.mcp.json +2 -2
- package/adapters/gcp/dfcx-webhook-gate.js +295 -0
- package/adapters/letta/README.md +41 -0
- package/adapters/letta/thumbgate-letta-adapter.js +133 -0
- package/adapters/mcp/server-stdio.js +1 -1
- package/adapters/opencode/opencode.json +1 -1
- package/adapters/policy-engine/ethicore-guardian-client.js +68 -0
- package/adapters/policy-engine/thumbgate-policy-engine-adapter.js +260 -0
- package/bench/observability-eval-suite.json +26 -0
- package/bin/cli.js +52 -9
- package/bin/dashboard-cli.js +7 -0
- package/bin/postinstall.js +14 -23
- package/commands/dashboard.md +15 -0
- package/commands/thumbgate-dashboard.md +15 -0
- package/config/entitlement-public-keys.json +6 -0
- package/config/gates/default.json +1 -1
- package/config/github-about.json +2 -2
- package/config/merge-quality-checks.json +3 -0
- package/package.json +233 -100
- package/public/about.html +159 -0
- package/public/agent-manager.html +179 -0
- package/public/agents-cost-savings.html +153 -0
- package/public/ai-malpractice-prevention.html +818 -0
- package/public/assets/brand/github-social-preview.png +0 -0
- package/public/assets/brand/thumbgate-icon-512.png +0 -0
- package/public/assets/brand/thumbgate-icon-pro-512.png +0 -0
- package/public/assets/brand/thumbgate-icon-team-512.png +0 -0
- package/public/assets/brand/thumbgate-logo-1200x360.png +0 -0
- package/public/assets/brand/thumbgate-logo-transparent.svg +28 -0
- package/public/assets/brand/thumbgate-mark-inline-v3.svg +18 -0
- package/public/assets/brand/thumbgate-mark-pro.svg +23 -0
- package/public/assets/brand/thumbgate-mark-team.svg +26 -0
- package/public/assets/brand/thumbgate-mark.svg +21 -0
- package/public/assets/brand/thumbgate-wordmark.svg +20 -0
- package/public/assets/claude-thumbgate-statusbar.svg +8 -0
- package/public/assets/codex-thumbgate-statusbar-test.svg +9 -0
- package/public/assets/legal-intake-control-flow.svg +66 -0
- package/public/blog.html +12 -9
- package/public/brand/thumbgate-mark.svg +19 -0
- package/public/brand/thumbgate-og.svg +16 -0
- package/public/chatgpt-app.html +330 -0
- package/public/codex-enterprise.html +123 -0
- package/public/codex-plugin.html +5 -5
- package/public/compare.html +10 -10
- package/public/dashboard.html +1 -1
- package/public/diagnostic.html +345 -0
- package/public/federal.html +2 -2
- package/public/guide.html +14 -14
- package/public/index.html +81 -70
- package/public/install.html +193 -0
- package/public/js/buyer-intent.js +672 -0
- package/public/learn.html +4 -17
- package/public/numbers.html +2 -2
- package/public/pricing.html +392 -0
- package/public/pro.html +2 -2
- package/scripts/action-receipts.js +324 -0
- package/scripts/activation-quickstart.js +187 -0
- package/scripts/agent-operations-planner.js +621 -0
- package/scripts/agent-reward-model.js +13 -0
- package/scripts/ai-component-inventory.js +367 -0
- package/scripts/async-eval-observability.js +236 -0
- package/scripts/audit.js +65 -0
- package/scripts/aws-blocks-guardrails.js +272 -0
- package/scripts/bayes-optimal-gate.js +6 -1
- package/scripts/classifier-routing.js +130 -0
- package/scripts/cli-feedback.js +17 -1
- package/scripts/commercial-offer.js +3 -3
- package/scripts/dashboard-chat.js +332 -0
- package/scripts/entitlement.js +250 -0
- package/scripts/export-databricks-bundle.js +5 -0
- package/scripts/export-dpo-pairs.js +6 -0
- package/scripts/export-hf-dataset.js +5 -0
- package/scripts/feedback-aggregate.js +281 -0
- package/scripts/feedback-sanitizer.js +105 -0
- package/scripts/gates-engine.js +15 -3
- package/scripts/hook-stop-anti-claim.js +301 -0
- package/scripts/imperative-detector.js +85 -0
- package/scripts/install-shim.js +87 -0
- package/scripts/intervention-policy.js +13 -0
- package/scripts/mcp-oauth.js +293 -0
- package/scripts/noop-detect.js +285 -0
- package/scripts/parallel-workflow-orchestrator.js +293 -0
- package/scripts/plan-gate.js +243 -0
- package/scripts/plausible-domain-config.js +99 -0
- package/scripts/pr-manager.js +9 -22
- package/scripts/pro-local-dashboard.js +198 -0
- package/scripts/qa-scenario-planner.js +136 -0
- package/scripts/repeat-metric.js +137 -0
- package/scripts/risk-scorer.js +6 -0
- package/scripts/secret-fixture-tokens.js +61 -0
- package/scripts/secret-redaction.js +166 -0
- package/scripts/self-harness-optimizer.js +141 -0
- package/scripts/self-healing-check.js +193 -0
- package/scripts/self-protection.js +90 -0
- package/scripts/seo-gsd.js +2 -2
- package/scripts/silent-failure-cluster.js +531 -0
- package/scripts/statusline-cache-read.js +57 -0
- package/scripts/sync-telemetry-from-prod.js +374 -0
- package/scripts/thompson-sampling.js +11 -2
- package/scripts/tool-contract-validator.js +76 -0
- package/scripts/trajectory-scorer.js +63 -0
- package/scripts/verify-marketing-pages-deployed.js +212 -0
- package/scripts/visitor-journey.js +172 -0
- package/src/api/server.js +81 -10
- package/.claude-plugin/marketplace.json +0 -85
- package/adapters/chatgpt/openapi.yaml +0 -1707
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thumbgate",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "ThumbGate self-improving agent governance: thumbs-up/down turns every mistake into a prevention rule and blocks repeat patterns.
|
|
5
|
-
"homepage": "https://thumbgate
|
|
3
|
+
"version": "1.28.0",
|
|
4
|
+
"description": "ThumbGate self-improving agent governance: thumbs-up/down turns every mistake into a prevention rule and blocks repeat patterns. 36 pre-action checks, budget enforcement, and self-protection for Claude Code, Cursor, Codex, Gemini CLI, and Amp.",
|
|
5
|
+
"homepage": "https://thumbgate.ai",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/IgorGanapolsky/ThumbGate.git"
|
|
@@ -12,110 +12,92 @@
|
|
|
12
12
|
},
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"bin": {
|
|
15
|
-
"thumbgate": "bin/cli.js"
|
|
15
|
+
"thumbgate": "bin/cli.js",
|
|
16
|
+
"thumbgate-dashboard": "bin/dashboard-cli.js"
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
|
-
".claude-plugin/marketplace.json",
|
|
19
|
-
".claude-plugin/plugin.json",
|
|
20
|
-
".well-known/",
|
|
21
|
-
"LICENSE",
|
|
22
|
-
"README.md",
|
|
23
|
-
"adapters/amp/skills/thumbgate-feedback/SKILL.md",
|
|
24
|
-
"adapters/chatgpt/openapi.yaml",
|
|
25
|
-
"adapters/claude/.mcp.json",
|
|
26
|
-
"adapters/codex/config.toml",
|
|
27
|
-
"adapters/forge/forge.yaml",
|
|
28
|
-
"adapters/gemini/function-declarations.json",
|
|
29
|
-
"adapters/mcp/server-stdio.js",
|
|
30
|
-
"adapters/opencode/opencode.json",
|
|
31
|
-
"bench/programbench-smoke.json",
|
|
32
|
-
"bench/prompt-eval-suite.json",
|
|
33
|
-
"bench/thumbgate-bench.json",
|
|
34
|
-
"bin/cli.js",
|
|
35
|
-
"bin/postinstall.js",
|
|
36
|
-
"config/",
|
|
37
|
-
"openapi/",
|
|
38
|
-
"public/blog.html",
|
|
39
|
-
"public/codex-plugin.html",
|
|
40
|
-
"public/compare.html",
|
|
41
|
-
"public/dashboard.html",
|
|
42
|
-
"public/federal.html",
|
|
43
|
-
"public/guide.html",
|
|
44
|
-
"public/index.html",
|
|
45
|
-
"public/learn.html",
|
|
46
|
-
"public/lessons.html",
|
|
47
|
-
"public/numbers.html",
|
|
48
|
-
"public/pro.html",
|
|
49
19
|
"scripts/access-anomaly-detector.js",
|
|
20
|
+
"scripts/action-receipts.js",
|
|
21
|
+
"scripts/activation-quickstart.js",
|
|
50
22
|
"scripts/activation-tracker.js",
|
|
51
23
|
"scripts/agent-audit-trace.js",
|
|
52
24
|
"scripts/agent-design-governance.js",
|
|
53
25
|
"scripts/agent-memory-lifecycle.js",
|
|
54
|
-
"scripts/agent-readiness.js",
|
|
55
26
|
"scripts/agent-readiness-plan.js",
|
|
27
|
+
"scripts/agent-readiness.js",
|
|
28
|
+
"scripts/agent-operations-planner.js",
|
|
56
29
|
"scripts/agent-reasoning-traces.js",
|
|
57
30
|
"scripts/agent-reward-model.js",
|
|
58
31
|
"scripts/agent-stack-survival-audit.js",
|
|
32
|
+
"scripts/aws-blocks-guardrails.js",
|
|
59
33
|
"scripts/agentic-data-pipeline.js",
|
|
34
|
+
"scripts/ai-component-inventory.js",
|
|
60
35
|
"scripts/ai-engineering-stack-guardrails.js",
|
|
61
36
|
"scripts/ai-search-distribution.js",
|
|
62
37
|
"scripts/analytics-window.js",
|
|
63
|
-
"scripts/
|
|
38
|
+
"scripts/async-eval-observability.js",
|
|
64
39
|
"scripts/async-job-runner.js",
|
|
65
40
|
"scripts/audit-trail.js",
|
|
41
|
+
"scripts/audit.js",
|
|
66
42
|
"scripts/auto-promote-gates.js",
|
|
67
43
|
"scripts/auto-wire-hooks.js",
|
|
44
|
+
"scripts/autoresearch-runner.js",
|
|
68
45
|
"scripts/background-agent-governance.js",
|
|
69
46
|
"scripts/bayes-optimal-gate.js",
|
|
70
47
|
"scripts/belief-update.js",
|
|
71
48
|
"scripts/billing.js",
|
|
72
49
|
"scripts/bot-detection.js",
|
|
73
|
-
"scripts/bot-detector.js",
|
|
74
50
|
"scripts/build-metadata.js",
|
|
51
|
+
"scripts/classifier-routing.js",
|
|
75
52
|
"scripts/chatgpt-ads-readiness-pack.js",
|
|
76
53
|
"scripts/claude-feedback-sync.js",
|
|
77
54
|
"scripts/cli-demo.js",
|
|
78
55
|
"scripts/cli-feedback.js",
|
|
79
56
|
"scripts/cli-schema.js",
|
|
80
57
|
"scripts/cli-status.js",
|
|
81
|
-
"scripts/cli-test-block.js",
|
|
82
58
|
"scripts/cli-telemetry.js",
|
|
59
|
+
"scripts/cli-test-block.js",
|
|
83
60
|
"scripts/cloudflare-dynamic-sandbox.js",
|
|
61
|
+
"scripts/code-graph-guardrails.js",
|
|
84
62
|
"scripts/code-mode-mcp-plan.js",
|
|
85
63
|
"scripts/code-reasoning.js",
|
|
86
|
-
"scripts/code-graph-guardrails.js",
|
|
87
64
|
"scripts/codegraph-context.js",
|
|
65
|
+
"scripts/codex-self-heal.js",
|
|
88
66
|
"scripts/commercial-offer.js",
|
|
89
|
-
"scripts/context-manager.js",
|
|
90
67
|
"scripts/context-engine.js",
|
|
68
|
+
"scripts/context-footprint.js",
|
|
69
|
+
"scripts/context-manager.js",
|
|
91
70
|
"scripts/contextfs.js",
|
|
92
71
|
"scripts/conversation-context.js",
|
|
93
|
-
"scripts/
|
|
94
|
-
"scripts/codex-self-heal.js",
|
|
72
|
+
"scripts/dashboard-chat.js",
|
|
95
73
|
"scripts/dashboard-render-spec.js",
|
|
96
74
|
"scripts/dashboard.js",
|
|
97
75
|
"scripts/decision-journal.js",
|
|
98
|
-
"scripts/durability/step.js",
|
|
99
76
|
"scripts/deepseek-v4-runtime-guardrails.js",
|
|
100
77
|
"scripts/docker-sandbox-planner.js",
|
|
101
78
|
"scripts/document-intake.js",
|
|
102
79
|
"scripts/document-workflow-governance.js",
|
|
80
|
+
"scripts/durability/step.js",
|
|
103
81
|
"scripts/evolution-state.js",
|
|
104
82
|
"scripts/experiment-tracker.js",
|
|
105
83
|
"scripts/explore-subcommands.js",
|
|
106
84
|
"scripts/explore.js",
|
|
107
85
|
"scripts/export-databricks-bundle.js",
|
|
86
|
+
"scripts/entitlement.js",
|
|
87
|
+
"config/entitlement-public-keys.json",
|
|
108
88
|
"scripts/export-dpo-pairs.js",
|
|
109
89
|
"scripts/export-hf-dataset.js",
|
|
110
90
|
"scripts/failure-diagnostics.js",
|
|
91
|
+
"scripts/feedback-aggregate.js",
|
|
111
92
|
"scripts/feedback-attribution.js",
|
|
112
93
|
"scripts/feedback-loop.js",
|
|
113
94
|
"scripts/feedback-paths.js",
|
|
114
95
|
"scripts/feedback-quality.js",
|
|
115
|
-
"scripts/
|
|
96
|
+
"scripts/feedback-sanitizer.js",
|
|
116
97
|
"scripts/feedback-schema.js",
|
|
117
98
|
"scripts/feedback-session.js",
|
|
118
99
|
"scripts/feedback-to-rules.js",
|
|
100
|
+
"scripts/feedback_quality_eval.py",
|
|
119
101
|
"scripts/filesystem-search.js",
|
|
120
102
|
"scripts/fs-utils.js",
|
|
121
103
|
"scripts/gate-stats.js",
|
|
@@ -126,12 +108,15 @@
|
|
|
126
108
|
"scripts/harness-selector.js",
|
|
127
109
|
"scripts/hf-papers.js",
|
|
128
110
|
"scripts/hook-runtime.js",
|
|
111
|
+
"scripts/hook-stop-anti-claim.js",
|
|
129
112
|
"scripts/hook-thumbgate-cache-updater.js",
|
|
130
113
|
"scripts/hosted-config.js",
|
|
131
114
|
"scripts/hybrid-feedback-context.js",
|
|
115
|
+
"scripts/imperative-detector.js",
|
|
132
116
|
"scripts/hybrid-supervisor-agent.js",
|
|
133
|
-
"scripts/install-mcp.js",
|
|
134
117
|
"scripts/inference-cache-policy.js",
|
|
118
|
+
"scripts/install-shim.js",
|
|
119
|
+
"scripts/install-mcp.js",
|
|
135
120
|
"scripts/internal-agent-bootstrap.js",
|
|
136
121
|
"scripts/intervention-policy.js",
|
|
137
122
|
"scripts/jsonl-watcher.js",
|
|
@@ -142,15 +127,15 @@
|
|
|
142
127
|
"scripts/lesson-rotation.js",
|
|
143
128
|
"scripts/lesson-search.js",
|
|
144
129
|
"scripts/lesson-synthesis.js",
|
|
145
|
-
"scripts/rule-validator.js",
|
|
146
130
|
"scripts/license.js",
|
|
147
|
-
"scripts/llm-client.js",
|
|
148
131
|
"scripts/llm-behavior-monitor.js",
|
|
149
|
-
"scripts/
|
|
150
|
-
"scripts/mailer/resend-mailer.js",
|
|
132
|
+
"scripts/llm-client.js",
|
|
151
133
|
"scripts/local-model-profile.js",
|
|
152
134
|
"scripts/long-running-agent-context-guardrails.js",
|
|
135
|
+
"scripts/mailer/index.js",
|
|
136
|
+
"scripts/mailer/resend-mailer.js",
|
|
153
137
|
"scripts/mcp-config.js",
|
|
138
|
+
"scripts/mcp-oauth.js",
|
|
154
139
|
"scripts/mcp-policy.js",
|
|
155
140
|
"scripts/mcp-transport-strategy.js",
|
|
156
141
|
"scripts/memory-firewall.js",
|
|
@@ -161,46 +146,60 @@
|
|
|
161
146
|
"scripts/multimodal-retrieval-plan.js",
|
|
162
147
|
"scripts/native-messaging-audit.js",
|
|
163
148
|
"scripts/natural-language-harness.js",
|
|
149
|
+
"scripts/noop-detect.js",
|
|
164
150
|
"scripts/obsidian-export.js",
|
|
151
|
+
"scripts/operational-integrity.js",
|
|
165
152
|
"scripts/oss-pr-opportunity-scout.js",
|
|
166
153
|
"scripts/otel-declarative-config.js",
|
|
167
|
-
"scripts/
|
|
154
|
+
"scripts/parallel-workflow-orchestrator.js",
|
|
168
155
|
"scripts/perplexity-client.js",
|
|
156
|
+
"scripts/plan-gate.js",
|
|
157
|
+
"scripts/plausible-domain-config.js",
|
|
169
158
|
"scripts/plausible-server-events.js",
|
|
170
159
|
"scripts/pr-manager.js",
|
|
171
160
|
"scripts/private-core-boundary.js",
|
|
172
161
|
"scripts/pro-local-dashboard.js",
|
|
173
|
-
"scripts/problem-detail.js",
|
|
174
162
|
"scripts/proactive-agent-eval-guardrails.js",
|
|
163
|
+
"scripts/problem-detail.js",
|
|
175
164
|
"scripts/product-feedback.js",
|
|
176
|
-
"scripts/prompting-operating-system.js",
|
|
177
|
-
"scripts/provider-action-normalizer.js",
|
|
178
165
|
"scripts/profile-router.js",
|
|
179
|
-
"scripts/prompt-programs.js",
|
|
180
166
|
"scripts/prompt-eval.js",
|
|
181
167
|
"scripts/prompt-guard.js",
|
|
168
|
+
"scripts/prompt-programs.js",
|
|
169
|
+
"scripts/prompting-operating-system.js",
|
|
170
|
+
"scripts/provider-action-normalizer.js",
|
|
182
171
|
"scripts/proxy-pointer-rag-guardrails.js",
|
|
183
|
-
"scripts/
|
|
172
|
+
"scripts/qa-scenario-planner.js",
|
|
184
173
|
"scripts/published-cli.js",
|
|
174
|
+
"scripts/rag-precision-guardrails.js",
|
|
185
175
|
"scripts/rate-limiter.js",
|
|
186
176
|
"scripts/reasoning-efficiency-guardrails.js",
|
|
177
|
+
"scripts/repeat-metric.js",
|
|
187
178
|
"scripts/reward-hacking-guardrails.js",
|
|
188
179
|
"scripts/risk-scorer.js",
|
|
189
180
|
"scripts/rlaif-self-audit.js",
|
|
190
181
|
"scripts/rubric-engine.js",
|
|
182
|
+
"scripts/rule-validator.js",
|
|
191
183
|
"scripts/secret-scanner.js",
|
|
184
|
+
"scripts/secret-fixture-tokens.js",
|
|
185
|
+
"scripts/secret-redaction.js",
|
|
186
|
+
"scripts/self-protection.js",
|
|
192
187
|
"scripts/security-scanner.js",
|
|
193
188
|
"scripts/self-distill-agent.js",
|
|
194
189
|
"scripts/self-heal.js",
|
|
190
|
+
"scripts/self-harness-optimizer.js",
|
|
191
|
+
"scripts/self-healing-check.js",
|
|
195
192
|
"scripts/semantic-dedup.js",
|
|
196
193
|
"scripts/semantic-layer.js",
|
|
197
194
|
"scripts/seo-gsd.js",
|
|
198
195
|
"scripts/settings-hierarchy.js",
|
|
196
|
+
"scripts/silent-failure-cluster.js",
|
|
197
|
+
"scripts/single-use-credential-gate.js",
|
|
199
198
|
"scripts/skill-generator.js",
|
|
200
199
|
"scripts/skill-rag-router.js",
|
|
201
|
-
"scripts/single-use-credential-gate.js",
|
|
202
200
|
"scripts/slo-alert-engine.js",
|
|
203
201
|
"scripts/spec-gate.js",
|
|
202
|
+
"scripts/statusline-cache-read.js",
|
|
204
203
|
"scripts/statusline-cache-path.js",
|
|
205
204
|
"scripts/statusline-context.js",
|
|
206
205
|
"scripts/statusline-lesson.js",
|
|
@@ -210,26 +209,85 @@
|
|
|
210
209
|
"scripts/statusline-tower.js",
|
|
211
210
|
"scripts/statusline.sh",
|
|
212
211
|
"scripts/structured-prompt-driven.js",
|
|
212
|
+
"scripts/sync-telemetry-from-prod.js",
|
|
213
213
|
"scripts/synthetic-data-provenance.js",
|
|
214
214
|
"scripts/task-context-result.js",
|
|
215
215
|
"scripts/telemetry-analytics.js",
|
|
216
216
|
"scripts/thompson-sampling.js",
|
|
217
217
|
"scripts/thumbgate-bench.js",
|
|
218
218
|
"scripts/thumbgate-search.js",
|
|
219
|
-
"scripts/
|
|
219
|
+
"scripts/trajectory-scorer.js",
|
|
220
220
|
"scripts/token-savings.js",
|
|
221
|
+
"scripts/token-tco.js",
|
|
222
|
+
"scripts/tool-contract-validator.js",
|
|
221
223
|
"scripts/tool-registry.js",
|
|
222
224
|
"scripts/upstream-contribution-engine.js",
|
|
223
225
|
"scripts/user-profile.js",
|
|
224
226
|
"scripts/validate-workflow-contract.js",
|
|
225
227
|
"scripts/vector-store.js",
|
|
226
|
-
"scripts/verifier-scoring.js",
|
|
227
228
|
"scripts/verification-loop.js",
|
|
229
|
+
"scripts/verifier-scoring.js",
|
|
230
|
+
"scripts/verify-marketing-pages-deployed.js",
|
|
231
|
+
"scripts/visitor-journey.js",
|
|
228
232
|
"scripts/workflow-runs.js",
|
|
229
233
|
"scripts/workflow-sentinel.js",
|
|
230
234
|
"scripts/workspace-agent-routines.js",
|
|
231
235
|
"scripts/workspace-evolver.js",
|
|
232
236
|
"scripts/xmemory-lite.js",
|
|
237
|
+
".claude-plugin/plugin.json",
|
|
238
|
+
".claude/commands/",
|
|
239
|
+
"commands/",
|
|
240
|
+
".well-known/",
|
|
241
|
+
"LICENSE",
|
|
242
|
+
"README.md",
|
|
243
|
+
"adapters/amp/skills/thumbgate-feedback/SKILL.md",
|
|
244
|
+
"adapters/claude/.mcp.json",
|
|
245
|
+
"adapters/codex/config.toml",
|
|
246
|
+
"adapters/forge/forge.yaml",
|
|
247
|
+
"adapters/gemini/function-declarations.json",
|
|
248
|
+
"adapters/letta/README.md",
|
|
249
|
+
"adapters/letta/thumbgate-letta-adapter.js",
|
|
250
|
+
"adapters/gcp/dfcx-webhook-gate.js",
|
|
251
|
+
"adapters/policy-engine/README.md",
|
|
252
|
+
"adapters/policy-engine/ethicore-guardian-client.js",
|
|
253
|
+
"adapters/policy-engine/thumbgate-policy-engine-adapter.js",
|
|
254
|
+
"adapters/mcp/server-stdio.js",
|
|
255
|
+
"adapters/opencode/opencode.json",
|
|
256
|
+
"bench/programbench-smoke.json",
|
|
257
|
+
"bench/prompt-eval-suite.json",
|
|
258
|
+
"bench/observability-eval-suite.json",
|
|
259
|
+
"bench/thumbgate-bench.json",
|
|
260
|
+
"bin/cli.js",
|
|
261
|
+
"bin/dashboard-cli.js",
|
|
262
|
+
"bin/postinstall.js",
|
|
263
|
+
"config/",
|
|
264
|
+
"openapi/",
|
|
265
|
+
"public/about.html",
|
|
266
|
+
"public/agent-manager.html",
|
|
267
|
+
"public/blog.html",
|
|
268
|
+
"public/codex-enterprise.html",
|
|
269
|
+
"public/agents-cost-savings.html",
|
|
270
|
+
"public/ai-malpractice-prevention.html",
|
|
271
|
+
"public/chatgpt-app.html",
|
|
272
|
+
"public/codex-plugin.html",
|
|
273
|
+
"public/compare.html",
|
|
274
|
+
"public/dashboard.html",
|
|
275
|
+
"public/diagnostic.html",
|
|
276
|
+
"public/federal.html",
|
|
277
|
+
"public/guide.html",
|
|
278
|
+
"public/install.html",
|
|
279
|
+
"public/index.html",
|
|
280
|
+
"public/learn.html",
|
|
281
|
+
"public/lessons.html",
|
|
282
|
+
"public/numbers.html",
|
|
283
|
+
"public/pricing.html",
|
|
284
|
+
"public/pro.html",
|
|
285
|
+
"public/assets/brand/",
|
|
286
|
+
"public/assets/claude-thumbgate-statusbar.svg",
|
|
287
|
+
"public/assets/codex-thumbgate-statusbar-test.svg",
|
|
288
|
+
"public/assets/legal-intake-control-flow.svg",
|
|
289
|
+
"public/brand/",
|
|
290
|
+
"public/js/",
|
|
233
291
|
"skills/thumbgate/SKILL.md",
|
|
234
292
|
"src/"
|
|
235
293
|
],
|
|
@@ -249,6 +307,7 @@
|
|
|
249
307
|
"verify:full": "node scripts/verify-run.js full",
|
|
250
308
|
"budget:status": "node scripts/budget-guard.js --status",
|
|
251
309
|
"revenue:status": "node scripts/revenue-status.js",
|
|
310
|
+
"revenue:truth": "bash bin/revenue-truth.sh",
|
|
252
311
|
"revenue:doctor": "node scripts/revenue-observability-doctor.js",
|
|
253
312
|
"revenue:plan": "node scripts/may-2026-revenue-machine.js",
|
|
254
313
|
"revenue:status:local": "node bin/cli.js cfo",
|
|
@@ -258,23 +317,19 @@
|
|
|
258
317
|
"stripe:live": "node scripts/stripe-live-status.js",
|
|
259
318
|
"stripe:webhook:audit": "node scripts/rotate-stripe-webhook-secret.js --audit",
|
|
260
319
|
"stripe:webhook:disable-legacy": "node scripts/rotate-stripe-webhook-secret.js --disable-legacy",
|
|
320
|
+
"zai:smoke": "node scripts/zai-smoke.js",
|
|
261
321
|
"gtm:revenue-loop": "node scripts/autonomous-sales-agent.js",
|
|
262
322
|
"gtm:aiventyx": "node scripts/aiventyx-marketplace-plan.js",
|
|
263
323
|
"gtm:chatgpt": "node scripts/chatgpt-gpt-revenue-pack.js",
|
|
264
324
|
"gtm:codex": "node scripts/codex-marketplace-revenue-pack.js",
|
|
265
325
|
"gtm:linkedin": "node scripts/linkedin-workflow-hardening-pack.js",
|
|
326
|
+
"gtm:okara-automation": "node scripts/okara-money-promo-automation.js",
|
|
327
|
+
"gtm:okara-automation:write": "node scripts/okara-money-promo-automation.js --write",
|
|
266
328
|
"gtm:roo-sunset": "node scripts/roo-sunset-demand-pack.js",
|
|
267
329
|
"gtm:reddit": "node scripts/reddit-dm-workflow-hardening-pack.js",
|
|
268
330
|
"medium:weekly:draft": "node scripts/medium-weekly.js --write",
|
|
269
331
|
"medium:weekly:schedule": "node scripts/medium-weekly.js --schedule",
|
|
270
332
|
"sales:pipeline": "node scripts/sales-pipeline.js",
|
|
271
|
-
"social:prepare": "node scripts/social-pipeline.js prepare",
|
|
272
|
-
"social:post": "node scripts/social-pipeline.js post",
|
|
273
|
-
"social:queue": "node scripts/social-pipeline.js queue",
|
|
274
|
-
"social:publish": "node scripts/social-pipeline.js publish",
|
|
275
|
-
"social:publish:queue": "node scripts/social-pipeline.js publish-queue",
|
|
276
|
-
"social:scheduler:install": "node scripts/social-pipeline.js install-scheduler",
|
|
277
|
-
"social:status": "node scripts/social-pipeline.js status",
|
|
278
333
|
"social:poll": "node scripts/social-analytics/poll-all.js",
|
|
279
334
|
"social:poll:github": "node scripts/social-analytics/pollers/github.js",
|
|
280
335
|
"social:poll:instagram": "node scripts/social-analytics/pollers/instagram.js",
|
|
@@ -328,19 +383,21 @@
|
|
|
328
383
|
"social:prospect:bluesky": "node scripts/social-bluesky-prospecting.js",
|
|
329
384
|
"social:prospect:bluesky:dry": "node scripts/social-bluesky-prospecting.js --dry-run",
|
|
330
385
|
"social:reply-publish:bluesky:dry": "node scripts/social-reply-monitor-bluesky.js --publish-approved --dry-run",
|
|
386
|
+
"test": "npm run test:python && 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:billing-setup && 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:platform-limits && npm run test:post-video && npm run test:post-everywhere-instagram && npm run test:post-everywhere-channels && 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:release-window && npm run test:check-congruence && npm run test:tool-registry && npm run test:repeat-metric && npm run test:noop-detect && npm run test:action-receipts && npm run test:feedback-to-rules && npm run test:memory-firewall && npm run test:memory-scope-readiness && 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:mcp-tool-annotations && npm run test:mcp-oauth && npm run test:mcp-oauth-flow && npm run test:plan-gate && npm run test:ai-component-inventory && 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:entitlement && npm run test:export-dpo-pairs && npm run test:export-hf-dataset && npm run test:license && npm run test:imperative-detector && npm run test:audit-pr-bot-contamination && npm run test:stripe-bootstrap-saas-catalog && 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:statusline-cache-aggregate && npm run test:public-repo-hygiene && npm run test:no-internal-orchestration-leaks && 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:lesson-semantic-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:predictive-credible-range && 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:xss-checkout-escape && 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-archived-product-guard && npm run test:postgres-guard && npm run test:checkout-bot-guard && npm run test:checkout-pro-confirmation-gate && npm run test:pricing-page-telemetry && 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: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 && npm run test:hook-stop-verify-deploy && npm run test:hook-stop-anti-claim && npm run test:plausible-server-events && npm run test:activation-tracker && npm run test:activation-onboarding && npm run test:unified-revenue-rollup && npm run test:conversion-rate-stats && npm run test:external-customer-audit && npm run test:telemetry-export && npm run test:stripe-checkout-diagnostic && npm run test:stripe-business-identity-probe && npm run test:revenue-observability-doctor && npm run test:public-bundle-ratchet && npm run test:pack-runtime-integrity && npm run test:hook-self-protection && npm run test:self-protect-enforcement && npm run test:stripe-payment-link-update && npm run test:ci-cd-hygiene-audit && npm run test:verify-marketing-pages-deployed && npm run test:install-email-capture && npm run test:install-shim && npm run test:hook-runtime-subcommands && npm run test:implementation-notes && npm run test:daily-block-cap && npm run test:free-to-paid-conversion-units && npm run test:metrics-real-endpoint && npm run test:cli-trial-and-help && npm run test:cost-cli && npm run test:silent-failure-cluster && npm run test:proof:truth && node --test tests/adaptive-reliability.test.js && npm run test:mcp-oauth-reviewer && npm run test:dfcx-gate && npm run test:dfcx-gate-server && npm run test:vertex-scorer && npm run test:dashboard-chat && npm run test:gitar-integration && npm run test:secret-redaction && npm run test:discoverable-skills && npm run test:discoverable-skill-skills && npm run test:sync-telemetry && npm run test:leak-scanner && npm run test:team-sync && npm run test:eval-rag && npm run test:async-eval-observability && npm run test:letta-adapter && npm run test:policy-engine-adapter && npm run test:tool-contract-validator && npm run test:check-update && npm run test:hermes-gate && npm run test:memory-provider-enforcement-bridge && npm run test:publisher-credential-guards && npm run test:reddit-browser-notification-watch && npm run test:payment-rails && npm run test:cursor-marketplace-doctor && npm run test:okara-money-promo-automation",
|
|
331
387
|
"test:python": "python3 -m pytest tests/*.py",
|
|
332
|
-
"test
|
|
388
|
+
"test:check-update": "node --test tests/check-update.test.js",
|
|
333
389
|
"test:hook-stop-verify-deploy": "node --test tests/hook-stop-verify-deploy.test.js",
|
|
334
390
|
"test:hook-stop-anti-claim": "node --test tests/hook-stop-anti-claim.test.js",
|
|
335
|
-
"test:plausible-server-events": "node --test tests/plausible-server-events.test.js",
|
|
391
|
+
"test:plausible-server-events": "node --test tests/plausible-server-events.test.js tests/plausible-poller.test.js tests/plausible-domain-config.test.js",
|
|
336
392
|
"test:activation-tracker": "node --test tests/activation-tracker.test.js",
|
|
393
|
+
"test:activation-onboarding": "node --test tests/activation-onboarding.test.js",
|
|
337
394
|
"test:unified-revenue-rollup": "node --test tests/unified-revenue-rollup.test.js",
|
|
338
395
|
"test:conversion-rate-stats": "node --test tests/conversion-rate-stats.test.js",
|
|
339
396
|
"test:external-customer-audit": "node --test tests/external-customer-audit.test.js",
|
|
340
397
|
"test:stripe-checkout-diagnostic": "node --test tests/stripe-checkout-diagnostic.test.js",
|
|
341
398
|
"test:stripe-business-identity-probe": "node --test tests/stripe-business-identity-probe.test.js",
|
|
342
399
|
"test:ci-cd-hygiene-audit": "node --test tests/ci-cd-hygiene-audit.test.js",
|
|
343
|
-
"test:telemetry-export": "node --test tests/telemetry-export.test.js",
|
|
400
|
+
"test:telemetry-export": "node --test tests/telemetry-export.test.js tests/telemetry-analytics-quality.test.js",
|
|
344
401
|
"test:swarm-coordinator": "node --test tests/swarm-coordinator.test.js",
|
|
345
402
|
"test:session-report": "node --test tests/session-report.test.js",
|
|
346
403
|
"test:agent-reasoning-traces": "node --test tests/agent-reasoning-traces.test.js tests/agent-stack-survival-audit.test.js",
|
|
@@ -356,6 +413,7 @@
|
|
|
356
413
|
"test:single-use-credential-gate": "node --test tests/single-use-credential-gate.test.js",
|
|
357
414
|
"test:structured-prompt-driven": "node --test tests/structured-prompt-driven.test.js",
|
|
358
415
|
"test:require-evidence-gate": "node --test tests/require-evidence-gate.test.js",
|
|
416
|
+
"test:imperative-detector": "node --test tests/imperative-detector.test.js",
|
|
359
417
|
"test:rule-validator": "node --test tests/rule-validator.test.js",
|
|
360
418
|
"test:session-health": "node --test tests/session-health-sensor.test.js",
|
|
361
419
|
"test:session-episodes": "node --test tests/session-episode-store.test.js",
|
|
@@ -366,6 +424,10 @@
|
|
|
366
424
|
"eval:feedback": "node scripts/prompt-eval.js --from-feedback",
|
|
367
425
|
"eval:feedback-quality": "python3 scripts/feedback_quality_eval.py",
|
|
368
426
|
"eval:classifier": "python3 scripts/eval_gate_classifier.py",
|
|
427
|
+
"eval:rag": "node scripts/eval-rag.js",
|
|
428
|
+
"test:eval-rag": "node --test tests/eval-rag.test.js",
|
|
429
|
+
"eval:async-observability": "node scripts/async-eval-observability.js",
|
|
430
|
+
"test:async-eval-observability": "node --test tests/async-eval-observability.test.js",
|
|
369
431
|
"test:decision-trace": "node --test tests/decision-trace.test.js",
|
|
370
432
|
"test:feedback-fallback": "node --test tests/feedback-fallback.test.js",
|
|
371
433
|
"test:metaclaw": "node --test tests/metaclaw-features.test.js",
|
|
@@ -374,14 +436,27 @@
|
|
|
374
436
|
"test:multi-hop-recall": "node --test tests/multi-hop-recall.test.js",
|
|
375
437
|
"test:synthetic-dpo": "node --test tests/synthetic-dpo.test.js",
|
|
376
438
|
"test:thumbgate-skill": "node --test tests/thumbgate-skill.test.js",
|
|
377
|
-
"test:
|
|
439
|
+
"test:discoverable-skills": "node --test tests/discoverable-skills.test.js",
|
|
440
|
+
"test:discoverable-skill-skills": "node --test tests/discoverable-skill-skills.test.js",
|
|
441
|
+
"test:statusline": "node --test tests/claude-feedback-sync.test.js tests/statusline.test.js tests/statusline-aggregation.test.js tests/statusline-context.test.js tests/statusline-links.test.js tests/statusline-e2e.test.js",
|
|
442
|
+
"test:statusline-cache-aggregate": "node --test tests/statusline-cache-aggregate.test.js",
|
|
443
|
+
"test:no-internal-orchestration-leaks": "node --test tests/no-internal-orchestration-leaks.test.js",
|
|
378
444
|
"test:memory-dedup": "node --test tests/memory-dedup.test.js",
|
|
379
445
|
"test:lesson-db": "node --test tests/lesson-db.test.js",
|
|
380
446
|
"test:lesson-rotation": "node --test tests/lesson-rotation.test.js",
|
|
381
447
|
"test:feedback-quality": "node --test tests/feedback-quality.test.js",
|
|
382
448
|
"test:sync-version": "node --test tests/sync-version.test.js",
|
|
449
|
+
"test:release-window": "node --test tests/release-window.test.js",
|
|
450
|
+
"test:team-sync": "node --test tests/team-sync.test.js",
|
|
451
|
+
"test:sync-telemetry": "node --test tests/sync-telemetry-from-prod.test.js",
|
|
383
452
|
"test:check-congruence": "node --test tests/check-congruence.test.js",
|
|
384
453
|
"test:tool-registry": "node --test tests/tool-registry.test.js",
|
|
454
|
+
"test:dfcx-gate": "node --test tests/dfcx-webhook-gate.test.js",
|
|
455
|
+
"test:dfcx-gate-server": "node --test tests/dfcx-gate-server.test.js",
|
|
456
|
+
"test:vertex-scorer": "node --test tests/vertex-scorer.test.js",
|
|
457
|
+
"test:repeat-metric": "node --test tests/repeat-metric.test.js",
|
|
458
|
+
"test:noop-detect": "node --test tests/noop-detect.test.js",
|
|
459
|
+
"test:action-receipts": "node --test tests/action-receipts.test.js",
|
|
385
460
|
"test:learn-hub": "node --test tests/learn-hub.test.js",
|
|
386
461
|
"test:feedback-to-rules": "node --test tests/feedback-to-rules.test.js",
|
|
387
462
|
"test:memory-firewall": "node --test tests/memory-firewall.test.js",
|
|
@@ -390,10 +465,14 @@
|
|
|
390
465
|
"test:hosted-config": "node --test tests/hosted-config.test.js",
|
|
391
466
|
"test:operational-summary": "node --test tests/operational-summary.test.js",
|
|
392
467
|
"test:operational-dashboard": "node --test tests/operational-dashboard.test.js",
|
|
393
|
-
"test:operator-artifacts": "node --test tests/operator-artifacts.test.js tests/revenue-pack-utils.test.js
|
|
468
|
+
"test:operator-artifacts": "node --test tests/operator-artifacts.test.js tests/revenue-pack-utils.test.js",
|
|
469
|
+
"test:okara-money-promo-automation": "node --test tests/okara-money-promo-automation.test.js",
|
|
394
470
|
"test:operator-key-auth": "node --test tests/api-operator-key-auth.test.js",
|
|
395
471
|
"test:cloudflare-sandbox": "node --test tests/cloudflare-dynamic-sandbox.test.js tests/cloudflare-sandbox-api.test.js",
|
|
396
472
|
"test:mcp-config": "node --test tests/mcp-config.test.js",
|
|
473
|
+
"test:mcp-tool-annotations": "node --test tests/mcp-tool-annotations.test.js",
|
|
474
|
+
"test:mcp-oauth": "node --test tests/mcp-oauth.test.js",
|
|
475
|
+
"test:mcp-oauth-flow": "node --test tests/mcp-oauth-flow.test.js",
|
|
397
476
|
"test:plan-gate": "node --test tests/plan-gate.test.js",
|
|
398
477
|
"test:pulse": "node --test tests/pulse.test.js",
|
|
399
478
|
"test:semantic-layer": "node --test tests/semantic-layer.test.js",
|
|
@@ -408,8 +487,10 @@
|
|
|
408
487
|
"test:hf-papers": "node --test tests/hf-papers.test.js",
|
|
409
488
|
"test:marketing-experiment": "node --test tests/marketing-experiment.test.js",
|
|
410
489
|
"test:seo-gsd": "node --test tests/seo-gsd.test.js",
|
|
490
|
+
"test:hermes-gate": "node --test tests/hermes-gate.test.js",
|
|
411
491
|
"test:verify-run": "node --test tests/verify-run.test.js",
|
|
412
492
|
"test:export-dpo-pairs": "node --test tests/export-dpo-pairs.test.js",
|
|
493
|
+
"test:secret-redaction": "node --test tests/secret-redaction.test.js",
|
|
413
494
|
"test:export-hf-dataset": "node --test tests/export-hf-dataset.test.js",
|
|
414
495
|
"export:hf": "node scripts/export-hf-dataset.js",
|
|
415
496
|
"seo:gsd": "node scripts/seo-gsd.js plan",
|
|
@@ -422,7 +503,6 @@
|
|
|
422
503
|
"test:loop": "node scripts/feedback-loop.js --test",
|
|
423
504
|
"test:dpo": "node scripts/export-dpo-pairs.js --test",
|
|
424
505
|
"test:kto": "node --test tests/export-kto.test.js",
|
|
425
|
-
"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",
|
|
426
506
|
"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",
|
|
427
507
|
"test:e2e": "node --test tests/e2e-pipeline.test.js tests/e2e-product-flows.test.js tests/e2e-coverage-contract.test.js tests/interaction-model-e2e.test.js",
|
|
428
508
|
"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",
|
|
@@ -430,20 +510,21 @@
|
|
|
430
510
|
"test:quality": "node --test tests/validate-feedback.test.js tests/feedback-quality-eval-python.test.js tests/eval-gate-classifier.test.js",
|
|
431
511
|
"test:intelligence": "node --test tests/intelligence.test.js",
|
|
432
512
|
"test:training-export": "node --test tests/training-export.test.js tests/databricks-export.test.js",
|
|
433
|
-
"test:deployment": "node --test tests/deployment.test.js tests/deploy-policy.test.js tests/publish-decision.test.js tests/changeset-check.test.js tests/release-notes.test.js tests/sonarcloud-workflow.test.js tests/package-boundary.test.js tests/public-package-boundary.test.js
|
|
513
|
+
"test:deployment": "node --test tests/deployment.test.js tests/deploy-policy.test.js tests/publish-decision.test.js tests/changeset-check.test.js tests/release-notes.test.js tests/sonarcloud-workflow.test.js tests/package-boundary.test.js tests/public-package-boundary.test.js",
|
|
434
514
|
"test:operational-integrity": "node --test tests/operational-integrity.test.js tests/sync-branch-protection.test.js",
|
|
435
|
-
"test:workflow": "node --test tests/workflow
|
|
515
|
+
"test:workflow": "node --test tests/parallel-workflow.test.js tests/workflow-contract.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/revenue-pack-utils.test.js tests/sales-pipeline.test.js tests/github-outreach.test.js tests/enterprise-story.test.js tests/guide-conversion-path.test.js tests/buyer-intent-revenue-assist.test.js",
|
|
436
516
|
"test:sales-pipeline": "node --test tests/sales-pipeline.test.js",
|
|
437
517
|
"test:billing": "node --test tests/billing.test.js tests/stripe-sync-product-images.test.js",
|
|
438
|
-
"test:
|
|
518
|
+
"test:billing-setup": "node --test tests/billing-setup-redaction.test.js",
|
|
519
|
+
"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/install-scope-docs.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 tests/creator-dev-and-prune.test.js",
|
|
439
520
|
"test:evolution": "node --test tests/workspace-evolver.test.js",
|
|
440
521
|
"test:watcher": "node --test tests/jsonl-watcher.test.js",
|
|
441
522
|
"test:autoresearch": "node --test tests/autoresearch.test.js",
|
|
442
|
-
"test:ops": "node --test tests/adk-consolidator.test.js tests/anthropic-partner-strategy.test.js tests/auto-promote-gates.test.js tests/auto-wire-hooks.test.js tests/claude-skill.test.js tests/codegraph-context.test.js tests/commercial-signals.test.js tests/decision-journal.test.js tests/delegation-runtime.test.js tests/disagreement-mining.test.js tests/failure-diagnostics.test.js tests/gate-stats.test.js tests/git-hook-installer.test.js tests/github-billing.test.js tests/intervention-policy.test.js tests/markdown-escape.test.js tests/mcp-tools-gates.test.js tests/native-messaging-audit.test.js tests/project-bayes-e2e.test.js tests/project-bayes.test.js tests/rate-limiter.test.js tests/schedule-manager.test.js tests/session-handoff.test.js tests/skill-generator.test.js tests/smart-learning.test.js tests/spike-and-sink.test.js tests/stripe-revenue.test.js tests/stripe-webhook-route.test.js tests/stripe-webhook-rotation.test.js tests/train-from-feedback.test.js tests/workflow-hardening-sprint.test.js tests/workflow-sentinel.test.js tests/test-suite-parity.test.js tests/a2ui-engine.test.js tests/webhook-delivery.test.js",
|
|
523
|
+
"test:ops": "node --test tests/qa-scenario-planner.test.js tests/adk-consolidator.test.js tests/anthropic-partner-strategy.test.js tests/auto-promote-gates.test.js tests/auto-wire-hooks.test.js tests/claude-skill.test.js tests/codegraph-context.test.js tests/commercial-signals.test.js tests/decision-journal.test.js tests/delegation-runtime.test.js tests/disagreement-mining.test.js tests/failure-diagnostics.test.js tests/gate-stats.test.js tests/gates-engine-upgrade-cta.test.js tests/git-hook-installer.test.js tests/github-billing.test.js tests/intervention-policy.test.js tests/markdown-escape.test.js tests/mcp-tools-gates.test.js tests/native-messaging-audit.test.js tests/project-bayes-e2e.test.js tests/project-bayes.test.js tests/rate-limiter.test.js tests/schedule-manager.test.js tests/session-handoff.test.js tests/skill-generator.test.js tests/smart-learning.test.js tests/spike-and-sink.test.js tests/stripe-revenue.test.js tests/stripe-webhook-route.test.js tests/stripe-webhook-rotation.test.js tests/train-from-feedback.test.js tests/workflow-hardening-sprint.test.js tests/workflow-sentinel.test.js tests/test-suite-parity.test.js tests/a2ui-engine.test.js tests/webhook-delivery.test.js tests/auto-context-packs.test.js tests/daily-block-cap.test.js tests/auto-promote-regression-gate.test.js",
|
|
443
524
|
"test:session-analyzer": "node --test tests/session-analyzer.test.js",
|
|
444
525
|
"test:tessl": "node --test tests/tessl-export.test.js",
|
|
445
|
-
"test:gates": "node --test tests/gate-templates.test.js tests/gates-engine.test.js tests/claim-verification.test.js tests/secret-scanner.test.js tests/secret-fixture-safety.test.js tests/prompt-guard.test.js tests/audit-trail.test.js tests/profile-router.test.js tests/workflow-sentinel.test.js tests/docker-sandbox-planner.test.js",
|
|
446
|
-
"test:budget": "node --test tests/budget-enforcer.test.js",
|
|
526
|
+
"test:gates": "node --test tests/gate-templates.test.js tests/gates-engine.test.js tests/claim-verification.test.js tests/secret-scanner.test.js tests/secret-fixture-safety.test.js tests/prompt-guard.test.js tests/audit-trail.test.js tests/profile-router.test.js tests/workflow-sentinel.test.js tests/docker-sandbox-planner.test.js tests/mcp-tools-suggest-fix.test.js tests/deny-network-egress-pattern.test.js",
|
|
527
|
+
"test:budget": "node --test tests/budget-guard.test.js tests/budget-enforcer.test.js tests/tokenomics-cost-guard.test.js tests/hook-no-budget-lockout.test.js",
|
|
447
528
|
"test:workers": "npm --prefix workers ci && npm --prefix workers test",
|
|
448
529
|
"test:evoskill": "node --test tests/evoskill.test.js",
|
|
449
530
|
"test:gates-hardening": "node --test tests/gates-hardening.test.js",
|
|
@@ -493,23 +574,17 @@
|
|
|
493
574
|
"prove:xmemory": "node scripts/prove-xmemory.js",
|
|
494
575
|
"audit:stats": "node scripts/audit-trail.js --stats",
|
|
495
576
|
"profile:route": "node scripts/profile-router.js",
|
|
496
|
-
"social:poll:zernio": "node scripts/social-analytics/pollers/zernio.js",
|
|
497
|
-
"social:publish:zernio": "node scripts/social-analytics/publishers/zernio.js",
|
|
498
|
-
"social:zernio:status": "node scripts/social-analytics/zernio-status.js",
|
|
499
|
-
"test:zernio": "node --test tests/zernio-integration.test.js",
|
|
500
577
|
"test:platform-limits": "node --test tests/platform-limits.test.js",
|
|
501
578
|
"test:durability-step": "node --test tests/durability-step.test.js",
|
|
502
579
|
"test:post-video": "node --test tests/post-video.test.js",
|
|
503
580
|
"test:post-everywhere-instagram": "node --test tests/post-everywhere-instagram.test.js",
|
|
504
581
|
"test:post-everywhere-channels": "node --test tests/post-everywhere-channels.test.js",
|
|
505
|
-
"test:post-everywhere-zernio-default": "node --test tests/post-everywhere-zernio-default.test.js",
|
|
506
|
-
"test:zernio-canonical-pollers": "node --test tests/zernio-canonical-pollers.test.js",
|
|
507
|
-
"test:zernio-status": "node --test tests/zernio-status.test.js",
|
|
508
582
|
"test:license": "node --test tests/license.test.js",
|
|
509
|
-
"test:bot-detector": "node --test tests/bot-detector.test.js",
|
|
510
583
|
"test:audit-pr-bot-contamination": "node --test tests/audit-pr-bot-contamination.test.js",
|
|
511
584
|
"test:stripe-bootstrap-saas-catalog": "node --test tests/stripe-bootstrap-saas-catalog.test.js",
|
|
512
585
|
"test:bot-detection": "node --test tests/bot-detection.test.js",
|
|
586
|
+
"test:postgres-guard": "node --test tests/postgres-guard.test.js",
|
|
587
|
+
"test:checkout-archived-product-guard": "node --test tests/checkout-archived-product-guard.test.js",
|
|
513
588
|
"test:checkout-bot-guard": "node --test tests/checkout-bot-guard.test.js",
|
|
514
589
|
"test:checkout-pro-confirmation-gate": "node --test tests/checkout-pro-confirmation-gate.test.js",
|
|
515
590
|
"test:revenue-observability-doctor": "node --test tests/revenue-observability-doctor.test.js",
|
|
@@ -517,6 +592,7 @@
|
|
|
517
592
|
"test:funnel-invariants": "node --test tests/funnel-invariants.test.js",
|
|
518
593
|
"test:cli-telemetry": "node --test tests/cli-telemetry.test.js",
|
|
519
594
|
"test:pro-parity": "node --test tests/pro-parity.test.js",
|
|
595
|
+
"test:pricing-page-telemetry": "node --test tests/pricing-page-telemetry.test.js",
|
|
520
596
|
"test:skill-exporter": "node --test tests/skill-exporter.test.js",
|
|
521
597
|
"test:model-tier-router": "node --test tests/model-tier-router.test.js",
|
|
522
598
|
"test:computer-use-firewall": "node --test tests/computer-use-firewall.test.js",
|
|
@@ -525,6 +601,7 @@
|
|
|
525
601
|
"test:data-governance": "node --test tests/data-governance.test.js",
|
|
526
602
|
"test:lesson-inference": "node --test tests/conversation-context.test.js tests/lesson-inference.test.js tests/lesson-prompt-shape.test.js",
|
|
527
603
|
"test:lesson-retrieval": "node --test tests/lesson-retrieval.test.js",
|
|
604
|
+
"test:lesson-semantic-retrieval": "node --test tests/lesson-semantic-retrieval.test.js",
|
|
528
605
|
"test:cross-encoder": "node --test tests/cross-encoder-reranker.test.js",
|
|
529
606
|
"test:reflector-agent": "node --test tests/reflector-agent.test.js",
|
|
530
607
|
"test:public-core-boundary": "node --test tests/public-core-boundary.test.js",
|
|
@@ -533,6 +610,7 @@
|
|
|
533
610
|
"test:hallucination-detector": "node --test tests/hallucination-detector.test.js",
|
|
534
611
|
"test:history-distiller": "node --test tests/history-distiller.test.js",
|
|
535
612
|
"test:predictive-insights": "node --test tests/predictive-insights.test.js",
|
|
613
|
+
"test:predictive-credible-range": "node --test tests/predictive-credible-range.test.js",
|
|
536
614
|
"test:prove-predictive-insights": "node --test tests/prove-predictive-insights.test.js",
|
|
537
615
|
"prove:predictive-insights": "node scripts/prove-predictive-insights.js",
|
|
538
616
|
"test:statusbar-cli": "node --test tests/statusbar-cli.test.js",
|
|
@@ -564,14 +642,11 @@
|
|
|
564
642
|
"social:reconcile:campaign": "node scripts/social-analytics/reconcile-thumbgate-campaign.js",
|
|
565
643
|
"social:sync:launch-assets": "node scripts/social-analytics/sync-launch-assets.js",
|
|
566
644
|
"social:engagement:audit": "node scripts/social-analytics/engagement-audit.js",
|
|
567
|
-
"social:dedupe:cleanup": "node scripts/social-analytics/cleanup-zernio-duplicates.js",
|
|
568
645
|
"test:install-growth-automation": "node --test tests/install-growth-automation.test.js",
|
|
569
646
|
"test:publish-thumbgate-launch": "node --test tests/publish-thumbgate-launch.test.js",
|
|
570
|
-
"test:community-course-platform-launch-kit": "node --test tests/community-course-platform-launch-kit.test.js",
|
|
571
647
|
"test:reconcile-thumbgate-campaign": "node --test tests/reconcile-thumbgate-campaign.test.js",
|
|
572
648
|
"test:schedule-thumbgate-campaign": "node --test tests/schedule-thumbgate-campaign.test.js",
|
|
573
649
|
"test:social-reply-monitor": "node --test tests/social-reply-monitor.test.js tests/reddit-monitor-launchd.test.js",
|
|
574
|
-
"test:social-dedupe-cleanup": "node --test tests/cleanup-zernio-duplicates.test.js",
|
|
575
650
|
"test:bluesky-atproto": "node --test tests/bluesky-atproto.test.js",
|
|
576
651
|
"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",
|
|
577
652
|
"test:bluesky-delete-replies": "node --test tests/bluesky-delete-replies.test.js",
|
|
@@ -592,6 +667,7 @@
|
|
|
592
667
|
"agent:schedule": "node scripts/schedule-manager.js install --label managed-lesson-agent --spec 'daily 02:00' --command 'npm run agent:run' --workingDirectory .",
|
|
593
668
|
"feedback:rules:llm": "node scripts/feedback-to-rules.js --llm",
|
|
594
669
|
"test:self-distill": "node --test tests/self-distill-agent.test.js",
|
|
670
|
+
"test:silent-failure-cluster": "node --test tests/silent-failure-cluster.test.js",
|
|
595
671
|
"test:seo-guides": "node --test tests/seo-guides.test.js",
|
|
596
672
|
"self-distill:run": "node scripts/self-distill-agent.js",
|
|
597
673
|
"self-distill:dry": "node scripts/self-distill-agent.js --dry-run",
|
|
@@ -617,15 +693,18 @@
|
|
|
617
693
|
"test:explore": "node --test tests/explore.test.js",
|
|
618
694
|
"test:cli-schema": "node --test tests/cli-schema.test.js",
|
|
619
695
|
"test:cli-agent-experience": "node --test tests/cli-agent-experience.test.js",
|
|
620
|
-
"test:demo-voiceover": "node --test tests/demo-voiceover.test.js",
|
|
621
696
|
"test:gate-coherence": "node --test tests/gate-coherence.test.js",
|
|
622
697
|
"test:gate-eval": "node --test tests/gate-eval.test.js",
|
|
623
698
|
"gate-eval:ci": "node scripts/gate-eval.js run",
|
|
624
699
|
"test:ai-engineering-stack-guardrails": "node --test tests/ai-engineering-stack-guardrails.test.js",
|
|
700
|
+
"test:ai-component-inventory": "node --test tests/ai-component-inventory.test.js",
|
|
625
701
|
"test:interaction-model": "node --test tests/interaction-model.test.js tests/interaction-model-e2e.test.js",
|
|
626
|
-
"
|
|
702
|
+
"aws-blocks:guardrails": "node scripts/aws-blocks-guardrails.js",
|
|
703
|
+
"test:aws-blocks-guardrails": "node --test tests/aws-blocks-guardrails.test.js",
|
|
704
|
+
"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/interaction-model.test.js tests/interaction-model-e2e.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 tests/openclaw-agent-governance-kit.test.js tests/agent-operations-planner.test.js tests/aws-blocks-guardrails.test.js",
|
|
627
705
|
"test:public-static-assets": "node --test tests/public-static-assets.test.js",
|
|
628
706
|
"test:token-savings": "node --test tests/token-savings.test.js",
|
|
707
|
+
"test:cost-cli": "node --test tests/cost-cli.test.js tests/conversion-receipt.test.js",
|
|
629
708
|
"test:numbers-page": "node --test tests/numbers-page.test.js",
|
|
630
709
|
"test:workflow-gate-checkpoint": "node --test tests/workflow-gate-checkpoint.test.js tests/autonomous-workflow.test.js",
|
|
631
710
|
"workflow:autonomous": "node scripts/autonomous-workflow.js",
|
|
@@ -634,6 +713,10 @@
|
|
|
634
713
|
"test:competitive-positioning-marketing": "node --test tests/competitive-positioning-marketing.test.js tests/knowledge-graph-guardrails.test.js tests/supply-chain-guardrails.test.js",
|
|
635
714
|
"test:medium-weekly": "node --test tests/medium-weekly.test.js",
|
|
636
715
|
"test:dashboard-deeplink-e2e": "node --test tests/dashboard-deeplink-e2e.test.js",
|
|
716
|
+
"test:e2e:playwright": "playwright test",
|
|
717
|
+
"test:e2e:playwright:headed": "playwright test --headed",
|
|
718
|
+
"test:e2e:playwright:ui": "playwright test --ui",
|
|
719
|
+
"test:e2e:playwright:report": "playwright show-report",
|
|
637
720
|
"test:public-package-parity": "node --test tests/public-package-parity.test.js",
|
|
638
721
|
"prepare": "bash bin/install-hooks.sh >/dev/null 2>&1 || true",
|
|
639
722
|
"install:hooks": "bash bin/install-hooks.sh",
|
|
@@ -647,7 +730,48 @@
|
|
|
647
730
|
"test:bayes-optimal-gate": "node --test tests/bayes-optimal-gate.test.js",
|
|
648
731
|
"test:actionable-remediations": "node --test tests/actionable-remediations.test.js",
|
|
649
732
|
"test:public-bundle-ratchet": "node --test tests/public-bundle-ratchet.test.js",
|
|
650
|
-
"test:stripe-payment-link-update": "node --test tests/stripe-payment-link-update.test.js"
|
|
733
|
+
"test:stripe-payment-link-update": "node --test tests/stripe-payment-link-update.test.js",
|
|
734
|
+
"test:verify-marketing-pages-deployed": "node --test tests/verify-marketing-pages-deployed.test.js",
|
|
735
|
+
"verify:marketing-pages": "node scripts/verify-marketing-pages-deployed.js",
|
|
736
|
+
"test:install-email-capture": "node --test tests/install-email-capture.test.js",
|
|
737
|
+
"test:install-shim": "node --test tests/install-shim.test.js",
|
|
738
|
+
"test:hook-runtime-subcommands": "node --test tests/hook-runtime-subcommands.test.js",
|
|
739
|
+
"test:implementation-notes": "node --test tests/implementation-notes.test.js",
|
|
740
|
+
"test:public-repo-hygiene": "node --test tests/public-repo-hygiene.test.js",
|
|
741
|
+
"test:daily-block-cap": "node --test tests/daily-block-cap.test.js",
|
|
742
|
+
"test:free-to-paid-conversion-units": "node --test tests/free-to-paid-conversion-units.test.js",
|
|
743
|
+
"test:metrics-real-endpoint": "node --test tests/metrics-real-endpoint.test.js",
|
|
744
|
+
"test:cli-trial-and-help": "node --test tests/cli-trial-and-help.test.js",
|
|
745
|
+
"test:lessons-page-clickability": "playwright test tests/e2e/lessons-page-clickability.spec.js",
|
|
746
|
+
"test:index-page-clickability": "playwright test tests/e2e/index-page-clickability.spec.js",
|
|
747
|
+
"test:dashboard-page-clickability": "playwright test tests/e2e/dashboard-page-clickability.spec.js",
|
|
748
|
+
"test:agent-manager-page-clickability": "playwright test tests/e2e/agent-manager-page-clickability.spec.js",
|
|
749
|
+
"test:pricing-page-clickability": "playwright test tests/e2e/pricing-page-clickability.spec.js",
|
|
750
|
+
"test:proof:truth": "node --test tests/knowledge-entropy.test.js tests/mcp-wiring-doctor.test.js tests/sequence-guard.test.js tests/slopsquat-guard.test.js tests/slopsquat-stress.test.js tests/truth-and-proof.test.js tests/wire-proof-gate.test.js tests/adaptive-reliability.test.js tests/coderabbit-patterns.test.js",
|
|
751
|
+
"build:grok-plugin": "node scripts/build-grok-plugin.js",
|
|
752
|
+
"feedback:ingest": "node scripts/ingest-manual-feedback.js",
|
|
753
|
+
"verify-proof": "node scripts/require-proof.js",
|
|
754
|
+
"test:mcp-oauth-reviewer": "node --test tests/mcp-oauth-reviewer.test.js",
|
|
755
|
+
"test:dashboard-chat": "node --test tests/dashboard-chat.test.js",
|
|
756
|
+
"test:gitar-integration": "node --test tests/gitar-integration.test.js",
|
|
757
|
+
"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/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 tests/classifier-routing.test.js",
|
|
758
|
+
"test:leak-scanner": "node --test tests/leak-scanner.test.js",
|
|
759
|
+
"test:tool-contract-validator": "node --test tests/tool-contract-validator.test.js",
|
|
760
|
+
"test:letta-adapter": "node --test tests/letta-adapter.test.js",
|
|
761
|
+
"test:policy-engine-adapter": "node --test tests/policy-engine-adapter.test.js",
|
|
762
|
+
"eval:observability": "node scripts/async-eval-observability.js",
|
|
763
|
+
"test:memory-provider-enforcement-bridge": "node --test tests/memory-provider-enforcement-bridge.test.js",
|
|
764
|
+
"test:payment-rails": "node --test tests/payment-rails.test.js",
|
|
765
|
+
"test:publisher-credential-guards": "node --test tests/publisher-credential-guards.test.js",
|
|
766
|
+
"test:reddit-browser-notification-watch": "node --test tests/reddit-browser-notification-watch.test.js",
|
|
767
|
+
"cursor:marketplace:doctor": "node scripts/cursor-marketplace-doctor.js",
|
|
768
|
+
"cursor:marketplace:doctor:json": "node scripts/cursor-marketplace-doctor.js --json",
|
|
769
|
+
"test:cursor-marketplace-doctor": "node --test tests/cursor-marketplace-doctor.test.js",
|
|
770
|
+
"test:hook-self-protection": "node --test tests/hook-self-protection.test.js",
|
|
771
|
+
"test:self-protect-enforcement": "node --test tests/self-protect-enforcement.test.js",
|
|
772
|
+
"test:pack-runtime-integrity": "node --test tests/pack-runtime-integrity.test.js",
|
|
773
|
+
"test:entitlement": "node --test tests/entitlement.test.js",
|
|
774
|
+
"test:xss-checkout-escape": "node --test tests/xss-checkout-escape.test.js"
|
|
651
775
|
},
|
|
652
776
|
"keywords": [
|
|
653
777
|
"mcp",
|
|
@@ -702,27 +826,36 @@
|
|
|
702
826
|
"node": ">=18.18.0"
|
|
703
827
|
},
|
|
704
828
|
"dependencies": {
|
|
705
|
-
"@anthropic-ai/sdk": "0.
|
|
706
|
-
"@google/genai": "
|
|
829
|
+
"@anthropic-ai/sdk": "0.102.0",
|
|
830
|
+
"@google/genai": "2.7.0",
|
|
707
831
|
"@huggingface/transformers": "^4.2.0",
|
|
708
|
-
"@lancedb/lancedb": "^0.
|
|
832
|
+
"@lancedb/lancedb": "^0.30.0",
|
|
709
833
|
"apache-arrow": "^18.1.0",
|
|
710
834
|
"better-sqlite3": "^12.9.0",
|
|
711
835
|
"dotenv": "^17.4.2",
|
|
712
836
|
"playwright-core": "^1.59.1",
|
|
713
|
-
"protobufjs": "^
|
|
714
|
-
"stripe": "^22.0
|
|
837
|
+
"protobufjs": "^8.5.0",
|
|
838
|
+
"stripe": "^22.2.0"
|
|
715
839
|
},
|
|
716
840
|
"overrides": {
|
|
841
|
+
"@google/genai": {
|
|
842
|
+
"protobufjs": "7.6.4"
|
|
843
|
+
},
|
|
844
|
+
"onnxruntime-web": {
|
|
845
|
+
"protobufjs": "7.6.4"
|
|
846
|
+
},
|
|
717
847
|
"express@4.22.1": {
|
|
718
848
|
"path-to-regexp": "0.1.13"
|
|
719
|
-
}
|
|
849
|
+
},
|
|
850
|
+
"js-yaml": "4.2.0"
|
|
720
851
|
},
|
|
721
852
|
"mcpName": "io.github.IgorGanapolsky/thumbgate",
|
|
722
853
|
"devDependencies": {
|
|
723
854
|
"@changesets/changelog-github": "^0.7.0",
|
|
724
855
|
"@changesets/cli": "^2.31.0",
|
|
856
|
+
"@playwright/test": "^1.60.0",
|
|
725
857
|
"c8": "^11.0.0",
|
|
726
|
-
"undici": "^8.
|
|
727
|
-
}
|
|
858
|
+
"undici": "^8.5.0"
|
|
859
|
+
},
|
|
860
|
+
"hotfix": "gate-check-bypass-2026-06-03"
|
|
728
861
|
}
|