thumbgate 1.27.19 → 1.27.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/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 +0 -3
- 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 +27 -1
- 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/package.json +225 -100
- package/public/about.html +162 -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/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/diagnostic.html +345 -0
- package/public/index.html +2 -2
- package/public/install.html +193 -0
- package/public/js/buyer-intent.js +672 -0
- package/public/numbers.html +2 -2
- package/public/pricing.html +399 -0
- package/scripts/action-receipts.js +324 -0
- package/scripts/activation-quickstart.js +187 -0
- package/scripts/agent-operations-planner.js +621 -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/classifier-routing.js +130 -0
- package/scripts/dashboard-chat.js +332 -0
- package/scripts/feedback-aggregate.js +281 -0
- package/scripts/feedback-sanitizer.js +105 -0
- package/scripts/hook-stop-anti-claim.js +301 -0
- package/scripts/install-shim.js +87 -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/qa-scenario-planner.js +136 -0
- package/scripts/repeat-metric.js +137 -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/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/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/.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.27.
|
|
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.27.20",
|
|
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,94 +12,72 @@
|
|
|
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",
|
|
@@ -108,14 +86,16 @@
|
|
|
108
86
|
"scripts/export-dpo-pairs.js",
|
|
109
87
|
"scripts/export-hf-dataset.js",
|
|
110
88
|
"scripts/failure-diagnostics.js",
|
|
89
|
+
"scripts/feedback-aggregate.js",
|
|
111
90
|
"scripts/feedback-attribution.js",
|
|
112
91
|
"scripts/feedback-loop.js",
|
|
113
92
|
"scripts/feedback-paths.js",
|
|
114
93
|
"scripts/feedback-quality.js",
|
|
115
|
-
"scripts/
|
|
94
|
+
"scripts/feedback-sanitizer.js",
|
|
116
95
|
"scripts/feedback-schema.js",
|
|
117
96
|
"scripts/feedback-session.js",
|
|
118
97
|
"scripts/feedback-to-rules.js",
|
|
98
|
+
"scripts/feedback_quality_eval.py",
|
|
119
99
|
"scripts/filesystem-search.js",
|
|
120
100
|
"scripts/fs-utils.js",
|
|
121
101
|
"scripts/gate-stats.js",
|
|
@@ -126,12 +106,14 @@
|
|
|
126
106
|
"scripts/harness-selector.js",
|
|
127
107
|
"scripts/hf-papers.js",
|
|
128
108
|
"scripts/hook-runtime.js",
|
|
109
|
+
"scripts/hook-stop-anti-claim.js",
|
|
129
110
|
"scripts/hook-thumbgate-cache-updater.js",
|
|
130
111
|
"scripts/hosted-config.js",
|
|
131
112
|
"scripts/hybrid-feedback-context.js",
|
|
132
113
|
"scripts/hybrid-supervisor-agent.js",
|
|
133
|
-
"scripts/install-mcp.js",
|
|
134
114
|
"scripts/inference-cache-policy.js",
|
|
115
|
+
"scripts/install-shim.js",
|
|
116
|
+
"scripts/install-mcp.js",
|
|
135
117
|
"scripts/internal-agent-bootstrap.js",
|
|
136
118
|
"scripts/intervention-policy.js",
|
|
137
119
|
"scripts/jsonl-watcher.js",
|
|
@@ -142,15 +124,15 @@
|
|
|
142
124
|
"scripts/lesson-rotation.js",
|
|
143
125
|
"scripts/lesson-search.js",
|
|
144
126
|
"scripts/lesson-synthesis.js",
|
|
145
|
-
"scripts/rule-validator.js",
|
|
146
127
|
"scripts/license.js",
|
|
147
|
-
"scripts/llm-client.js",
|
|
148
128
|
"scripts/llm-behavior-monitor.js",
|
|
149
|
-
"scripts/
|
|
150
|
-
"scripts/mailer/resend-mailer.js",
|
|
129
|
+
"scripts/llm-client.js",
|
|
151
130
|
"scripts/local-model-profile.js",
|
|
152
131
|
"scripts/long-running-agent-context-guardrails.js",
|
|
132
|
+
"scripts/mailer/index.js",
|
|
133
|
+
"scripts/mailer/resend-mailer.js",
|
|
153
134
|
"scripts/mcp-config.js",
|
|
135
|
+
"scripts/mcp-oauth.js",
|
|
154
136
|
"scripts/mcp-policy.js",
|
|
155
137
|
"scripts/mcp-transport-strategy.js",
|
|
156
138
|
"scripts/memory-firewall.js",
|
|
@@ -161,46 +143,60 @@
|
|
|
161
143
|
"scripts/multimodal-retrieval-plan.js",
|
|
162
144
|
"scripts/native-messaging-audit.js",
|
|
163
145
|
"scripts/natural-language-harness.js",
|
|
146
|
+
"scripts/noop-detect.js",
|
|
164
147
|
"scripts/obsidian-export.js",
|
|
148
|
+
"scripts/operational-integrity.js",
|
|
165
149
|
"scripts/oss-pr-opportunity-scout.js",
|
|
166
150
|
"scripts/otel-declarative-config.js",
|
|
167
|
-
"scripts/
|
|
151
|
+
"scripts/parallel-workflow-orchestrator.js",
|
|
168
152
|
"scripts/perplexity-client.js",
|
|
153
|
+
"scripts/plan-gate.js",
|
|
154
|
+
"scripts/plausible-domain-config.js",
|
|
169
155
|
"scripts/plausible-server-events.js",
|
|
170
156
|
"scripts/pr-manager.js",
|
|
171
157
|
"scripts/private-core-boundary.js",
|
|
172
158
|
"scripts/pro-local-dashboard.js",
|
|
173
|
-
"scripts/problem-detail.js",
|
|
174
159
|
"scripts/proactive-agent-eval-guardrails.js",
|
|
160
|
+
"scripts/problem-detail.js",
|
|
175
161
|
"scripts/product-feedback.js",
|
|
176
|
-
"scripts/prompting-operating-system.js",
|
|
177
|
-
"scripts/provider-action-normalizer.js",
|
|
178
162
|
"scripts/profile-router.js",
|
|
179
|
-
"scripts/prompt-programs.js",
|
|
180
163
|
"scripts/prompt-eval.js",
|
|
181
164
|
"scripts/prompt-guard.js",
|
|
165
|
+
"scripts/prompt-programs.js",
|
|
166
|
+
"scripts/prompting-operating-system.js",
|
|
167
|
+
"scripts/provider-action-normalizer.js",
|
|
182
168
|
"scripts/proxy-pointer-rag-guardrails.js",
|
|
183
|
-
"scripts/
|
|
169
|
+
"scripts/qa-scenario-planner.js",
|
|
184
170
|
"scripts/published-cli.js",
|
|
171
|
+
"scripts/rag-precision-guardrails.js",
|
|
185
172
|
"scripts/rate-limiter.js",
|
|
186
173
|
"scripts/reasoning-efficiency-guardrails.js",
|
|
174
|
+
"scripts/repeat-metric.js",
|
|
187
175
|
"scripts/reward-hacking-guardrails.js",
|
|
188
176
|
"scripts/risk-scorer.js",
|
|
189
177
|
"scripts/rlaif-self-audit.js",
|
|
190
178
|
"scripts/rubric-engine.js",
|
|
179
|
+
"scripts/rule-validator.js",
|
|
191
180
|
"scripts/secret-scanner.js",
|
|
181
|
+
"scripts/secret-fixture-tokens.js",
|
|
182
|
+
"scripts/secret-redaction.js",
|
|
183
|
+
"scripts/self-protection.js",
|
|
192
184
|
"scripts/security-scanner.js",
|
|
193
185
|
"scripts/self-distill-agent.js",
|
|
194
186
|
"scripts/self-heal.js",
|
|
187
|
+
"scripts/self-harness-optimizer.js",
|
|
188
|
+
"scripts/self-healing-check.js",
|
|
195
189
|
"scripts/semantic-dedup.js",
|
|
196
190
|
"scripts/semantic-layer.js",
|
|
197
191
|
"scripts/seo-gsd.js",
|
|
198
192
|
"scripts/settings-hierarchy.js",
|
|
193
|
+
"scripts/silent-failure-cluster.js",
|
|
194
|
+
"scripts/single-use-credential-gate.js",
|
|
199
195
|
"scripts/skill-generator.js",
|
|
200
196
|
"scripts/skill-rag-router.js",
|
|
201
|
-
"scripts/single-use-credential-gate.js",
|
|
202
197
|
"scripts/slo-alert-engine.js",
|
|
203
198
|
"scripts/spec-gate.js",
|
|
199
|
+
"scripts/statusline-cache-read.js",
|
|
204
200
|
"scripts/statusline-cache-path.js",
|
|
205
201
|
"scripts/statusline-context.js",
|
|
206
202
|
"scripts/statusline-lesson.js",
|
|
@@ -210,26 +206,85 @@
|
|
|
210
206
|
"scripts/statusline-tower.js",
|
|
211
207
|
"scripts/statusline.sh",
|
|
212
208
|
"scripts/structured-prompt-driven.js",
|
|
209
|
+
"scripts/sync-telemetry-from-prod.js",
|
|
213
210
|
"scripts/synthetic-data-provenance.js",
|
|
214
211
|
"scripts/task-context-result.js",
|
|
215
212
|
"scripts/telemetry-analytics.js",
|
|
216
213
|
"scripts/thompson-sampling.js",
|
|
217
214
|
"scripts/thumbgate-bench.js",
|
|
218
215
|
"scripts/thumbgate-search.js",
|
|
219
|
-
"scripts/
|
|
216
|
+
"scripts/trajectory-scorer.js",
|
|
220
217
|
"scripts/token-savings.js",
|
|
218
|
+
"scripts/token-tco.js",
|
|
219
|
+
"scripts/tool-contract-validator.js",
|
|
221
220
|
"scripts/tool-registry.js",
|
|
222
221
|
"scripts/upstream-contribution-engine.js",
|
|
223
222
|
"scripts/user-profile.js",
|
|
224
223
|
"scripts/validate-workflow-contract.js",
|
|
225
224
|
"scripts/vector-store.js",
|
|
226
|
-
"scripts/verifier-scoring.js",
|
|
227
225
|
"scripts/verification-loop.js",
|
|
226
|
+
"scripts/verifier-scoring.js",
|
|
227
|
+
"scripts/verify-marketing-pages-deployed.js",
|
|
228
|
+
"scripts/visitor-journey.js",
|
|
228
229
|
"scripts/workflow-runs.js",
|
|
229
230
|
"scripts/workflow-sentinel.js",
|
|
230
231
|
"scripts/workspace-agent-routines.js",
|
|
231
232
|
"scripts/workspace-evolver.js",
|
|
232
233
|
"scripts/xmemory-lite.js",
|
|
234
|
+
".claude-plugin/plugin.json",
|
|
235
|
+
".claude/commands/",
|
|
236
|
+
"commands/",
|
|
237
|
+
".well-known/",
|
|
238
|
+
"LICENSE",
|
|
239
|
+
"README.md",
|
|
240
|
+
"adapters/amp/skills/thumbgate-feedback/SKILL.md",
|
|
241
|
+
"adapters/claude/.mcp.json",
|
|
242
|
+
"adapters/codex/config.toml",
|
|
243
|
+
"adapters/forge/forge.yaml",
|
|
244
|
+
"adapters/gemini/function-declarations.json",
|
|
245
|
+
"adapters/letta/README.md",
|
|
246
|
+
"adapters/letta/thumbgate-letta-adapter.js",
|
|
247
|
+
"adapters/gcp/dfcx-webhook-gate.js",
|
|
248
|
+
"adapters/policy-engine/README.md",
|
|
249
|
+
"adapters/policy-engine/ethicore-guardian-client.js",
|
|
250
|
+
"adapters/policy-engine/thumbgate-policy-engine-adapter.js",
|
|
251
|
+
"adapters/mcp/server-stdio.js",
|
|
252
|
+
"adapters/opencode/opencode.json",
|
|
253
|
+
"bench/programbench-smoke.json",
|
|
254
|
+
"bench/prompt-eval-suite.json",
|
|
255
|
+
"bench/observability-eval-suite.json",
|
|
256
|
+
"bench/thumbgate-bench.json",
|
|
257
|
+
"bin/cli.js",
|
|
258
|
+
"bin/dashboard-cli.js",
|
|
259
|
+
"bin/postinstall.js",
|
|
260
|
+
"config/",
|
|
261
|
+
"openapi/",
|
|
262
|
+
"public/about.html",
|
|
263
|
+
"public/agent-manager.html",
|
|
264
|
+
"public/blog.html",
|
|
265
|
+
"public/codex-enterprise.html",
|
|
266
|
+
"public/agents-cost-savings.html",
|
|
267
|
+
"public/ai-malpractice-prevention.html",
|
|
268
|
+
"public/chatgpt-app.html",
|
|
269
|
+
"public/codex-plugin.html",
|
|
270
|
+
"public/compare.html",
|
|
271
|
+
"public/dashboard.html",
|
|
272
|
+
"public/diagnostic.html",
|
|
273
|
+
"public/federal.html",
|
|
274
|
+
"public/guide.html",
|
|
275
|
+
"public/install.html",
|
|
276
|
+
"public/index.html",
|
|
277
|
+
"public/learn.html",
|
|
278
|
+
"public/lessons.html",
|
|
279
|
+
"public/numbers.html",
|
|
280
|
+
"public/pricing.html",
|
|
281
|
+
"public/pro.html",
|
|
282
|
+
"public/assets/brand/",
|
|
283
|
+
"public/assets/claude-thumbgate-statusbar.svg",
|
|
284
|
+
"public/assets/codex-thumbgate-statusbar-test.svg",
|
|
285
|
+
"public/assets/legal-intake-control-flow.svg",
|
|
286
|
+
"public/brand/",
|
|
287
|
+
"public/js/",
|
|
233
288
|
"skills/thumbgate/SKILL.md",
|
|
234
289
|
"src/"
|
|
235
290
|
],
|
|
@@ -249,6 +304,7 @@
|
|
|
249
304
|
"verify:full": "node scripts/verify-run.js full",
|
|
250
305
|
"budget:status": "node scripts/budget-guard.js --status",
|
|
251
306
|
"revenue:status": "node scripts/revenue-status.js",
|
|
307
|
+
"revenue:truth": "bash bin/revenue-truth.sh",
|
|
252
308
|
"revenue:doctor": "node scripts/revenue-observability-doctor.js",
|
|
253
309
|
"revenue:plan": "node scripts/may-2026-revenue-machine.js",
|
|
254
310
|
"revenue:status:local": "node bin/cli.js cfo",
|
|
@@ -258,23 +314,19 @@
|
|
|
258
314
|
"stripe:live": "node scripts/stripe-live-status.js",
|
|
259
315
|
"stripe:webhook:audit": "node scripts/rotate-stripe-webhook-secret.js --audit",
|
|
260
316
|
"stripe:webhook:disable-legacy": "node scripts/rotate-stripe-webhook-secret.js --disable-legacy",
|
|
317
|
+
"zai:smoke": "node scripts/zai-smoke.js",
|
|
261
318
|
"gtm:revenue-loop": "node scripts/autonomous-sales-agent.js",
|
|
262
319
|
"gtm:aiventyx": "node scripts/aiventyx-marketplace-plan.js",
|
|
263
320
|
"gtm:chatgpt": "node scripts/chatgpt-gpt-revenue-pack.js",
|
|
264
321
|
"gtm:codex": "node scripts/codex-marketplace-revenue-pack.js",
|
|
265
322
|
"gtm:linkedin": "node scripts/linkedin-workflow-hardening-pack.js",
|
|
323
|
+
"gtm:okara-automation": "node scripts/okara-money-promo-automation.js",
|
|
324
|
+
"gtm:okara-automation:write": "node scripts/okara-money-promo-automation.js --write",
|
|
266
325
|
"gtm:roo-sunset": "node scripts/roo-sunset-demand-pack.js",
|
|
267
326
|
"gtm:reddit": "node scripts/reddit-dm-workflow-hardening-pack.js",
|
|
268
327
|
"medium:weekly:draft": "node scripts/medium-weekly.js --write",
|
|
269
328
|
"medium:weekly:schedule": "node scripts/medium-weekly.js --schedule",
|
|
270
329
|
"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
330
|
"social:poll": "node scripts/social-analytics/poll-all.js",
|
|
279
331
|
"social:poll:github": "node scripts/social-analytics/pollers/github.js",
|
|
280
332
|
"social:poll:instagram": "node scripts/social-analytics/pollers/instagram.js",
|
|
@@ -328,19 +380,21 @@
|
|
|
328
380
|
"social:prospect:bluesky": "node scripts/social-bluesky-prospecting.js",
|
|
329
381
|
"social:prospect:bluesky:dry": "node scripts/social-bluesky-prospecting.js --dry-run",
|
|
330
382
|
"social:reply-publish:bluesky:dry": "node scripts/social-reply-monitor-bluesky.js --publish-approved --dry-run",
|
|
383
|
+
"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: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:export-dpo-pairs && npm run test:export-hf-dataset && npm run test:license && 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: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: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
384
|
"test:python": "python3 -m pytest tests/*.py",
|
|
332
|
-
"test
|
|
385
|
+
"test:check-update": "node --test tests/check-update.test.js",
|
|
333
386
|
"test:hook-stop-verify-deploy": "node --test tests/hook-stop-verify-deploy.test.js",
|
|
334
387
|
"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",
|
|
388
|
+
"test:plausible-server-events": "node --test tests/plausible-server-events.test.js tests/plausible-poller.test.js tests/plausible-domain-config.test.js",
|
|
336
389
|
"test:activation-tracker": "node --test tests/activation-tracker.test.js",
|
|
390
|
+
"test:activation-onboarding": "node --test tests/activation-onboarding.test.js",
|
|
337
391
|
"test:unified-revenue-rollup": "node --test tests/unified-revenue-rollup.test.js",
|
|
338
392
|
"test:conversion-rate-stats": "node --test tests/conversion-rate-stats.test.js",
|
|
339
393
|
"test:external-customer-audit": "node --test tests/external-customer-audit.test.js",
|
|
340
394
|
"test:stripe-checkout-diagnostic": "node --test tests/stripe-checkout-diagnostic.test.js",
|
|
341
395
|
"test:stripe-business-identity-probe": "node --test tests/stripe-business-identity-probe.test.js",
|
|
342
396
|
"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",
|
|
397
|
+
"test:telemetry-export": "node --test tests/telemetry-export.test.js tests/telemetry-analytics-quality.test.js",
|
|
344
398
|
"test:swarm-coordinator": "node --test tests/swarm-coordinator.test.js",
|
|
345
399
|
"test:session-report": "node --test tests/session-report.test.js",
|
|
346
400
|
"test:agent-reasoning-traces": "node --test tests/agent-reasoning-traces.test.js tests/agent-stack-survival-audit.test.js",
|
|
@@ -366,6 +420,10 @@
|
|
|
366
420
|
"eval:feedback": "node scripts/prompt-eval.js --from-feedback",
|
|
367
421
|
"eval:feedback-quality": "python3 scripts/feedback_quality_eval.py",
|
|
368
422
|
"eval:classifier": "python3 scripts/eval_gate_classifier.py",
|
|
423
|
+
"eval:rag": "node scripts/eval-rag.js",
|
|
424
|
+
"test:eval-rag": "node --test tests/eval-rag.test.js",
|
|
425
|
+
"eval:async-observability": "node scripts/async-eval-observability.js",
|
|
426
|
+
"test:async-eval-observability": "node --test tests/async-eval-observability.test.js",
|
|
369
427
|
"test:decision-trace": "node --test tests/decision-trace.test.js",
|
|
370
428
|
"test:feedback-fallback": "node --test tests/feedback-fallback.test.js",
|
|
371
429
|
"test:metaclaw": "node --test tests/metaclaw-features.test.js",
|
|
@@ -374,14 +432,26 @@
|
|
|
374
432
|
"test:multi-hop-recall": "node --test tests/multi-hop-recall.test.js",
|
|
375
433
|
"test:synthetic-dpo": "node --test tests/synthetic-dpo.test.js",
|
|
376
434
|
"test:thumbgate-skill": "node --test tests/thumbgate-skill.test.js",
|
|
377
|
-
"test:
|
|
435
|
+
"test:discoverable-skills": "node --test tests/discoverable-skills.test.js",
|
|
436
|
+
"test:discoverable-skill-skills": "node --test tests/discoverable-skill-skills.test.js",
|
|
437
|
+
"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",
|
|
438
|
+
"test:statusline-cache-aggregate": "node --test tests/statusline-cache-aggregate.test.js",
|
|
439
|
+
"test:no-internal-orchestration-leaks": "node --test tests/no-internal-orchestration-leaks.test.js",
|
|
378
440
|
"test:memory-dedup": "node --test tests/memory-dedup.test.js",
|
|
379
441
|
"test:lesson-db": "node --test tests/lesson-db.test.js",
|
|
380
442
|
"test:lesson-rotation": "node --test tests/lesson-rotation.test.js",
|
|
381
443
|
"test:feedback-quality": "node --test tests/feedback-quality.test.js",
|
|
382
444
|
"test:sync-version": "node --test tests/sync-version.test.js",
|
|
445
|
+
"test:team-sync": "node --test tests/team-sync.test.js",
|
|
446
|
+
"test:sync-telemetry": "node --test tests/sync-telemetry-from-prod.test.js",
|
|
383
447
|
"test:check-congruence": "node --test tests/check-congruence.test.js",
|
|
384
448
|
"test:tool-registry": "node --test tests/tool-registry.test.js",
|
|
449
|
+
"test:dfcx-gate": "node --test tests/dfcx-webhook-gate.test.js",
|
|
450
|
+
"test:dfcx-gate-server": "node --test tests/dfcx-gate-server.test.js",
|
|
451
|
+
"test:vertex-scorer": "node --test tests/vertex-scorer.test.js",
|
|
452
|
+
"test:repeat-metric": "node --test tests/repeat-metric.test.js",
|
|
453
|
+
"test:noop-detect": "node --test tests/noop-detect.test.js",
|
|
454
|
+
"test:action-receipts": "node --test tests/action-receipts.test.js",
|
|
385
455
|
"test:learn-hub": "node --test tests/learn-hub.test.js",
|
|
386
456
|
"test:feedback-to-rules": "node --test tests/feedback-to-rules.test.js",
|
|
387
457
|
"test:memory-firewall": "node --test tests/memory-firewall.test.js",
|
|
@@ -390,10 +460,14 @@
|
|
|
390
460
|
"test:hosted-config": "node --test tests/hosted-config.test.js",
|
|
391
461
|
"test:operational-summary": "node --test tests/operational-summary.test.js",
|
|
392
462
|
"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
|
|
463
|
+
"test:operator-artifacts": "node --test tests/operator-artifacts.test.js tests/revenue-pack-utils.test.js",
|
|
464
|
+
"test:okara-money-promo-automation": "node --test tests/okara-money-promo-automation.test.js",
|
|
394
465
|
"test:operator-key-auth": "node --test tests/api-operator-key-auth.test.js",
|
|
395
466
|
"test:cloudflare-sandbox": "node --test tests/cloudflare-dynamic-sandbox.test.js tests/cloudflare-sandbox-api.test.js",
|
|
396
467
|
"test:mcp-config": "node --test tests/mcp-config.test.js",
|
|
468
|
+
"test:mcp-tool-annotations": "node --test tests/mcp-tool-annotations.test.js",
|
|
469
|
+
"test:mcp-oauth": "node --test tests/mcp-oauth.test.js",
|
|
470
|
+
"test:mcp-oauth-flow": "node --test tests/mcp-oauth-flow.test.js",
|
|
397
471
|
"test:plan-gate": "node --test tests/plan-gate.test.js",
|
|
398
472
|
"test:pulse": "node --test tests/pulse.test.js",
|
|
399
473
|
"test:semantic-layer": "node --test tests/semantic-layer.test.js",
|
|
@@ -408,8 +482,10 @@
|
|
|
408
482
|
"test:hf-papers": "node --test tests/hf-papers.test.js",
|
|
409
483
|
"test:marketing-experiment": "node --test tests/marketing-experiment.test.js",
|
|
410
484
|
"test:seo-gsd": "node --test tests/seo-gsd.test.js",
|
|
485
|
+
"test:hermes-gate": "node --test tests/hermes-gate.test.js",
|
|
411
486
|
"test:verify-run": "node --test tests/verify-run.test.js",
|
|
412
487
|
"test:export-dpo-pairs": "node --test tests/export-dpo-pairs.test.js",
|
|
488
|
+
"test:secret-redaction": "node --test tests/secret-redaction.test.js",
|
|
413
489
|
"test:export-hf-dataset": "node --test tests/export-hf-dataset.test.js",
|
|
414
490
|
"export:hf": "node scripts/export-hf-dataset.js",
|
|
415
491
|
"seo:gsd": "node scripts/seo-gsd.js plan",
|
|
@@ -422,7 +498,6 @@
|
|
|
422
498
|
"test:loop": "node scripts/feedback-loop.js --test",
|
|
423
499
|
"test:dpo": "node scripts/export-dpo-pairs.js --test",
|
|
424
500
|
"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
501
|
"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
502
|
"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
503
|
"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 +505,21 @@
|
|
|
430
505
|
"test:quality": "node --test tests/validate-feedback.test.js tests/feedback-quality-eval-python.test.js tests/eval-gate-classifier.test.js",
|
|
431
506
|
"test:intelligence": "node --test tests/intelligence.test.js",
|
|
432
507
|
"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
|
|
508
|
+
"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
509
|
"test:operational-integrity": "node --test tests/operational-integrity.test.js tests/sync-branch-protection.test.js",
|
|
435
|
-
"test:workflow": "node --test tests/workflow
|
|
510
|
+
"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
511
|
"test:sales-pipeline": "node --test tests/sales-pipeline.test.js",
|
|
437
512
|
"test:billing": "node --test tests/billing.test.js tests/stripe-sync-product-images.test.js",
|
|
438
|
-
"test:
|
|
513
|
+
"test:billing-setup": "node --test tests/billing-setup-redaction.test.js",
|
|
514
|
+
"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
515
|
"test:evolution": "node --test tests/workspace-evolver.test.js",
|
|
440
516
|
"test:watcher": "node --test tests/jsonl-watcher.test.js",
|
|
441
517
|
"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",
|
|
518
|
+
"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
519
|
"test:session-analyzer": "node --test tests/session-analyzer.test.js",
|
|
444
520
|
"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",
|
|
521
|
+
"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",
|
|
522
|
+
"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
523
|
"test:workers": "npm --prefix workers ci && npm --prefix workers test",
|
|
448
524
|
"test:evoskill": "node --test tests/evoskill.test.js",
|
|
449
525
|
"test:gates-hardening": "node --test tests/gates-hardening.test.js",
|
|
@@ -493,23 +569,17 @@
|
|
|
493
569
|
"prove:xmemory": "node scripts/prove-xmemory.js",
|
|
494
570
|
"audit:stats": "node scripts/audit-trail.js --stats",
|
|
495
571
|
"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
572
|
"test:platform-limits": "node --test tests/platform-limits.test.js",
|
|
501
573
|
"test:durability-step": "node --test tests/durability-step.test.js",
|
|
502
574
|
"test:post-video": "node --test tests/post-video.test.js",
|
|
503
575
|
"test:post-everywhere-instagram": "node --test tests/post-everywhere-instagram.test.js",
|
|
504
576
|
"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
577
|
"test:license": "node --test tests/license.test.js",
|
|
509
|
-
"test:bot-detector": "node --test tests/bot-detector.test.js",
|
|
510
578
|
"test:audit-pr-bot-contamination": "node --test tests/audit-pr-bot-contamination.test.js",
|
|
511
579
|
"test:stripe-bootstrap-saas-catalog": "node --test tests/stripe-bootstrap-saas-catalog.test.js",
|
|
512
580
|
"test:bot-detection": "node --test tests/bot-detection.test.js",
|
|
581
|
+
"test:postgres-guard": "node --test tests/postgres-guard.test.js",
|
|
582
|
+
"test:checkout-archived-product-guard": "node --test tests/checkout-archived-product-guard.test.js",
|
|
513
583
|
"test:checkout-bot-guard": "node --test tests/checkout-bot-guard.test.js",
|
|
514
584
|
"test:checkout-pro-confirmation-gate": "node --test tests/checkout-pro-confirmation-gate.test.js",
|
|
515
585
|
"test:revenue-observability-doctor": "node --test tests/revenue-observability-doctor.test.js",
|
|
@@ -517,6 +587,7 @@
|
|
|
517
587
|
"test:funnel-invariants": "node --test tests/funnel-invariants.test.js",
|
|
518
588
|
"test:cli-telemetry": "node --test tests/cli-telemetry.test.js",
|
|
519
589
|
"test:pro-parity": "node --test tests/pro-parity.test.js",
|
|
590
|
+
"test:pricing-page-telemetry": "node --test tests/pricing-page-telemetry.test.js",
|
|
520
591
|
"test:skill-exporter": "node --test tests/skill-exporter.test.js",
|
|
521
592
|
"test:model-tier-router": "node --test tests/model-tier-router.test.js",
|
|
522
593
|
"test:computer-use-firewall": "node --test tests/computer-use-firewall.test.js",
|
|
@@ -525,6 +596,7 @@
|
|
|
525
596
|
"test:data-governance": "node --test tests/data-governance.test.js",
|
|
526
597
|
"test:lesson-inference": "node --test tests/conversation-context.test.js tests/lesson-inference.test.js tests/lesson-prompt-shape.test.js",
|
|
527
598
|
"test:lesson-retrieval": "node --test tests/lesson-retrieval.test.js",
|
|
599
|
+
"test:lesson-semantic-retrieval": "node --test tests/lesson-semantic-retrieval.test.js",
|
|
528
600
|
"test:cross-encoder": "node --test tests/cross-encoder-reranker.test.js",
|
|
529
601
|
"test:reflector-agent": "node --test tests/reflector-agent.test.js",
|
|
530
602
|
"test:public-core-boundary": "node --test tests/public-core-boundary.test.js",
|
|
@@ -533,6 +605,7 @@
|
|
|
533
605
|
"test:hallucination-detector": "node --test tests/hallucination-detector.test.js",
|
|
534
606
|
"test:history-distiller": "node --test tests/history-distiller.test.js",
|
|
535
607
|
"test:predictive-insights": "node --test tests/predictive-insights.test.js",
|
|
608
|
+
"test:predictive-credible-range": "node --test tests/predictive-credible-range.test.js",
|
|
536
609
|
"test:prove-predictive-insights": "node --test tests/prove-predictive-insights.test.js",
|
|
537
610
|
"prove:predictive-insights": "node scripts/prove-predictive-insights.js",
|
|
538
611
|
"test:statusbar-cli": "node --test tests/statusbar-cli.test.js",
|
|
@@ -564,14 +637,11 @@
|
|
|
564
637
|
"social:reconcile:campaign": "node scripts/social-analytics/reconcile-thumbgate-campaign.js",
|
|
565
638
|
"social:sync:launch-assets": "node scripts/social-analytics/sync-launch-assets.js",
|
|
566
639
|
"social:engagement:audit": "node scripts/social-analytics/engagement-audit.js",
|
|
567
|
-
"social:dedupe:cleanup": "node scripts/social-analytics/cleanup-zernio-duplicates.js",
|
|
568
640
|
"test:install-growth-automation": "node --test tests/install-growth-automation.test.js",
|
|
569
641
|
"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
642
|
"test:reconcile-thumbgate-campaign": "node --test tests/reconcile-thumbgate-campaign.test.js",
|
|
572
643
|
"test:schedule-thumbgate-campaign": "node --test tests/schedule-thumbgate-campaign.test.js",
|
|
573
644
|
"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
645
|
"test:bluesky-atproto": "node --test tests/bluesky-atproto.test.js",
|
|
576
646
|
"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
647
|
"test:bluesky-delete-replies": "node --test tests/bluesky-delete-replies.test.js",
|
|
@@ -592,6 +662,7 @@
|
|
|
592
662
|
"agent:schedule": "node scripts/schedule-manager.js install --label managed-lesson-agent --spec 'daily 02:00' --command 'npm run agent:run' --workingDirectory .",
|
|
593
663
|
"feedback:rules:llm": "node scripts/feedback-to-rules.js --llm",
|
|
594
664
|
"test:self-distill": "node --test tests/self-distill-agent.test.js",
|
|
665
|
+
"test:silent-failure-cluster": "node --test tests/silent-failure-cluster.test.js",
|
|
595
666
|
"test:seo-guides": "node --test tests/seo-guides.test.js",
|
|
596
667
|
"self-distill:run": "node scripts/self-distill-agent.js",
|
|
597
668
|
"self-distill:dry": "node scripts/self-distill-agent.js --dry-run",
|
|
@@ -617,15 +688,18 @@
|
|
|
617
688
|
"test:explore": "node --test tests/explore.test.js",
|
|
618
689
|
"test:cli-schema": "node --test tests/cli-schema.test.js",
|
|
619
690
|
"test:cli-agent-experience": "node --test tests/cli-agent-experience.test.js",
|
|
620
|
-
"test:demo-voiceover": "node --test tests/demo-voiceover.test.js",
|
|
621
691
|
"test:gate-coherence": "node --test tests/gate-coherence.test.js",
|
|
622
692
|
"test:gate-eval": "node --test tests/gate-eval.test.js",
|
|
623
693
|
"gate-eval:ci": "node scripts/gate-eval.js run",
|
|
624
694
|
"test:ai-engineering-stack-guardrails": "node --test tests/ai-engineering-stack-guardrails.test.js",
|
|
695
|
+
"test:ai-component-inventory": "node --test tests/ai-component-inventory.test.js",
|
|
625
696
|
"test:interaction-model": "node --test tests/interaction-model.test.js tests/interaction-model-e2e.test.js",
|
|
626
|
-
"
|
|
697
|
+
"aws-blocks:guardrails": "node scripts/aws-blocks-guardrails.js",
|
|
698
|
+
"test:aws-blocks-guardrails": "node --test tests/aws-blocks-guardrails.test.js",
|
|
699
|
+
"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
700
|
"test:public-static-assets": "node --test tests/public-static-assets.test.js",
|
|
628
701
|
"test:token-savings": "node --test tests/token-savings.test.js",
|
|
702
|
+
"test:cost-cli": "node --test tests/cost-cli.test.js tests/conversion-receipt.test.js",
|
|
629
703
|
"test:numbers-page": "node --test tests/numbers-page.test.js",
|
|
630
704
|
"test:workflow-gate-checkpoint": "node --test tests/workflow-gate-checkpoint.test.js tests/autonomous-workflow.test.js",
|
|
631
705
|
"workflow:autonomous": "node scripts/autonomous-workflow.js",
|
|
@@ -634,6 +708,10 @@
|
|
|
634
708
|
"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
709
|
"test:medium-weekly": "node --test tests/medium-weekly.test.js",
|
|
636
710
|
"test:dashboard-deeplink-e2e": "node --test tests/dashboard-deeplink-e2e.test.js",
|
|
711
|
+
"test:e2e:playwright": "playwright test",
|
|
712
|
+
"test:e2e:playwright:headed": "playwright test --headed",
|
|
713
|
+
"test:e2e:playwright:ui": "playwright test --ui",
|
|
714
|
+
"test:e2e:playwright:report": "playwright show-report",
|
|
637
715
|
"test:public-package-parity": "node --test tests/public-package-parity.test.js",
|
|
638
716
|
"prepare": "bash bin/install-hooks.sh >/dev/null 2>&1 || true",
|
|
639
717
|
"install:hooks": "bash bin/install-hooks.sh",
|
|
@@ -647,7 +725,45 @@
|
|
|
647
725
|
"test:bayes-optimal-gate": "node --test tests/bayes-optimal-gate.test.js",
|
|
648
726
|
"test:actionable-remediations": "node --test tests/actionable-remediations.test.js",
|
|
649
727
|
"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"
|
|
728
|
+
"test:stripe-payment-link-update": "node --test tests/stripe-payment-link-update.test.js",
|
|
729
|
+
"test:verify-marketing-pages-deployed": "node --test tests/verify-marketing-pages-deployed.test.js",
|
|
730
|
+
"verify:marketing-pages": "node scripts/verify-marketing-pages-deployed.js",
|
|
731
|
+
"test:install-email-capture": "node --test tests/install-email-capture.test.js",
|
|
732
|
+
"test:install-shim": "node --test tests/install-shim.test.js",
|
|
733
|
+
"test:hook-runtime-subcommands": "node --test tests/hook-runtime-subcommands.test.js",
|
|
734
|
+
"test:implementation-notes": "node --test tests/implementation-notes.test.js",
|
|
735
|
+
"test:public-repo-hygiene": "node --test tests/public-repo-hygiene.test.js",
|
|
736
|
+
"test:daily-block-cap": "node --test tests/daily-block-cap.test.js",
|
|
737
|
+
"test:free-to-paid-conversion-units": "node --test tests/free-to-paid-conversion-units.test.js",
|
|
738
|
+
"test:metrics-real-endpoint": "node --test tests/metrics-real-endpoint.test.js",
|
|
739
|
+
"test:cli-trial-and-help": "node --test tests/cli-trial-and-help.test.js",
|
|
740
|
+
"test:lessons-page-clickability": "playwright test tests/e2e/lessons-page-clickability.spec.js",
|
|
741
|
+
"test:index-page-clickability": "playwright test tests/e2e/index-page-clickability.spec.js",
|
|
742
|
+
"test:dashboard-page-clickability": "playwright test tests/e2e/dashboard-page-clickability.spec.js",
|
|
743
|
+
"test:agent-manager-page-clickability": "playwright test tests/e2e/agent-manager-page-clickability.spec.js",
|
|
744
|
+
"test:pricing-page-clickability": "playwright test tests/e2e/pricing-page-clickability.spec.js",
|
|
745
|
+
"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",
|
|
746
|
+
"build:grok-plugin": "node scripts/build-grok-plugin.js",
|
|
747
|
+
"feedback:ingest": "node scripts/ingest-manual-feedback.js",
|
|
748
|
+
"verify-proof": "node scripts/require-proof.js",
|
|
749
|
+
"test:mcp-oauth-reviewer": "node --test tests/mcp-oauth-reviewer.test.js",
|
|
750
|
+
"test:dashboard-chat": "node --test tests/dashboard-chat.test.js",
|
|
751
|
+
"test:gitar-integration": "node --test tests/gitar-integration.test.js",
|
|
752
|
+
"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",
|
|
753
|
+
"test:leak-scanner": "node --test tests/leak-scanner.test.js",
|
|
754
|
+
"test:tool-contract-validator": "node --test tests/tool-contract-validator.test.js",
|
|
755
|
+
"test:letta-adapter": "node --test tests/letta-adapter.test.js",
|
|
756
|
+
"test:policy-engine-adapter": "node --test tests/policy-engine-adapter.test.js",
|
|
757
|
+
"eval:observability": "node scripts/async-eval-observability.js",
|
|
758
|
+
"test:memory-provider-enforcement-bridge": "node --test tests/memory-provider-enforcement-bridge.test.js",
|
|
759
|
+
"test:payment-rails": "node --test tests/payment-rails.test.js",
|
|
760
|
+
"test:publisher-credential-guards": "node --test tests/publisher-credential-guards.test.js",
|
|
761
|
+
"test:reddit-browser-notification-watch": "node --test tests/reddit-browser-notification-watch.test.js",
|
|
762
|
+
"cursor:marketplace:doctor": "node scripts/cursor-marketplace-doctor.js",
|
|
763
|
+
"cursor:marketplace:doctor:json": "node scripts/cursor-marketplace-doctor.js --json",
|
|
764
|
+
"test:cursor-marketplace-doctor": "node --test tests/cursor-marketplace-doctor.test.js",
|
|
765
|
+
"test:hook-self-protection": "node --test tests/hook-self-protection.test.js",
|
|
766
|
+
"test:pack-runtime-integrity": "node --test tests/pack-runtime-integrity.test.js"
|
|
651
767
|
},
|
|
652
768
|
"keywords": [
|
|
653
769
|
"mcp",
|
|
@@ -702,27 +818,36 @@
|
|
|
702
818
|
"node": ">=18.18.0"
|
|
703
819
|
},
|
|
704
820
|
"dependencies": {
|
|
705
|
-
"@anthropic-ai/sdk": "0.
|
|
706
|
-
"@google/genai": "
|
|
821
|
+
"@anthropic-ai/sdk": "0.102.0",
|
|
822
|
+
"@google/genai": "2.7.0",
|
|
707
823
|
"@huggingface/transformers": "^4.2.0",
|
|
708
|
-
"@lancedb/lancedb": "^0.
|
|
824
|
+
"@lancedb/lancedb": "^0.30.0",
|
|
709
825
|
"apache-arrow": "^18.1.0",
|
|
710
826
|
"better-sqlite3": "^12.9.0",
|
|
711
827
|
"dotenv": "^17.4.2",
|
|
712
828
|
"playwright-core": "^1.59.1",
|
|
713
|
-
"protobufjs": "^
|
|
714
|
-
"stripe": "^22.0
|
|
829
|
+
"protobufjs": "^8.5.0",
|
|
830
|
+
"stripe": "^22.2.0"
|
|
715
831
|
},
|
|
716
832
|
"overrides": {
|
|
833
|
+
"@google/genai": {
|
|
834
|
+
"protobufjs": "7.6.4"
|
|
835
|
+
},
|
|
836
|
+
"onnxruntime-web": {
|
|
837
|
+
"protobufjs": "7.6.4"
|
|
838
|
+
},
|
|
717
839
|
"express@4.22.1": {
|
|
718
840
|
"path-to-regexp": "0.1.13"
|
|
719
|
-
}
|
|
841
|
+
},
|
|
842
|
+
"js-yaml": "4.2.0"
|
|
720
843
|
},
|
|
721
844
|
"mcpName": "io.github.IgorGanapolsky/thumbgate",
|
|
722
845
|
"devDependencies": {
|
|
723
846
|
"@changesets/changelog-github": "^0.7.0",
|
|
724
847
|
"@changesets/cli": "^2.31.0",
|
|
848
|
+
"@playwright/test": "^1.60.0",
|
|
725
849
|
"c8": "^11.0.0",
|
|
726
|
-
"undici": "^8.
|
|
727
|
-
}
|
|
850
|
+
"undici": "^8.5.0"
|
|
851
|
+
},
|
|
852
|
+
"hotfix": "gate-check-bypass-2026-06-03"
|
|
728
853
|
}
|