thumbgate 1.34.3 → 1.37.1
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/.agents/skills/cyberstrike-compare-not-clone/SKILL.md +36 -0
- package/.agents/skills/gitlab-sandbox-allowlist-not-trust/SKILL.md +77 -0
- package/.agents/skills/jit-harness-compare-not-clone/SKILL.md +34 -0
- package/.agents/skills/openui-catalog-compose-honesty/SKILL.md +64 -0
- package/.agents/skills/zvec-grep-compare-not-clone/SKILL.md +34 -0
- package/.claude-plugin/plugin.json +1 -1
- package/.well-known/llms.txt +1 -0
- package/.well-known/mcp/server-card.json +1 -1
- package/CONTRIBUTING.md +95 -0
- package/README.md +195 -632
- package/THIRD_PARTY_NOTICES.md +89 -0
- package/adapters/claude/.mcp.json +2 -2
- package/adapters/forge/forge.yaml +3 -3
- package/adapters/future-agi/.mcp.json +8 -0
- package/adapters/future-agi/FUTURE_AGI.md +23 -0
- package/adapters/future-agi/config.toml +3 -0
- package/adapters/future-agi/future-agi-bridge.js +9 -0
- package/adapters/future-agi/opencode.json +8 -0
- package/adapters/herdr/herdr-plugin.toml +18 -0
- package/adapters/mcp/server-stdio.js +238 -25
- package/adapters/opencode/opencode.json +1 -1
- package/adapters/workos/WORKOS.md +52 -0
- package/bin/cli.js +373 -5
- package/bin/futureagi-bridge +9 -0
- package/config/gate-templates.json +653 -4
- package/config/gates/actor-critic-audit.json +34 -0
- package/config/gates/default.json +21 -2
- package/config/gates/five-walls-governance.json +34 -0
- package/config/gates/future-agi-guardrails.json +34 -0
- package/config/gates/radware-threat-defense-2026.json +61 -0
- package/config/gates/simatree-data-governance.json +33 -0
- package/config/mcp-allowlists.json +4 -0
- package/config/merge-quality-checks.json +10 -1
- package/config/model-candidates.json +382 -24
- package/config/model-tiers.json +18 -0
- package/config/post-deploy-marketing-pages.json +10 -0
- package/config/progressive/01-wire-only.json +11 -0
- package/config/progressive/02-dashboard-empty-ok.json +10 -0
- package/config/progressive/03-one-lesson.json +10 -0
- package/config/progressive/04-warn-fires.json +11 -0
- package/config/progressive/05-strict-optional.json +11 -0
- package/config/progressive/README.md +15 -0
- package/config/schemas/broker-execution-receipt.schema.json +139 -0
- package/config/schemas/provider-execution-attestation-v1.schema.json +58 -0
- package/conformance/provider-attestation/vectors.json +320 -0
- package/docs/specs/provider-execution-attestation-v1.md +69 -0
- package/openapi/openapi.yaml +15 -0
- package/package.json +401 -147
- package/public/about.html +2 -2
- package/public/ai-malpractice-prevention.html +7 -7
- package/public/blog/a-10-dollar-vps-is-not-a-computer.html +143 -0
- package/public/blog/a-receipt-is-not-world-state.html +388 -0
- package/public/blog/git-at-agent-scale.html +374 -0
- package/public/blog/no-llm-in-the-gate.html +133 -0
- package/public/blog.html +80 -0
- package/public/case-studies.html +16 -1
- package/public/compare.html +28 -0
- package/public/diagnostic.html +216 -7
- package/public/docs/connectors.html +39 -0
- package/public/federal.html +2 -2
- package/public/founders.html +639 -0
- package/public/index.html +87 -9
- package/public/install.html +8 -8
- package/public/learn.html +39 -0
- package/public/numbers.html +2 -2
- package/public/peter.html +310 -0
- package/public/platform-partners.html +119 -0
- package/public/pricing.html +24 -3
- package/public/privacy.html +117 -0
- package/public/pro.html +17 -0
- package/public/support.html +62 -0
- package/public/terms.html +130 -0
- package/public/third-party-notices.html +95 -0
- package/public/yt.html +351 -0
- package/scripts/action-receipts.js +133 -3
- package/scripts/adaptive-governance-arena.js +349 -0
- package/scripts/admin-override.js +205 -0
- package/scripts/agent-action-inventory.js +869 -0
- package/scripts/agent-audit-trace.js +42 -2
- package/scripts/agent-egress-policy.js +1117 -0
- package/scripts/agent-memory-lifecycle.js +141 -2
- package/scripts/agent-operations-planner.js +441 -1
- package/scripts/agent-readiness.js +68 -0
- package/scripts/agent-security-central.js +647 -0
- package/scripts/allowlist-bridge-honesty.js +417 -0
- package/scripts/async-job-runner.js +102 -11
- package/scripts/audit-trail.js +212 -0
- package/scripts/auto-promote-gates.js +178 -27
- package/scripts/billing.js +1 -1
- package/scripts/broker-execution-receipts.js +719 -0
- package/scripts/budget-aware-gates-proof.js +423 -0
- package/scripts/claude-feedback-sync.js +29 -3
- package/scripts/claw-harness-production.js +237 -0
- package/scripts/cli-progress.js +111 -0
- package/scripts/cli-schema.js +163 -1
- package/scripts/codex-runbook-flywheel.js +318 -0
- package/scripts/context-footprint.js +186 -0
- package/scripts/contextfs.js +143 -61
- package/scripts/dashboard-limits.js +27 -0
- package/scripts/dashboard.js +279 -9
- package/scripts/deepseek-v4-runtime-guardrails.js +72 -6
- package/scripts/docker-sandbox-planner.js +18 -0
- package/scripts/double-blind-eval-protocol.js +252 -0
- package/scripts/edotenv-rl-gateway.js +259 -0
- package/scripts/ensure-production-search-corpus.js +162 -0
- package/scripts/eval-holdout.js +311 -0
- package/scripts/feedback-aggregate.js +21 -2
- package/scripts/feedback-loop.js +87 -5
- package/scripts/feedback-quality.js +9 -0
- package/scripts/file-ledger-lock.js +4 -1
- package/scripts/financial-control-plane.js +41 -1
- package/scripts/find-dormant-requires.js +118 -0
- package/scripts/fs-utils.js +84 -8
- package/scripts/gate-stats.js +2 -2
- package/scripts/gates-engine.js +859 -58
- package/scripts/generate-case-study-outreach.js +24 -15
- package/scripts/git-at-scale.js +628 -0
- package/scripts/governance-conflict-audit.js +1650 -0
- package/scripts/governance-difficulty-curriculum.js +328 -0
- package/scripts/graphrag-retrieval.js +275 -0
- package/scripts/gurobi-optimizer.js +324 -0
- package/scripts/gurobi_optimizer.py +485 -0
- package/scripts/harness-selector.js +82 -1
- package/scripts/hidden-entry-points.js +284 -0
- package/scripts/human-escalation.js +199 -1
- package/scripts/hybrid-feedback-context.js +152 -19
- package/scripts/intent-governed-execution.js +602 -0
- package/scripts/intervention-policy.js +123 -20
- package/scripts/jit-harness-compose.js +628 -0
- package/scripts/jsonl-watcher.js +10 -0
- package/scripts/lesson-embedding-index.js +95 -12
- package/scripts/lesson-retrieval.js +105 -19
- package/scripts/local-model-profile.js +19 -2
- package/scripts/mailer/resend-mailer.js +1 -1
- package/scripts/matryoshka-embedding.js +235 -0
- package/scripts/mcp-oauth.js +42 -4
- package/scripts/mcp-session-handles.js +1016 -0
- package/scripts/mcp-wiring-doctor.js +314 -0
- package/scripts/memory-firewall.js +115 -2
- package/scripts/memory-scope-readiness.js +299 -0
- package/scripts/memory-vs-rag-route.js +161 -0
- package/scripts/model-tier-router.js +148 -21
- package/scripts/nvidia-specdecode-al-doctor.js +536 -0
- package/scripts/openui-catalog-compose-honesty.js +593 -0
- package/scripts/operational-integrity.js +19 -1
- package/scripts/override-audit.js +213 -0
- package/scripts/package-manager-honesty-doctor.js +458 -0
- package/scripts/pr-manager.js +63 -1
- package/scripts/prove-herdr-adapter.js +52 -0
- package/scripts/prove-memory-pyramid-and-symbolic-canvas.js +95 -0
- package/scripts/prove-workos.js +73 -0
- package/scripts/provider-attestation-conformance.js +192 -0
- package/scripts/provider-receipt-contract.js +136 -0
- package/scripts/qwen38-max-cost-optimizer.js +401 -0
- package/scripts/radware-threat-defense.js +280 -0
- package/scripts/rag-embedding-identity.js +221 -0
- package/scripts/rag-precision-guardrails.js +112 -2
- package/scripts/remote-feedback-capture.js +159 -0
- package/scripts/research-agent-harness.js +256 -0
- package/scripts/rsi-safety-hillclimb.js +200 -0
- package/scripts/rule-sprawl.js +188 -0
- package/scripts/schedule-manager.js +147 -0
- package/scripts/self-heal.js +8 -0
- package/scripts/session-lease.js +415 -0
- package/scripts/simatree-data-governance.js +347 -0
- package/scripts/slo-alert-engine.js +172 -7
- package/scripts/solver-parity.js +539 -0
- package/scripts/stealth-memory-injection-gate.js +333 -0
- package/scripts/switchyard-router.js +366 -0
- package/scripts/telemetry-analytics.js +84 -27
- package/scripts/temporal-decay-weighting.js +138 -0
- package/scripts/test-all.js +165 -0
- package/scripts/token-savings.js +42 -0
- package/scripts/tool-kpi-tracker.js +108 -5
- package/scripts/tool-registry.js +193 -5
- package/scripts/universal-claim-evaluator.js +14 -2
- package/scripts/vector-store.js +279 -9
- package/scripts/workflow-notebook.js +391 -0
- package/scripts/workflow-sentinel.js +111 -12
- package/scripts/workos-production-guard.js +260 -0
- package/scripts/workspace-search-route.js +515 -0
- package/server.json +2 -2
- package/src/agent-identity-boundary.js +76 -0
- package/src/agent-retrieval-cache.js +155 -0
- package/src/alert-noise-ledger.js +502 -0
- package/src/api/server.js +802 -185
- package/src/git-fast-cache.js +220 -0
- package/src/git-wal-sync.js +156 -0
- package/src/hash-anchored-edit.js +82 -0
- package/src/hermes-platform-protocol.js +475 -0
- package/src/hermes-sync-plane.js +241 -0
- package/src/index.js +30 -1
- package/src/iso42001-compliance-guard.js +97 -0
- package/src/latency-budget.js +244 -0
- package/src/mcp-writeguard.js +316 -0
- package/src/miminions-adapter.js +106 -0
- package/src/pipeline-compass.js +104 -0
- package/src/ppl-alert-pipeline.js +284 -0
- package/src/rendezvous-router.js +90 -0
- package/src/security-questionnaire.js +195 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thumbgate",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.37.1",
|
|
4
4
|
"description": "ThumbGate Pre-Action Checks self-improve from ranked lessons and repeated failures, hard-block detected secret leaks, and block matches in strict mode.",
|
|
5
5
|
"homepage": "https://thumbgate.ai",
|
|
6
6
|
"repository": {
|
|
@@ -14,26 +14,124 @@
|
|
|
14
14
|
"bin": {
|
|
15
15
|
"thumbgate": "bin/cli.js",
|
|
16
16
|
"thumbgate-dashboard": "bin/dashboard-cli.js",
|
|
17
|
-
"thumbgate-revenue-evidence": "scripts/grafana-revenue-evidence.js"
|
|
17
|
+
"thumbgate-revenue-evidence": "scripts/grafana-revenue-evidence.js",
|
|
18
|
+
"futureagi-bridge": "bin/futureagi-bridge"
|
|
18
19
|
},
|
|
19
20
|
"files": [
|
|
21
|
+
"!config/main-branch-ruleset.json",
|
|
22
|
+
"!config/performance-budgets.json",
|
|
23
|
+
"!config/progressive/**",
|
|
24
|
+
"!public/assets/brand/github-social-preview.png",
|
|
25
|
+
"!public/assets/diagrams/thumbgate-agent-meme.jpg",
|
|
26
|
+
"!public/js/webmcp.js",
|
|
27
|
+
"!src/webmcp-governance.js",
|
|
28
|
+
".claude-plugin/plugin.json",
|
|
29
|
+
".claude/commands/",
|
|
30
|
+
".well-known/",
|
|
31
|
+
"CONTRIBUTING.md",
|
|
32
|
+
"LICENSE",
|
|
33
|
+
"README.md",
|
|
34
|
+
"THIRD_PARTY_NOTICES.md",
|
|
35
|
+
"adapters/amp/skills/thumbgate-feedback/SKILL.md",
|
|
36
|
+
"adapters/claude/.mcp.json",
|
|
37
|
+
"adapters/codex/config.toml",
|
|
38
|
+
"adapters/forge/forge.yaml",
|
|
39
|
+
"adapters/future-agi/",
|
|
40
|
+
"adapters/gcp/dfcx-webhook-gate.js",
|
|
41
|
+
"adapters/gemini/function-declarations.json",
|
|
42
|
+
"adapters/herdr/herdr-plugin.toml",
|
|
43
|
+
"adapters/letta/README.md",
|
|
44
|
+
"adapters/letta/thumbgate-letta-adapter.js",
|
|
45
|
+
"adapters/mcp/server-stdio.js",
|
|
46
|
+
"adapters/opencode/opencode.json",
|
|
47
|
+
"adapters/policy-engine/README.md",
|
|
48
|
+
"adapters/policy-engine/ethicore-guardian-client.js",
|
|
49
|
+
"adapters/policy-engine/thumbgate-policy-engine-adapter.js",
|
|
50
|
+
"adapters/workos/WORKOS.md",
|
|
51
|
+
"bench/observability-eval-suite.json",
|
|
52
|
+
"bench/programbench-smoke.json",
|
|
53
|
+
"bench/prompt-eval-suite.json",
|
|
54
|
+
"bench/thumbgate-bench.json",
|
|
55
|
+
"bin/cli.js",
|
|
56
|
+
"bin/dashboard-cli.js",
|
|
57
|
+
"bin/futureagi-bridge",
|
|
58
|
+
"bin/postinstall.js",
|
|
59
|
+
"commands/",
|
|
60
|
+
"config/",
|
|
61
|
+
"config/entitlement-public-keys.json",
|
|
62
|
+
"conformance/provider-attestation/",
|
|
63
|
+
"docs/integrations/grafana/README.md",
|
|
64
|
+
"docs/integrations/grafana/thumbgate-revenue-evidence-dashboard.json",
|
|
65
|
+
"docs/specs/provider-execution-attestation-v1.md",
|
|
66
|
+
"glama.json",
|
|
67
|
+
"hooks/hooks.json",
|
|
68
|
+
"openapi/",
|
|
69
|
+
"public/about.html",
|
|
70
|
+
"public/agent-manager.html",
|
|
71
|
+
"public/agents-cost-savings.html",
|
|
72
|
+
"public/ai-malpractice-prevention.html",
|
|
73
|
+
"public/architecture.html",
|
|
74
|
+
"public/assets/brand/",
|
|
75
|
+
"public/assets/claude-thumbgate-statusbar.svg",
|
|
76
|
+
"public/assets/codex-thumbgate-statusbar-test.svg",
|
|
77
|
+
"public/assets/diagrams/",
|
|
78
|
+
"public/assets/legal-intake-control-flow.svg",
|
|
79
|
+
"public/blog.html",
|
|
80
|
+
"public/blog/",
|
|
81
|
+
"public/brand/",
|
|
82
|
+
"public/case-studies.html",
|
|
83
|
+
"public/chatgpt-app.html",
|
|
84
|
+
"public/codex-enterprise.html",
|
|
85
|
+
"public/codex-plugin.html",
|
|
86
|
+
"public/compare.html",
|
|
87
|
+
"public/dashboard.html",
|
|
88
|
+
"public/diagnostic.html",
|
|
89
|
+
"public/docs/connectors.html",
|
|
90
|
+
"public/eval-scorecard.html",
|
|
91
|
+
"public/eval-scorecard.json",
|
|
92
|
+
"public/evaluations.html",
|
|
93
|
+
"public/federal.html",
|
|
94
|
+
"public/founders.html",
|
|
95
|
+
"public/guide.html",
|
|
96
|
+
"public/index.html",
|
|
97
|
+
"public/install.html",
|
|
98
|
+
"public/js/",
|
|
99
|
+
"public/learn.html",
|
|
100
|
+
"public/lessons.html",
|
|
101
|
+
"public/numbers.html",
|
|
102
|
+
"public/partner-intake.html",
|
|
103
|
+
"public/peter.html",
|
|
104
|
+
"public/platform-partners.html",
|
|
105
|
+
"public/pricing.html",
|
|
106
|
+
"public/privacy.html",
|
|
107
|
+
"public/pro.html",
|
|
108
|
+
"public/support.html",
|
|
109
|
+
"public/terms.html",
|
|
110
|
+
"public/third-party-notices.html",
|
|
111
|
+
"public/whitepaper.html",
|
|
112
|
+
"public/yt.html",
|
|
113
|
+
"scripts/a-plus-evidence-scorecard.js",
|
|
20
114
|
"scripts/access-anomaly-detector.js",
|
|
21
115
|
"scripts/action-receipts.js",
|
|
22
116
|
"scripts/activation-quickstart.js",
|
|
23
117
|
"scripts/activation-tracker.js",
|
|
118
|
+
"scripts/adaptive-governance-arena.js",
|
|
119
|
+
"scripts/admin-override.js",
|
|
120
|
+
"scripts/agent-action-inventory.js",
|
|
24
121
|
"scripts/agent-audit-trace.js",
|
|
25
|
-
"scripts/agent-outcome-eval.js",
|
|
26
|
-
"scripts/agent-outcome-monitor.js",
|
|
27
122
|
"scripts/agent-design-governance.js",
|
|
123
|
+
"scripts/agent-egress-policy.js",
|
|
124
|
+
"scripts/allowlist-bridge-honesty.js",
|
|
28
125
|
"scripts/agent-memory-lifecycle.js",
|
|
126
|
+
"scripts/agent-operations-planner.js",
|
|
127
|
+
"scripts/agent-outcome-eval.js",
|
|
128
|
+
"scripts/agent-outcome-monitor.js",
|
|
29
129
|
"scripts/agent-readiness-plan.js",
|
|
30
130
|
"scripts/agent-readiness.js",
|
|
31
|
-
"scripts/a-plus-evidence-scorecard.js",
|
|
32
|
-
"scripts/agent-operations-planner.js",
|
|
33
131
|
"scripts/agent-reasoning-traces.js",
|
|
34
132
|
"scripts/agent-reward-model.js",
|
|
133
|
+
"scripts/agent-security-central.js",
|
|
35
134
|
"scripts/agent-stack-survival-audit.js",
|
|
36
|
-
"scripts/aws-blocks-guardrails.js",
|
|
37
135
|
"scripts/agentic-data-pipeline.js",
|
|
38
136
|
"scripts/ai-component-inventory.js",
|
|
39
137
|
"scripts/ai-engineering-stack-guardrails.js",
|
|
@@ -46,20 +144,24 @@
|
|
|
46
144
|
"scripts/auto-promote-gates.js",
|
|
47
145
|
"scripts/auto-wire-hooks.js",
|
|
48
146
|
"scripts/autoresearch-runner.js",
|
|
147
|
+
"scripts/aws-blocks-guardrails.js",
|
|
49
148
|
"scripts/background-agent-governance.js",
|
|
50
149
|
"scripts/bayes-optimal-gate.js",
|
|
51
150
|
"scripts/belief-update.js",
|
|
52
151
|
"scripts/billing.js",
|
|
53
|
-
"scripts/checkout-attribution-reference.js",
|
|
54
152
|
"scripts/bot-detection.js",
|
|
153
|
+
"scripts/broker-execution-receipts.js",
|
|
154
|
+
"scripts/budget-aware-gates-proof.js",
|
|
55
155
|
"scripts/build-metadata.js",
|
|
56
|
-
"scripts/
|
|
57
|
-
"scripts/colbert-style-maxsim.js",
|
|
58
|
-
"scripts/cross-encoder-reranker.js",
|
|
156
|
+
"scripts/buyer-paths.js",
|
|
59
157
|
"scripts/chatgpt-ads-readiness-pack.js",
|
|
158
|
+
"scripts/checkout-attribution-reference.js",
|
|
159
|
+
"scripts/classifier-routing.js",
|
|
60
160
|
"scripts/claude-feedback-sync.js",
|
|
161
|
+
"scripts/claw-harness-production.js",
|
|
61
162
|
"scripts/cli-demo.js",
|
|
62
163
|
"scripts/cli-feedback.js",
|
|
164
|
+
"scripts/cli-progress.js",
|
|
63
165
|
"scripts/cli-schema.js",
|
|
64
166
|
"scripts/cli-status.js",
|
|
65
167
|
"scripts/cli-telemetry.js",
|
|
@@ -69,46 +171,47 @@
|
|
|
69
171
|
"scripts/code-mode-mcp-plan.js",
|
|
70
172
|
"scripts/code-reasoning.js",
|
|
71
173
|
"scripts/codegraph-context.js",
|
|
174
|
+
"scripts/codex-runbook-flywheel.js",
|
|
72
175
|
"scripts/codex-self-heal.js",
|
|
73
|
-
"scripts/
|
|
176
|
+
"scripts/colbert-style-maxsim.js",
|
|
74
177
|
"scripts/commercial-offer.js",
|
|
75
|
-
"scripts/revenue-offer-system.js",
|
|
76
178
|
"scripts/context-engine.js",
|
|
77
179
|
"scripts/context-footprint.js",
|
|
78
180
|
"scripts/context-manager.js",
|
|
79
181
|
"scripts/contextfs.js",
|
|
80
182
|
"scripts/conversation-context.js",
|
|
183
|
+
"scripts/cross-encoder-reranker.js",
|
|
81
184
|
"scripts/dashboard-chat.js",
|
|
185
|
+
"scripts/dashboard-limits.js",
|
|
82
186
|
"scripts/dashboard-render-spec.js",
|
|
83
187
|
"scripts/dashboard.js",
|
|
84
188
|
"scripts/decision-journal.js",
|
|
85
189
|
"scripts/deepseek-v4-runtime-guardrails.js",
|
|
190
|
+
"scripts/nvidia-specdecode-al-doctor.js",
|
|
191
|
+
"scripts/package-manager-honesty-doctor.js",
|
|
192
|
+
"scripts/openui-catalog-compose-honesty.js",
|
|
86
193
|
"scripts/docker-sandbox-planner.js",
|
|
87
194
|
"scripts/document-intake.js",
|
|
88
|
-
"scripts/rag-document-pipeline.js",
|
|
89
|
-
"scripts/ragas-style-metrics.js",
|
|
90
|
-
"scripts/skill-packs.js",
|
|
91
|
-
"scripts/lesson-embedding-maintenance.js",
|
|
92
|
-
"scripts/retrieval-hybrid-ablation.js",
|
|
93
195
|
"scripts/document-workflow-governance.js",
|
|
196
|
+
"scripts/double-blind-eval-protocol.js",
|
|
94
197
|
"scripts/durability/step.js",
|
|
198
|
+
"scripts/edotenv-rl-gateway.js",
|
|
199
|
+
"scripts/ensure-production-search-corpus.js",
|
|
200
|
+
"scripts/entitlement.js",
|
|
201
|
+
"scripts/eval-holdout.js",
|
|
202
|
+
"scripts/eval-quality-suite.js",
|
|
95
203
|
"scripts/evolution-state.js",
|
|
96
204
|
"scripts/experiment-tracker.js",
|
|
97
205
|
"scripts/explore-subcommands.js",
|
|
98
206
|
"scripts/explore.js",
|
|
99
207
|
"scripts/export-databricks-bundle.js",
|
|
100
|
-
"scripts/entitlement.js",
|
|
101
|
-
"scripts/eval-quality-suite.js",
|
|
102
|
-
"config/entitlement-public-keys.json",
|
|
103
|
-
"scripts/external-customer-audit.js",
|
|
104
|
-
"scripts/stripe-revenue-catalog.js",
|
|
105
|
-
"scripts/stripe-revenue-catalog-audit.js",
|
|
106
208
|
"scripts/export-dpo-pairs.js",
|
|
107
209
|
"scripts/export-hf-dataset.js",
|
|
210
|
+
"scripts/external-customer-audit.js",
|
|
108
211
|
"scripts/failure-diagnostics.js",
|
|
109
212
|
"scripts/feedback-aggregate.js",
|
|
110
|
-
"scripts/feedback-history-distiller.js",
|
|
111
213
|
"scripts/feedback-attribution.js",
|
|
214
|
+
"scripts/feedback-history-distiller.js",
|
|
112
215
|
"scripts/feedback-loop.js",
|
|
113
216
|
"scripts/feedback-paths.js",
|
|
114
217
|
"scripts/feedback-quality.js",
|
|
@@ -118,36 +221,48 @@
|
|
|
118
221
|
"scripts/feedback-to-rules.js",
|
|
119
222
|
"scripts/feedback_quality_eval.py",
|
|
120
223
|
"scripts/file-ledger-lock.js",
|
|
121
|
-
"scripts/financial-control-plane.js",
|
|
122
224
|
"scripts/filesystem-search.js",
|
|
225
|
+
"scripts/find-dormant-requires.js",
|
|
226
|
+
"scripts/financial-control-plane.js",
|
|
123
227
|
"scripts/fs-utils.js",
|
|
124
|
-
"scripts/grafana-revenue-evidence.js",
|
|
125
228
|
"scripts/gate-stats.js",
|
|
126
229
|
"scripts/gate-templates.js",
|
|
127
|
-
"scripts/harness-tool-names.js",
|
|
128
230
|
"scripts/gates-engine.js",
|
|
129
231
|
"scripts/gemini-embedding-policy.js",
|
|
232
|
+
"scripts/generate-case-study-outreach.js",
|
|
233
|
+
"scripts/generate-eval-scorecard.js",
|
|
234
|
+
"scripts/git-at-scale.js",
|
|
235
|
+
"scripts/governance-conflict-audit.js",
|
|
236
|
+
"scripts/governance-difficulty-curriculum.js",
|
|
237
|
+
"scripts/grafana-revenue-evidence.js",
|
|
238
|
+
"scripts/graphrag-retrieval.js",
|
|
130
239
|
"scripts/growth-campaigns.js",
|
|
240
|
+
"scripts/gurobi-optimizer.js",
|
|
241
|
+
"scripts/gurobi_optimizer.py",
|
|
131
242
|
"scripts/harness-selector.js",
|
|
243
|
+
"scripts/harness-tool-names.js",
|
|
132
244
|
"scripts/hf-papers.js",
|
|
245
|
+
"scripts/hidden-entry-points.js",
|
|
133
246
|
"scripts/hook-runtime.js",
|
|
134
247
|
"scripts/hook-stop-anti-claim.js",
|
|
135
248
|
"scripts/hook-thumbgate-cache-updater.js",
|
|
136
249
|
"scripts/hosted-config.js",
|
|
137
250
|
"scripts/human-escalation.js",
|
|
138
251
|
"scripts/hybrid-feedback-context.js",
|
|
139
|
-
"scripts/imperative-detector.js",
|
|
140
252
|
"scripts/hybrid-supervisor-agent.js",
|
|
253
|
+
"scripts/imperative-detector.js",
|
|
141
254
|
"scripts/inference-cache-policy.js",
|
|
142
|
-
"scripts/install-shim.js",
|
|
143
255
|
"scripts/install-mcp.js",
|
|
256
|
+
"scripts/install-shim.js",
|
|
144
257
|
"scripts/internal-agent-bootstrap.js",
|
|
145
258
|
"scripts/intervention-policy.js",
|
|
146
259
|
"scripts/jsonl-watcher.js",
|
|
260
|
+
"scripts/jsonl-window.js",
|
|
147
261
|
"scripts/judge-reward-function.js",
|
|
148
262
|
"scripts/lesson-canonical.js",
|
|
149
263
|
"scripts/lesson-db.js",
|
|
150
264
|
"scripts/lesson-embedding-index.js",
|
|
265
|
+
"scripts/lesson-embedding-maintenance.js",
|
|
151
266
|
"scripts/lesson-inference.js",
|
|
152
267
|
"scripts/lesson-reranker.js",
|
|
153
268
|
"scripts/lesson-retrieval.js",
|
|
@@ -161,33 +276,39 @@
|
|
|
161
276
|
"scripts/long-running-agent-context-guardrails.js",
|
|
162
277
|
"scripts/mailer/index.js",
|
|
163
278
|
"scripts/mailer/resend-mailer.js",
|
|
279
|
+
"scripts/matryoshka-embedding.js",
|
|
164
280
|
"scripts/mcp-config.js",
|
|
165
281
|
"scripts/mcp-oauth.js",
|
|
166
282
|
"scripts/mcp-policy.js",
|
|
283
|
+
"scripts/mcp-session-handles.js",
|
|
167
284
|
"scripts/mcp-transport-strategy.js",
|
|
285
|
+
"scripts/mcp-wiring-doctor.js",
|
|
168
286
|
"scripts/memory-firewall.js",
|
|
169
287
|
"scripts/memory-scope-readiness.js",
|
|
288
|
+
"scripts/memory-vs-rag-route.js",
|
|
170
289
|
"scripts/meta-agent-loop.js",
|
|
171
290
|
"scripts/model-access-eligibility.js",
|
|
291
|
+
"scripts/model-eval.js",
|
|
172
292
|
"scripts/model-migration-readiness.js",
|
|
173
293
|
"scripts/model-tier-router.js",
|
|
174
294
|
"scripts/multimodal-retrieval-plan.js",
|
|
175
295
|
"scripts/native-messaging-audit.js",
|
|
176
296
|
"scripts/natural-language-harness.js",
|
|
177
297
|
"scripts/noop-detect.js",
|
|
298
|
+
"scripts/observability-env.js",
|
|
299
|
+
"scripts/observability-setup.js",
|
|
178
300
|
"scripts/obsidian-export.js",
|
|
179
301
|
"scripts/operational-integrity.js",
|
|
180
|
-
"scripts/observability-setup.js",
|
|
181
|
-
"scripts/observability-env.js",
|
|
182
|
-
"scripts/jsonl-window.js",
|
|
183
302
|
"scripts/oss-pr-opportunity-scout.js",
|
|
184
303
|
"scripts/otel-declarative-config.js",
|
|
304
|
+
"scripts/override-audit.js",
|
|
185
305
|
"scripts/parallel-workflow-orchestrator.js",
|
|
186
306
|
"scripts/perplexity-client.js",
|
|
187
307
|
"scripts/plan-gate.js",
|
|
188
308
|
"scripts/plausible-domain-config.js",
|
|
189
309
|
"scripts/plausible-server-events.js",
|
|
190
310
|
"scripts/pr-manager.js",
|
|
311
|
+
"scripts/pragmatic-hybrid-search.js",
|
|
191
312
|
"scripts/private-core-boundary.js",
|
|
192
313
|
"scripts/pro-local-dashboard.js",
|
|
193
314
|
"scripts/proactive-agent-eval-guardrails.js",
|
|
@@ -198,55 +319,73 @@
|
|
|
198
319
|
"scripts/prompt-guard.js",
|
|
199
320
|
"scripts/prompt-programs.js",
|
|
200
321
|
"scripts/prompting-operating-system.js",
|
|
322
|
+
"scripts/prove-herdr-adapter.js",
|
|
323
|
+
"scripts/prove-memory-pyramid-and-symbolic-canvas.js",
|
|
324
|
+
"scripts/prove-workos.js",
|
|
325
|
+
"scripts/provider-action-normalizer.js",
|
|
326
|
+
"scripts/provider-attestation-conformance.js",
|
|
201
327
|
"scripts/provider-live-evidence.js",
|
|
202
328
|
"scripts/provider-payment-reconciler.js",
|
|
329
|
+
"scripts/provider-receipt-contract.js",
|
|
203
330
|
"scripts/provider-revenue-evidence.js",
|
|
204
|
-
"scripts/provider-action-normalizer.js",
|
|
205
331
|
"scripts/proxy-pointer-rag-guardrails.js",
|
|
206
|
-
"scripts/qa-scenario-planner.js",
|
|
207
332
|
"scripts/published-cli.js",
|
|
333
|
+
"scripts/qa-scenario-planner.js",
|
|
334
|
+
"scripts/qwen38-max-cost-optimizer.js",
|
|
335
|
+
"scripts/rag-document-pipeline.js",
|
|
336
|
+
"scripts/rag-embedding-identity.js",
|
|
208
337
|
"scripts/rag-precision-guardrails.js",
|
|
338
|
+
"scripts/rag-structured-output.js",
|
|
339
|
+
"scripts/ragas-style-metrics.js",
|
|
209
340
|
"scripts/rate-limiter.js",
|
|
210
341
|
"scripts/reasoning-efficiency-guardrails.js",
|
|
342
|
+
"scripts/refresh-proof-pack.js",
|
|
343
|
+
"scripts/remote-feedback-capture.js",
|
|
211
344
|
"scripts/repeat-metric.js",
|
|
345
|
+
"scripts/request-envelope.js",
|
|
212
346
|
"scripts/rerank-pipeline.js",
|
|
213
347
|
"scripts/rerank-quality-eval.js",
|
|
214
|
-
"scripts/
|
|
348
|
+
"scripts/research-agent-harness.js",
|
|
349
|
+
"scripts/retrieval-hybrid-ablation.js",
|
|
215
350
|
"scripts/retrieval-quality-tier.js",
|
|
216
|
-
"scripts/tier-budget-guard.js",
|
|
217
351
|
"scripts/revenue-action-eligibility.js",
|
|
218
352
|
"scripts/revenue-evidence-remediation.js",
|
|
353
|
+
"scripts/revenue-offer-system.js",
|
|
219
354
|
"scripts/reward-hacking-guardrails.js",
|
|
220
|
-
"scripts/model-eval.js",
|
|
221
355
|
"scripts/risk-scorer.js",
|
|
222
356
|
"scripts/rlaif-self-audit.js",
|
|
357
|
+
"scripts/rsi-safety-hillclimb.js",
|
|
223
358
|
"scripts/rubric-engine.js",
|
|
359
|
+
"scripts/rule-sprawl.js",
|
|
224
360
|
"scripts/rule-validator.js",
|
|
225
361
|
"scripts/sales-pipeline.js",
|
|
226
362
|
"scripts/schedule-manager.js",
|
|
227
|
-
"scripts/secret-scanner.js",
|
|
228
363
|
"scripts/secret-fixture-tokens.js",
|
|
229
364
|
"scripts/secret-redaction.js",
|
|
230
|
-
"scripts/
|
|
365
|
+
"scripts/secret-scanner.js",
|
|
231
366
|
"scripts/security-scanner.js",
|
|
232
367
|
"scripts/self-distill-agent.js",
|
|
233
|
-
"scripts/self-heal.js",
|
|
234
368
|
"scripts/self-harness-optimizer.js",
|
|
369
|
+
"scripts/self-heal.js",
|
|
235
370
|
"scripts/self-healing-check.js",
|
|
371
|
+
"scripts/self-protection.js",
|
|
236
372
|
"scripts/semantic-dedup.js",
|
|
237
373
|
"scripts/semantic-layer.js",
|
|
238
374
|
"scripts/seo-gsd.js",
|
|
375
|
+
"scripts/session-lease.js",
|
|
239
376
|
"scripts/settings-hierarchy.js",
|
|
240
377
|
"scripts/silent-failure-cluster.js",
|
|
378
|
+
"scripts/simatree-data-governance.js",
|
|
241
379
|
"scripts/single-use-credential-gate.js",
|
|
242
380
|
"scripts/skill-generator.js",
|
|
381
|
+
"scripts/skill-packs.js",
|
|
243
382
|
"scripts/skill-rag-router.js",
|
|
244
|
-
"scripts/slow-loop.js",
|
|
245
383
|
"scripts/slo-alert-engine.js",
|
|
384
|
+
"scripts/slow-loop.js",
|
|
385
|
+
"scripts/solver-parity.js",
|
|
246
386
|
"scripts/spec-gate.js",
|
|
247
|
-
"scripts/stripe-credentials.js",
|
|
248
|
-
"scripts/statusline-cache-read.js",
|
|
249
387
|
"scripts/statusline-cache-path.js",
|
|
388
|
+
"scripts/statusline-cache-read.js",
|
|
250
389
|
"scripts/statusline-context.js",
|
|
251
390
|
"scripts/statusline-lesson.js",
|
|
252
391
|
"scripts/statusline-links.js",
|
|
@@ -254,23 +393,31 @@
|
|
|
254
393
|
"scripts/statusline-meta.js",
|
|
255
394
|
"scripts/statusline-tower.js",
|
|
256
395
|
"scripts/statusline.sh",
|
|
396
|
+
"scripts/stealth-memory-injection-gate.js",
|
|
397
|
+
"scripts/stripe-credentials.js",
|
|
398
|
+
"scripts/stripe-revenue-catalog-audit.js",
|
|
399
|
+
"scripts/stripe-revenue-catalog.js",
|
|
257
400
|
"scripts/structured-prompt-driven.js",
|
|
401
|
+
"scripts/switchyard-router.js",
|
|
258
402
|
"scripts/sync-telemetry-from-prod.js",
|
|
259
403
|
"scripts/synthetic-data-provenance.js",
|
|
260
404
|
"scripts/task-context-result.js",
|
|
405
|
+
"scripts/task-outcomes.js",
|
|
261
406
|
"scripts/telemetry-analytics.js",
|
|
407
|
+
"scripts/temporal-decay-weighting.js",
|
|
408
|
+
"scripts/test-all.js",
|
|
262
409
|
"scripts/thompson-sampling.js",
|
|
263
410
|
"scripts/thumbgate-bench.js",
|
|
264
411
|
"scripts/thumbgate-search.js",
|
|
265
|
-
"scripts/
|
|
412
|
+
"scripts/tier-budget-guard.js",
|
|
266
413
|
"scripts/token-savings.js",
|
|
267
414
|
"scripts/token-tco.js",
|
|
268
415
|
"scripts/tool-contract-validator.js",
|
|
269
|
-
"scripts/tool-registry.js",
|
|
270
|
-
"scripts/task-outcomes.js",
|
|
271
416
|
"scripts/tool-kpi-tracker.js",
|
|
272
|
-
"scripts/
|
|
417
|
+
"scripts/tool-registry.js",
|
|
418
|
+
"scripts/trajectory-scorer.js",
|
|
273
419
|
"scripts/universal-claim-evaluator.js",
|
|
420
|
+
"scripts/upstream-contribution-engine.js",
|
|
274
421
|
"scripts/user-profile.js",
|
|
275
422
|
"scripts/validate-workflow-contract.js",
|
|
276
423
|
"scripts/vector-store.js",
|
|
@@ -278,89 +425,27 @@
|
|
|
278
425
|
"scripts/verifier-scoring.js",
|
|
279
426
|
"scripts/verify-marketing-pages-deployed.js",
|
|
280
427
|
"scripts/visitor-journey.js",
|
|
428
|
+
"scripts/workflow-intake-queue.js",
|
|
429
|
+
"scripts/workflow-notebook.js",
|
|
281
430
|
"scripts/workflow-runs.js",
|
|
282
431
|
"scripts/workflow-sentinel.js",
|
|
283
|
-
"scripts/
|
|
432
|
+
"scripts/workos-production-guard.js",
|
|
284
433
|
"scripts/workspace-agent-routines.js",
|
|
285
434
|
"scripts/workspace-evolver.js",
|
|
286
435
|
"scripts/xmemory-lite.js",
|
|
287
|
-
".
|
|
288
|
-
"hooks/hooks.json",
|
|
289
|
-
".claude/commands/",
|
|
290
|
-
"commands/",
|
|
291
|
-
".well-known/",
|
|
292
|
-
"LICENSE",
|
|
293
|
-
"README.md",
|
|
294
|
-
"docs/integrations/grafana/README.md",
|
|
295
|
-
"docs/integrations/grafana/thumbgate-revenue-evidence-dashboard.json",
|
|
296
|
-
"adapters/amp/skills/thumbgate-feedback/SKILL.md",
|
|
297
|
-
"adapters/claude/.mcp.json",
|
|
298
|
-
"adapters/codex/config.toml",
|
|
299
|
-
"adapters/forge/forge.yaml",
|
|
300
|
-
"adapters/gemini/function-declarations.json",
|
|
301
|
-
"adapters/letta/README.md",
|
|
302
|
-
"adapters/letta/thumbgate-letta-adapter.js",
|
|
303
|
-
"adapters/gcp/dfcx-webhook-gate.js",
|
|
304
|
-
"adapters/policy-engine/README.md",
|
|
305
|
-
"adapters/policy-engine/ethicore-guardian-client.js",
|
|
306
|
-
"adapters/policy-engine/thumbgate-policy-engine-adapter.js",
|
|
307
|
-
"adapters/mcp/server-stdio.js",
|
|
308
|
-
"adapters/opencode/opencode.json",
|
|
309
|
-
"bench/programbench-smoke.json",
|
|
310
|
-
"bench/prompt-eval-suite.json",
|
|
311
|
-
"bench/observability-eval-suite.json",
|
|
312
|
-
"bench/thumbgate-bench.json",
|
|
313
|
-
"bin/cli.js",
|
|
314
|
-
"bin/dashboard-cli.js",
|
|
315
|
-
"bin/postinstall.js",
|
|
316
|
-
"config/",
|
|
317
|
-
"openapi/",
|
|
318
|
-
"public/about.html",
|
|
319
|
-
"public/agent-manager.html",
|
|
320
|
-
"public/blog.html",
|
|
321
|
-
"public/blog/",
|
|
322
|
-
"public/codex-enterprise.html",
|
|
323
|
-
"public/agents-cost-savings.html",
|
|
324
|
-
"public/ai-malpractice-prevention.html",
|
|
325
|
-
"public/chatgpt-app.html",
|
|
326
|
-
"public/codex-plugin.html",
|
|
327
|
-
"public/compare.html",
|
|
328
|
-
"public/dashboard.html",
|
|
329
|
-
"public/diagnostic.html",
|
|
330
|
-
"public/federal.html",
|
|
331
|
-
"public/guide.html",
|
|
332
|
-
"public/install.html",
|
|
333
|
-
"public/index.html",
|
|
334
|
-
"public/learn.html",
|
|
335
|
-
"public/lessons.html",
|
|
336
|
-
"public/numbers.html",
|
|
337
|
-
"public/assets/diagrams/",
|
|
338
|
-
"public/whitepaper.html",
|
|
339
|
-
"public/evaluations.html",
|
|
340
|
-
"public/eval-scorecard.html",
|
|
341
|
-
"public/eval-scorecard.json",
|
|
342
|
-
"public/case-studies.html",
|
|
343
|
-
"public/architecture.html",
|
|
344
|
-
"public/partner-intake.html",
|
|
345
|
-
"public/pricing.html",
|
|
346
|
-
"public/pro.html",
|
|
347
|
-
"public/assets/brand/",
|
|
348
|
-
"!public/assets/brand/github-social-preview.png",
|
|
349
|
-
"public/assets/claude-thumbgate-statusbar.svg",
|
|
350
|
-
"public/assets/codex-thumbgate-statusbar-test.svg",
|
|
351
|
-
"public/assets/legal-intake-control-flow.svg",
|
|
352
|
-
"public/brand/",
|
|
353
|
-
"public/js/",
|
|
436
|
+
"server.json",
|
|
354
437
|
"skills/thumbgate/SKILL.md",
|
|
438
|
+
"smithery.yaml",
|
|
355
439
|
"src/",
|
|
356
|
-
"scripts/
|
|
357
|
-
"
|
|
358
|
-
"scripts/
|
|
359
|
-
"
|
|
360
|
-
"scripts/
|
|
361
|
-
"
|
|
362
|
-
"
|
|
363
|
-
"
|
|
440
|
+
"scripts/radware-threat-defense.js",
|
|
441
|
+
".agents/skills/cyberstrike-compare-not-clone/",
|
|
442
|
+
"scripts/intent-governed-execution.js",
|
|
443
|
+
".agents/skills/zvec-grep-compare-not-clone/",
|
|
444
|
+
"scripts/workspace-search-route.js",
|
|
445
|
+
".agents/skills/jit-harness-compare-not-clone/",
|
|
446
|
+
"scripts/jit-harness-compose.js",
|
|
447
|
+
".agents/skills/gitlab-sandbox-allowlist-not-trust/",
|
|
448
|
+
".agents/skills/openui-catalog-compose-honesty/"
|
|
364
449
|
],
|
|
365
450
|
"scripts": {
|
|
366
451
|
"canary:snapshot": "node scripts/gate-decision-canary.js --snapshot",
|
|
@@ -463,7 +548,45 @@
|
|
|
463
548
|
"social:prospect:bluesky": "node scripts/social-bluesky-prospecting.js",
|
|
464
549
|
"social:prospect:bluesky:dry": "node scripts/social-bluesky-prospecting.js --dry-run",
|
|
465
550
|
"social:reply-publish:bluesky:dry": "node scripts/social-reply-monitor-bluesky.js --publish-approved --dry-run",
|
|
466
|
-
"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:proof-pack-cadence && npm run test:grafana-revenue-evidence && 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:canary && 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:verification-evidence && 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:universal-claim-evaluator && 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:stop-hook-json-contract && 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:jsonl-window && npm run test:observability-env && npm run test:glama-mcp && npm run test:prove-glama-mcp && 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:never-bypass-branch-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:rag-pipeline && npm run test:autonomous-reliability && 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:service-checkout-price-integrity && npm run test:cursor-marketplace-doctor && npm run test:plugin-hooks-manifest && npm run test:okara-money-promo-automation && npm run test:retrieval-window && npm run test:risk-quality && npm run test:eval-mining && npm run test:state-backup && npm run test:eval-golden && npm run test:task-scope-lease && npm run test:evaluations-page && npm run test:agent-install-paths && npm run test:mcp-gate-check && npm run test:adapter-pins && npm run test:secret-egress && npm run test:harness-tool-names && npm run test:feedback-reward && npm run test:capability-wiring",
|
|
551
|
+
"lint:dormant-requires": "node scripts/find-dormant-requires.js",
|
|
552
|
+
"test:all": "node scripts/test-all.js",
|
|
553
|
+
"test:orphans": "node scripts/test-all.js --orphans",
|
|
554
|
+
"test:tooling-scripts": "node --test tests/test-all-and-dormant-requires.test.js",
|
|
555
|
+
"stars:history": "node scripts/star-history.js",
|
|
556
|
+
"test:star-history": "node --test tests/star-history.test.js",
|
|
557
|
+
"github:achievements": "node scripts/github-achievement-honesty.js",
|
|
558
|
+
"test:github-achievement-honesty": "node --test tests/github-achievement-honesty.test.js",
|
|
559
|
+
"identity:checklist": "node scripts/ai-identity-checklist.js",
|
|
560
|
+
"graph:fuse": "node scripts/knowledge-graph-fuse.js",
|
|
561
|
+
"test:ai-identity-checklist": "node --test tests/ai-identity-checklist.test.js",
|
|
562
|
+
"test:knowledge-graph-fuse": "node --test tests/knowledge-graph-fuse.test.js",
|
|
563
|
+
"skill:library-compact": "node scripts/skill-library-compact.js",
|
|
564
|
+
"test:skill-library-compact": "node --test tests/skill-library-compact.test.js",
|
|
565
|
+
"intent:scope": "node scripts/intent-scope-runtime.js",
|
|
566
|
+
"test:intent-scope-runtime": "node --test tests/intent-scope-runtime.test.js",
|
|
567
|
+
"unicode:tag-block": "node scripts/unicode-tag-block-normalize.js",
|
|
568
|
+
"test:unicode-tag-block-normalize": "node --test tests/unicode-tag-block-normalize.test.js",
|
|
569
|
+
"test:issue-3702-action-not-substring": "node --test tests/issue-3702-action-not-substring.test.js",
|
|
570
|
+
"mantis:critic-review": "node scripts/mantis-critic-review.js",
|
|
571
|
+
"test:mantis-critic-review": "node --test tests/mantis-critic-review.test.js",
|
|
572
|
+
"break-glass:gates-propose": "node scripts/break-glass-gates-propose.js",
|
|
573
|
+
"test:break-glass-gates-propose": "node --test tests/break-glass-gates-propose.test.js",
|
|
574
|
+
"test:git-at-scale": "node --test tests/git-at-scale.test.js",
|
|
575
|
+
"test:rule-sprawl": "node --test tests/rule-sprawl.test.js",
|
|
576
|
+
"test:matryoshka-embedding": "node --test tests/matryoshka-embedding.test.js",
|
|
577
|
+
"test:autonomous-mandate": "node --test tests/autonomous-execution-mandate.test.js",
|
|
578
|
+
"test:legal-public-routes": "node --test tests/legal-public-routes.test.js",
|
|
579
|
+
"test:provider-receipt-contract": "node --test tests/provider-receipt-contract.test.js",
|
|
580
|
+
"test:actor-critic": "node --test tests/actor-critic-process-audit.test.js",
|
|
581
|
+
"test:infoq-engage": "node --test tests/infoq-engage.test.js",
|
|
582
|
+
"test:hermes-platform": "node --test tests/hermes-platform-protocol.test.js tests/hermes-sync-plane.test.js tests/hermes-hosted-server.test.js",
|
|
583
|
+
"test:alert-noise-ledger": "node --test tests/alert-noise-ledger.test.js",
|
|
584
|
+
"test:future-agi": "node --test tests/future-agi-bridge.test.js tests/future-agi-evaluator.test.js tests/future-agi-review-regressions.test.js",
|
|
585
|
+
"test:futureagi-prepost": "node --test tests/futureagi-prepost-gate.test.js",
|
|
586
|
+
"test:five-walls": "node --test tests/five-walls-governance.test.js",
|
|
587
|
+
"test:llm-surface-consistency": "node --test tests/llm-surface-consistency.test.js",
|
|
588
|
+
"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:proof-pack-cadence && npm run test:grafana-revenue-evidence && 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:canary && 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:broker-execution-receipts && npm run test:provider-attestation && 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:verification-evidence && 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:vlt && npm run test:hf-context && npm run test:proof-common && npm run test:xss-checkout-escape && npm run test:security-scanner && npm run test:agent-security-central && 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:universal-claim-evaluator && 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:stop-hook-json-contract && 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:jsonl-window && npm run test:observability-env && npm run test:glama-mcp && npm run test:prove-glama-mcp && 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:never-bypass-branch-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:workos-production-guard && npm run test:partner-landing && npm run test:memory-pyramid && 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:rag-pipeline && npm run test:autonomous-reliability && 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:service-checkout-price-integrity && npm run test:cursor-marketplace-doctor && npm run test:github-marketplace-action && npm run test:plugin-hooks-manifest && npm run test:okara-money-promo-automation && npm run test:retrieval-window && npm run test:risk-quality && npm run test:eval-mining && npm run test:state-backup && npm run test:eval-golden && npm run test:task-scope-lease && npm run test:evaluations-page && npm run test:agent-install-paths && npm run test:mcp-gate-check && npm run test:adapter-pins && npm run test:secret-egress && npm run test:harness-tool-names && npm run test:feedback-reward && npm run test:capability-wiring && npm run test:autonomous-mandate && npm run test:memory-near-dupe && npm run test:lesson-retrieval-dedupe-backfill && npm run test:matryoshka-embedding && npm run test:rag-embedding-identity && npm run test:switchyard-router && npm run test:bulk-cloud-tier && npm run test:session-lease && npm run test:compare-agoragentic && npm run test:compare-dirac && npm run test:compare-aperture && npm run test:qwen-adapter && npm run test:qwen38-max-cost-optimizer && npm run test:openai-compatible-embed && npm run test:legal-public-routes && npm run test:gurobi && npm run test:mcp-session-handles && npm run test:agent-egress-policy && npm run test:budget-aware-gates-proof && npm run test:edotenv-rl-gateway && npm run test:rsi-safety-hillclimb && npm run test:research-agent-harness && npm run test:governance-curriculum && npm run test:provider-receipt-contract && npm run test:adaptive-governance-arena && npm run test:gpc-optout && npm run test:override-audit && npm run test:admin-override && npm run test:progressive-wiring && npm run test:security-questionnaire && npm run test:pipeline-compass && npm run test:guide-progressive && npm run test:git-at-scale && npm run test:rule-sprawl && npm run test:hidden-entry && npm run test:solver-parity && npm run test:mcp-writeguard && npm run test:latency-budget && npm run test:gates-tree-scope && npm run test:actor-critic && npm run test:infoq-engage && npm run test:hermes-platform && npm run test:future-agi && npm run test:futureagi-prepost && npm run test:five-walls && npm run test:llm-surface-consistency && npm run test:dashboard-oversized-logs && npm run test:agent-action-inventory && npm run test:simatree-data-governance && npm run test:governance-conflict-audit && npm run test:agent-identity-plane && npm run test:mcp-identity-bootstrap && npm run test:alert-noise-ledger && npm run test:webmcp && npm run test:perf-budget && npm run test:agent-loop && npm run test:nvhbm-base-die-gates && npm run test:graphrag-schema-first-multi-hop && npm run test:ai-governance-operating-plan && npm run test:claw-harness-production && npm run test:double-blind-eval-protocol && npm run test:codex-runbook-flywheel && npm run test:explainx-trending && npm run test:graphify && npm run test:tooling-scripts && npm run test:synthetic-customer-panel && npm run test:star-history && npm run test:github-achievement-honesty && npm run test:ai-identity-checklist && npm run test:knowledge-graph-fuse && npm run test:skill-library-compact && npm run test:intent-scope-runtime && npm run test:unicode-tag-block-normalize && npm run test:issue-3702-action-not-substring && npm run test:mantis-critic-review && npm run test:break-glass-gates-propose",
|
|
589
|
+
"test:dashboard-oversized-logs": "node --test tests/dashboard-oversized-log-resilience.test.js",
|
|
467
590
|
"test:python": "python3 -m pytest tests/*.py",
|
|
468
591
|
"test:check-update": "node --test tests/check-update.test.js",
|
|
469
592
|
"test:hook-stop-verify-deploy": "node --test tests/hook-stop-verify-deploy.test.js",
|
|
@@ -524,6 +647,8 @@
|
|
|
524
647
|
"test:metaclaw": "node --test tests/metaclaw-features.test.js",
|
|
525
648
|
"test:server-lock": "node --test tests/server-stdio-lock.test.js",
|
|
526
649
|
"test:org-dashboard": "node --test tests/org-dashboard.test.js",
|
|
650
|
+
"test:agent-identity-plane": "node --test tests/agent-identity-plane.test.js",
|
|
651
|
+
"test:mcp-identity-bootstrap": "node --test tests/mcp-identity-bootstrap.test.js",
|
|
527
652
|
"test:multi-hop-recall": "node --test tests/multi-hop-recall.test.js",
|
|
528
653
|
"test:synthetic-dpo": "node --test tests/synthetic-dpo.test.js",
|
|
529
654
|
"test:thumbgate-skill": "node --test tests/thumbgate-skill.test.js",
|
|
@@ -533,6 +658,9 @@
|
|
|
533
658
|
"test:statusline-cache-aggregate": "node --test tests/statusline-cache-aggregate.test.js",
|
|
534
659
|
"test:no-internal-orchestration-leaks": "node --test tests/no-internal-orchestration-leaks.test.js",
|
|
535
660
|
"test:memory-dedup": "node --test tests/memory-dedup.test.js",
|
|
661
|
+
"test:memory-near-dupe": "node --test tests/memory-near-dupe.test.js",
|
|
662
|
+
"test:lesson-retrieval-dedupe-backfill": "node --test tests/lesson-retrieval-dedupe-backfill.test.js",
|
|
663
|
+
"memory:compact": "node scripts/compact-memory-store.js",
|
|
536
664
|
"test:lesson-db": "node --test tests/lesson-db.test.js",
|
|
537
665
|
"test:lesson-rotation": "node --test tests/lesson-rotation.test.js",
|
|
538
666
|
"test:feedback-quality": "node --test tests/feedback-quality.test.js tests/feedback-event-idempotency.test.js tests/feedback-capture-e2e.test.js",
|
|
@@ -548,6 +676,8 @@
|
|
|
548
676
|
"test:repeat-metric": "node --test tests/repeat-metric.test.js",
|
|
549
677
|
"test:noop-detect": "node --test tests/noop-detect.test.js",
|
|
550
678
|
"test:action-receipts": "node --test tests/action-receipts.test.js",
|
|
679
|
+
"test:broker-execution-receipts": "node --test tests/broker-execution-receipts.test.js",
|
|
680
|
+
"test:provider-attestation": "node --test tests/provider-attestation-conformance.test.js",
|
|
551
681
|
"test:learn-hub": "node --test tests/learn-hub.test.js",
|
|
552
682
|
"test:feedback-to-rules": "node --test tests/feedback-to-rules.test.js",
|
|
553
683
|
"test:memory-firewall": "node --test tests/memory-firewall.test.js",
|
|
@@ -568,6 +698,7 @@
|
|
|
568
698
|
"test:plan-gate": "node --test tests/plan-gate.test.js",
|
|
569
699
|
"test:pulse": "node --test tests/pulse.test.js",
|
|
570
700
|
"test:semantic-layer": "node --test tests/semantic-layer.test.js",
|
|
701
|
+
"test:simatree-data-governance": "node --test tests/simatree-data-governance.test.js",
|
|
571
702
|
"test:data-pipeline": "node --test tests/data-pipeline.test.js",
|
|
572
703
|
"test:optimize-context": "node --test tests/optimize-context.test.js tests/context-footprint.test.js",
|
|
573
704
|
"test:principle-extractor": "node --test tests/principle-extractor.test.js",
|
|
@@ -595,16 +726,16 @@
|
|
|
595
726
|
"test:loop": "node scripts/feedback-loop.js --test",
|
|
596
727
|
"test:dpo": "node scripts/export-dpo-pairs.js --test",
|
|
597
728
|
"test:kto": "node --test tests/export-kto.test.js",
|
|
598
|
-
"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",
|
|
729
|
+
"test:proof": "node --test tests/prove-adapters.test.js tests/prove-herdr-adapter.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",
|
|
599
730
|
"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",
|
|
600
731
|
"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",
|
|
601
|
-
"test:attribution": "node --test tests/feedback-attribution.test.js tests/hybrid-feedback-context.test.js tests/memory-guard-matching.test.js",
|
|
732
|
+
"test:attribution": "node --test tests/feedback-attribution.test.js tests/hybrid-feedback-context.test.js tests/memory-guard-matching.test.js tests/memory-guard-envelope-tokens.test.js",
|
|
602
733
|
"test:quality": "node --test tests/validate-feedback.test.js tests/feedback-quality-eval-python.test.js tests/eval-gate-classifier.test.js",
|
|
603
734
|
"test:intelligence": "node --test tests/intelligence.test.js",
|
|
604
735
|
"test:training-export": "node --test tests/training-export.test.js tests/databricks-export.test.js",
|
|
605
|
-
"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 tests/packed-feedback-retrieval-e2e.test.js tests/packed-provider-payment-reconciler-e2e.test.js tests/packed-revenue-remediation-e2e.test.js tests/prove-production-authenticated.test.js tests/verify-npm-githead.test.js",
|
|
606
|
-
"test:operational-integrity": "node --test tests/operational-integrity.test.js tests/sync-branch-protection.test.js",
|
|
607
|
-
"test:workflow": "node --test tests/parallel-workflow.test.js tests/parallel-workflow-public.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/workflow-intake-queue.test.js tests/revenue-pack-utils.test.js tests/apollo-acquisition.test.js tests/sales-pipeline.test.js tests/provider-payment-reconciler.test.js tests/reddit-dm-outreach-evidence.test.js tests/gtm-sales-evidence-commands.test.js tests/revenue-action-eligibility.test.js tests/revenue-evidence-remediation.test.js tests/gtm-revenue-action-eligibility.test.js tests/revenue-offer-ladder.test.js tests/revenue-offer-system.test.js tests/buyer-paths.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 && node --test tests/eval-proof-pack-pages.test.js && npm run test:proof-pack-cadence",
|
|
736
|
+
"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/codeql-workflow-lockstep.test.js tests/package-boundary.test.js tests/public-package-boundary.test.js tests/packed-feedback-retrieval-e2e.test.js tests/packed-provider-payment-reconciler-e2e.test.js tests/packed-revenue-remediation-e2e.test.js tests/ensure-production-search-corpus.test.js tests/prove-production-authenticated.test.js tests/verify-npm-githead.test.js",
|
|
737
|
+
"test:operational-integrity": "node --test tests/operational-integrity.test.js tests/sync-branch-protection.test.js tests/sync-repository-rulesets.test.js",
|
|
738
|
+
"test:workflow": "node --test tests/parallel-workflow.test.js tests/parallel-workflow-public.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/workflow-intake-queue.test.js tests/workflow-notebook.test.js tests/revenue-pack-utils.test.js tests/apollo-acquisition.test.js tests/sales-pipeline.test.js tests/provider-payment-reconciler.test.js tests/reddit-dm-outreach-evidence.test.js tests/gtm-sales-evidence-commands.test.js tests/revenue-action-eligibility.test.js tests/revenue-evidence-remediation.test.js tests/gtm-revenue-action-eligibility.test.js tests/revenue-offer-ladder.test.js tests/revenue-offer-system.test.js tests/buyer-paths.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 && node --test tests/eval-proof-pack-pages.test.js && npm run test:proof-pack-cadence",
|
|
608
739
|
"test:revenue-evidence-remediation": "node --test tests/revenue-evidence-remediation.test.js",
|
|
609
740
|
"test:grafana-revenue-evidence": "node --test tests/grafana-revenue-evidence.test.js",
|
|
610
741
|
"test:sales-pipeline": "node --test tests/sales-pipeline.test.js tests/provider-payment-reconciler.test.js tests/reddit-dm-outreach-evidence.test.js tests/gtm-sales-evidence-commands.test.js",
|
|
@@ -614,10 +745,25 @@
|
|
|
614
745
|
"test:evolution": "node --test tests/workspace-evolver.test.js",
|
|
615
746
|
"test:watcher": "node --test tests/jsonl-watcher.test.js",
|
|
616
747
|
"test:autoresearch": "node --test tests/autoresearch.test.js",
|
|
617
|
-
"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/financial-control-plane.test.js tests/financial-spend-attack-matrix.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 tests/install-spend-guard.test.js tests/spend-guard-path-precision.test.js tests/spend-guard-hook-contract.test.js tests/enforcement-provenance.test.js",
|
|
748
|
+
"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/financial-control-plane.test.js tests/financial-spend-attack-matrix.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 tests/install-spend-guard.test.js tests/spend-guard-path-precision.test.js tests/spend-guard-hook-contract.test.js tests/enforcement-provenance.test.js tests/compare-agoragentic.test.js tests/compare-dirac.test.js && 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/financial-control-plane.test.js tests/financial-spend-attack-matrix.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 tests/install-spend-guard.test.js tests/spend-guard-path-precision.test.js tests/spend-guard-hook-contract.test.js tests/enforcement-provenance.test.js tests/git-at-scale.test.js",
|
|
618
749
|
"test:session-analyzer": "node --test tests/session-analyzer.test.js",
|
|
619
750
|
"test:tessl": "node --test tests/tessl-export.test.js",
|
|
620
|
-
"test:gates": "node --test --test-concurrency=1 tests/gate-templates.test.js tests/gates-engine.test.js tests/claim-verification.test.js tests/universal-claim-evaluator.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 tests/git-pathspec-scope.test.js tests/git-global-option-bypass.test.js tests/gate-evasion-matrix.test.js",
|
|
751
|
+
"test:gates": "node --test --test-concurrency=1 tests/gate-templates.test.js tests/gates-engine.test.js tests/gates-engine-outbound-email.test.js tests/claim-verification.test.js tests/universal-claim-evaluator.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 tests/git-pathspec-scope.test.js tests/git-global-option-bypass.test.js tests/gate-evasion-matrix.test.js tests/stealth-memory-injection-gate.test.js tests/gates-tree-and-scope-isolation.test.js tests/mcp-writeguard.test.js tests/latency-budget.test.js tests/git-fast-cache.test.js tests/hash-anchored-edit.test.js tests/redteam-5-attacks.test.js tests/rendezvous-router.test.js tests/git-wal-sync.test.js tests/ppl-alert-pipeline.test.js tests/agent-retrieval-cache.test.js tests/iso42001-compliance-guard.test.js tests/agent-identity-boundary.test.js tests/miminions-adapter.test.js",
|
|
752
|
+
"test:gates-tree-scope": "node --test tests/gates-tree-and-scope-isolation.test.js",
|
|
753
|
+
"test:fast-cache": "node --test tests/git-fast-cache.test.js",
|
|
754
|
+
"test:hash-anchored-edit": "node --test tests/hash-anchored-edit.test.js",
|
|
755
|
+
"test:redteam": "node --test tests/redteam-5-attacks.test.js",
|
|
756
|
+
"test:mcp-writeguard": "node --test tests/mcp-writeguard.test.js",
|
|
757
|
+
"test:latency-budget": "node --test tests/latency-budget.test.js",
|
|
758
|
+
"test:perf-budget": "node --test tests/perf-budget.test.js",
|
|
759
|
+
"test:nvhbm-base-die-gates": "node --test tests/nvhbm-base-die-gates.test.js",
|
|
760
|
+
"test:graphrag-schema-first-multi-hop": "node --test tests/graphrag-schema-first-multi-hop.test.js",
|
|
761
|
+
"test:ai-governance-operating-plan": "node --test tests/ai-governance-operating-plan.test.js",
|
|
762
|
+
"test:codex-runbook-flywheel": "node --test tests/codex-runbook-flywheel.test.js",
|
|
763
|
+
"perf:budget": "node scripts/perf-budget-check.js",
|
|
764
|
+
"perf:budget:prod": "node scripts/perf-budget-check.js --prod",
|
|
765
|
+
"test:webmcp": "node --test tests/webmcp-governance.test.js",
|
|
766
|
+
"test:stealth-memory-injection": "node --test tests/stealth-memory-injection-gate.test.js",
|
|
621
767
|
"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",
|
|
622
768
|
"test:workers": "npm --prefix workers ci && npm --prefix workers test",
|
|
623
769
|
"test:evoskill": "node --test tests/evoskill.test.js",
|
|
@@ -642,6 +788,8 @@
|
|
|
642
788
|
"pr:manage": "node scripts/pr-manager.js",
|
|
643
789
|
"branch-protection:check": "node scripts/sync-branch-protection.js --check",
|
|
644
790
|
"branch-protection:sync": "node scripts/sync-branch-protection.js",
|
|
791
|
+
"rulesets:check": "node scripts/sync-repository-rulesets.js --check",
|
|
792
|
+
"rulesets:sync": "node scripts/sync-repository-rulesets.js",
|
|
645
793
|
"self-heal:run": "node scripts/self-heal.js",
|
|
646
794
|
"self-heal:check": "node scripts/self-healing-check.js",
|
|
647
795
|
"skill:verify": "node scripts/tessl-export.js verify",
|
|
@@ -652,6 +800,7 @@
|
|
|
652
800
|
"ops:integrity:ci": "node scripts/operational-integrity.js --ci",
|
|
653
801
|
"prove:adapters": "node --test tests/prove-adapters.test.js",
|
|
654
802
|
"prove:automation": "node --test tests/prove-automation.test.js",
|
|
803
|
+
"prove:provider-attestation": "node scripts/provider-attestation-conformance.js",
|
|
655
804
|
"prove:workflow-contract": "node --test tests/prove-workflow-contract.test.js",
|
|
656
805
|
"prove:evolution": "node scripts/prove-evolution.js",
|
|
657
806
|
"prove:autoresearch": "node scripts/prove-autoresearch.js",
|
|
@@ -667,6 +816,10 @@
|
|
|
667
816
|
"prove:tessl": "node scripts/prove-tessl.js",
|
|
668
817
|
"prove:xmemory": "node scripts/prove-xmemory.js",
|
|
669
818
|
"audit:stats": "node scripts/audit-trail.js --stats",
|
|
819
|
+
"inventory:agents": "node scripts/agent-action-inventory.js",
|
|
820
|
+
"test:agent-action-inventory": "node --test tests/agent-action-inventory.test.js",
|
|
821
|
+
"audit:conflicts": "node scripts/governance-conflict-audit.js",
|
|
822
|
+
"test:governance-conflict-audit": "node --test tests/governance-conflict-audit.test.js",
|
|
670
823
|
"profile:route": "node scripts/profile-router.js",
|
|
671
824
|
"test:platform-limits": "node --test tests/platform-limits.test.js",
|
|
672
825
|
"test:durability-step": "node --test tests/durability-step.test.js",
|
|
@@ -760,6 +913,8 @@
|
|
|
760
913
|
"test:enforcement-loop": "node --test tests/enforcement-loop-fixes.test.js",
|
|
761
914
|
"test:ai-search-visibility": "node --test tests/ai-search-visibility.test.js",
|
|
762
915
|
"test:security-scanner": "node --test tests/security-scanner.test.js",
|
|
916
|
+
"test:agent-security-central": "node --test tests/agent-security-central.test.js",
|
|
917
|
+
"security:central": "node scripts/agent-security-central.js",
|
|
763
918
|
"test:llm-client": "node --test tests/llm-client.test.js",
|
|
764
919
|
"test:model-candidates": "node --test tests/model-candidates.test.js",
|
|
765
920
|
"test:managed-lesson-agent": "node --test tests/managed-lesson-agent.test.js",
|
|
@@ -803,8 +958,19 @@
|
|
|
803
958
|
"test:interaction-model": "node --test tests/interaction-model.test.js tests/interaction-model-e2e.test.js",
|
|
804
959
|
"aws-blocks:guardrails": "node scripts/aws-blocks-guardrails.js",
|
|
805
960
|
"test:aws-blocks-guardrails": "node --test tests/aws-blocks-guardrails.test.js",
|
|
806
|
-
"test:
|
|
807
|
-
"test:
|
|
961
|
+
"test:vlt": "node --test tests/vlt-proof.test.js",
|
|
962
|
+
"test:hf-context": "node --test tests/hf-context-course.test.js",
|
|
963
|
+
"test:proof-common": "node --test tests/proof-common.test.js",
|
|
964
|
+
"test:mcp-session-handles": "node --test tests/mcp-session-handles.test.js",
|
|
965
|
+
"test:agent-egress-policy": "node --test tests/agent-egress-policy.test.js",
|
|
966
|
+
"test:allowlist-bridge-honesty": "node --test tests/allowlist-bridge-honesty.test.js",
|
|
967
|
+
"allowlist-bridge-honesty": "node scripts/allowlist-bridge-honesty.js",
|
|
968
|
+
"test:openui-catalog-compose-honesty": "node --test tests/openui-catalog-compose-honesty.test.js",
|
|
969
|
+
"openui-catalog-compose-honesty": "node scripts/openui-catalog-compose-honesty.js",
|
|
970
|
+
"test:budget-aware-gates-proof": "node --test tests/budget-aware-gates-proof.test.js",
|
|
971
|
+
"test:business-function-agents": "node --test tests/business-function-agent-team.test.js",
|
|
972
|
+
"test:high-roi": "node --test tests/high-roi.test.js tests/gurobi-optimizer.test.js tests/model-candidates.test.js tests/autonomous-workflow.test.js tests/high-roi-agent-workflows.test.js tests/business-function-agent-team.test.js tests/radware-threat-defense.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/nvidia-specdecode-al-doctor.test.js tests/package-manager-honesty-doctor.test.js tests/openui-catalog-compose-honesty.test.js tests/gist-prompt-budget.test.js tests/workload-identity-honesty.test.js tests/config-strict-parse.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/rag-embedding-identity.test.js tests/openclaw-agent-governance-kit.test.js tests/agent-operations-planner.test.js tests/aws-blocks-guardrails.test.js tests/vlt-proof.test.js tests/hf-context-course.test.js tests/proof-common.test.js tests/mcp-session-handles.test.js tests/agent-egress-policy.test.js tests/allowlist-bridge-honesty.test.js tests/budget-aware-gates-proof.test.js tests/edotenv-rl-gateway.test.js tests/rsi-safety-hillclimb.test.js tests/research-agent-harness.test.js tests/rule-sprawl.test.js tests/solver-parity.test.js tests/six-function-agent-team.test.js && npm run test:jit-harness-compose && npm run test:workspace-search-route && npm run test:intent-governed-execution",
|
|
973
|
+
"test:public-static-assets": "node --test tests/public-static-assets.test.js tests/public-checkout-intent-gate.test.js tests/public-enterprise-capability-boundary.test.js tests/founders-conversion-page.test.js",
|
|
808
974
|
"test:token-savings": "node --test tests/token-savings.test.js",
|
|
809
975
|
"test:cost-cli": "node --test tests/cost-cli.test.js tests/conversion-receipt.test.js",
|
|
810
976
|
"test:numbers-page": "node --test tests/numbers-page.test.js",
|
|
@@ -857,7 +1023,7 @@
|
|
|
857
1023
|
"test:mcp-oauth-reviewer": "node --test tests/mcp-oauth-reviewer.test.js",
|
|
858
1024
|
"test:dashboard-chat": "node --test tests/dashboard-chat.test.js",
|
|
859
1025
|
"test:gitar-integration": "node --test tests/gitar-integration.test.js",
|
|
860
|
-
"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",
|
|
1026
|
+
"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-jsonl-bound.test.js tests/dashboard-limits.test.js tests/cli-progress.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 tests/dashboard-response-cache.test.js",
|
|
861
1027
|
"test:leak-scanner": "node --test tests/leak-scanner.test.js",
|
|
862
1028
|
"test:tool-contract-validator": "node --test tests/tool-contract-validator.test.js",
|
|
863
1029
|
"test:letta-adapter": "node --test tests/letta-adapter.test.js",
|
|
@@ -891,7 +1057,13 @@
|
|
|
891
1057
|
"test:state-backup": "node --test tests/state-backup.test.js",
|
|
892
1058
|
"eval:mine": "node scripts/mine-eval-set.js",
|
|
893
1059
|
"eval:baseline": "node scripts/eval-baseline.js",
|
|
894
|
-
"
|
|
1060
|
+
"eval:holdout:freeze": "node scripts/eval-holdout.js --freeze",
|
|
1061
|
+
"eval:holdout:check": "node scripts/eval-holdout.js --check",
|
|
1062
|
+
"eval:holdout:verify": "node scripts/eval-holdout.js --verify",
|
|
1063
|
+
"panel:synthetic": "node scripts/synthetic-customer-panel.js",
|
|
1064
|
+
"test:synthetic-customer-panel": "node --test tests/synthetic-customer-panel.test.js",
|
|
1065
|
+
"workflow:notebook": "node scripts/workflow-notebook.js",
|
|
1066
|
+
"test:eval-golden": "node --test tests/gate-golden-set.test.js tests/eval-holdout.test.js",
|
|
895
1067
|
"test:eval-mining": "node --test tests/mine-eval-set.test.js tests/eval-baseline.test.js",
|
|
896
1068
|
"test:task-scope-lease": "node --test tests/task-scope-lease.test.js",
|
|
897
1069
|
"eval-scorecard:generate": "node scripts/generate-eval-scorecard.js",
|
|
@@ -902,7 +1074,7 @@
|
|
|
902
1074
|
"test:proof-pack-cadence": "node --test tests/refresh-proof-pack.test.js tests/case-study-outreach.test.js",
|
|
903
1075
|
"test:evaluations-page": "node --test tests/evaluations-page.test.js",
|
|
904
1076
|
"prove:rag": "node -r dotenv/config scripts/prove-rag-pipeline.js",
|
|
905
|
-
"test:rag-pipeline": "node --require dotenv/config --test tests/rag-document-pipeline.test.js tests/rag-structured-output.test.js tests/rag-stage-contracts.test.js tests/prove-rag-pipeline.test.js tests/ir-metrics.test.js tests/retrieval-ranking-eval.test.js tests/pragmatic-hybrid-search.test.js",
|
|
1077
|
+
"test:rag-pipeline": "node --require dotenv/config --test tests/rag-document-pipeline.test.js tests/rag-structured-output.test.js tests/rag-stage-contracts.test.js tests/prove-rag-pipeline.test.js tests/ir-metrics.test.js tests/retrieval-ranking-eval.test.js tests/pragmatic-hybrid-search.test.js tests/graphrag-retrieval.test.js",
|
|
906
1078
|
"eval:ranking": "node scripts/retrieval-ranking-eval.js",
|
|
907
1079
|
"test:ir-metrics": "node --test tests/ir-metrics.test.js tests/retrieval-ranking-eval.test.js",
|
|
908
1080
|
"test:pragmatic-hybrid": "node --test tests/pragmatic-hybrid-search.test.js",
|
|
@@ -912,6 +1084,10 @@
|
|
|
912
1084
|
"explore:reliability:ci": "node scripts/prove-reliability.js --seed=42 --iterations=10",
|
|
913
1085
|
"test:glama-mcp": "node --test tests/glama-mcp-start-contract.test.js",
|
|
914
1086
|
"prove:glama-mcp": "node scripts/prove-glama-mcp-start.js",
|
|
1087
|
+
"prove:vlt-governance": "node --test tests/vlt-proof.test.js",
|
|
1088
|
+
"prove:hf-context-course": "node --test tests/hf-context-course.test.js",
|
|
1089
|
+
"prove:vlt-governance-harness": "node scripts/prove-vlt.js",
|
|
1090
|
+
"prove:hf-context-course-harness": "node scripts/prove-hf-context.js",
|
|
915
1091
|
"test:prove-glama-mcp": "node --test tests/prove-glama-mcp-start.test.js",
|
|
916
1092
|
"test:agent-install-paths": "node --test tests/agent-install-paths.test.js",
|
|
917
1093
|
"test:mcp-gate-check": "node --test tests/mcp-gate-check-tool.test.js",
|
|
@@ -919,7 +1095,7 @@
|
|
|
919
1095
|
"test:secret-egress": "node --test tests/secret-egress-gate.test.js",
|
|
920
1096
|
"test:harness-tool-names": "node --test tests/harness-tool-names.test.js",
|
|
921
1097
|
"test:feedback-reward": "node --test tests/feedback-reward-score.test.js",
|
|
922
|
-
"test:capability-wiring": "node --test tests/capability-wiring-ratchet.test.js",
|
|
1098
|
+
"test:capability-wiring": "node --test tests/capability-wiring-ratchet.test.js && node --test tests/prove-vlt-dogfood.test.js && node --test tests/context-engineering-checklist.test.js",
|
|
923
1099
|
"test:llm-gateway": "node --test tests/llm-gateway-provider.test.js",
|
|
924
1100
|
"test:request-envelope": "node --test tests/request-envelope.test.js",
|
|
925
1101
|
"test:a-plus-evidence": "node --test tests/a-plus-evidence-scorecard.test.js",
|
|
@@ -928,7 +1104,84 @@
|
|
|
928
1104
|
"verify:claims": "node scripts/universal-claim-evaluator.js",
|
|
929
1105
|
"spend-guard:install": "node scripts/install-spend-guard.js",
|
|
930
1106
|
"spend-guard:diff": "node docs/guard/spend-guard-decision-diff.js",
|
|
931
|
-
"enforcement:provenance": "node scripts/enforcement-provenance-check.js"
|
|
1107
|
+
"enforcement:provenance": "node scripts/enforcement-provenance-check.js",
|
|
1108
|
+
"prove:vlt": "node scripts/prove-vlt-dogfood.js",
|
|
1109
|
+
"test:vlt-dogfood": "node --test tests/prove-vlt-dogfood.test.js",
|
|
1110
|
+
"test:context-engineering": "node --test tests/context-engineering-checklist.test.js",
|
|
1111
|
+
"test:workos-production-guard": "node --test tests/workos-production-guard.test.js",
|
|
1112
|
+
"test:partner-landing": "node --test tests/partner-landing.test.js",
|
|
1113
|
+
"test:memory-pyramid": "node --test tests/agent-memory-lifecycle.test.js",
|
|
1114
|
+
"prove:workos": "node scripts/prove-workos.js",
|
|
1115
|
+
"prove:herdr": "node --test tests/prove-herdr-adapter.test.js",
|
|
1116
|
+
"prove:memory-pyramid": "node scripts/prove-memory-pyramid-and-symbolic-canvas.js",
|
|
1117
|
+
"test:switchyard-router": "node --test tests/switchyard-router.test.js",
|
|
1118
|
+
"test:bulk-cloud-tier": "node --test tests/bulk-cloud-tier.test.js",
|
|
1119
|
+
"test:session-lease": "node --test tests/session-lease.test.js",
|
|
1120
|
+
"test:compare-agoragentic": "node --test tests/compare-agoragentic.test.js",
|
|
1121
|
+
"session:lease": "node scripts/session-lease.js",
|
|
1122
|
+
"session:lease:claim": "node scripts/session-lease.js claim",
|
|
1123
|
+
"session:lease:check": "node scripts/session-lease.js check",
|
|
1124
|
+
"session:lease:release": "node scripts/session-lease.js release",
|
|
1125
|
+
"test:qwen-adapter": "node --test tests/qwen-adapter.test.js",
|
|
1126
|
+
"test:qwen38-max-cost-optimizer": "node --test tests/qwen38-max-cost-optimizer.test.js",
|
|
1127
|
+
"test:openai-compatible-embed": "node --test tests/openai-compatible-embed.test.js",
|
|
1128
|
+
"archive:pre-eci": "node scripts/create-pre-eci-archive.js",
|
|
1129
|
+
"test:rag-embedding-identity": "node --test tests/rag-embedding-identity.test.js",
|
|
1130
|
+
"test:gurobi": "node --test tests/gurobi-optimizer.test.js tests/solver-no-auto-apply.test.js",
|
|
1131
|
+
"gurobi:install": "bash scripts/gurobi-systemwide-install.sh",
|
|
1132
|
+
"gurobi:evaluate": "node scripts/gurobi-optimizer.js",
|
|
1133
|
+
"test:github-marketplace-action": "node --test tests/github-marketplace-action.test.js",
|
|
1134
|
+
"test:edotenv-rl-gateway": "node --test tests/edotenv-rl-gateway.test.js",
|
|
1135
|
+
"test:rsi-safety-hillclimb": "node --test tests/rsi-safety-hillclimb.test.js",
|
|
1136
|
+
"test:research-agent-harness": "node --test tests/research-agent-harness.test.js",
|
|
1137
|
+
"test:governance-curriculum": "node --test tests/governance-difficulty-curriculum.test.js",
|
|
1138
|
+
"test:adaptive-governance-arena": "node --test tests/adaptive-governance-arena.test.js",
|
|
1139
|
+
"test:gpc-optout": "node --test tests/gpc-optout.test.js",
|
|
1140
|
+
"thumbgate:arena": "node scripts/adaptive-governance-arena.js",
|
|
1141
|
+
"test:solver-parity": "node --test tests/solver-parity.test.js",
|
|
1142
|
+
"solver:parity": "node scripts/solver-parity.js",
|
|
1143
|
+
"test:guide-progressive": "node --test tests/guide-progressive.test.js",
|
|
1144
|
+
"test:override-audit": "node --test tests/override-audit.test.js",
|
|
1145
|
+
"test:admin-override": "node --test tests/admin-override.test.js",
|
|
1146
|
+
"test:progressive-wiring": "node --test tests/progressive-wiring.test.js",
|
|
1147
|
+
"test:security-questionnaire": "node --test tests/security-questionnaire.test.js",
|
|
1148
|
+
"test:pipeline-compass": "node --test tests/pipeline-compass.test.js",
|
|
1149
|
+
"test:compare-dirac": "node --test tests/compare-dirac.test.js",
|
|
1150
|
+
"test:compare-aperture": "node --test tests/compare-aperture.test.js",
|
|
1151
|
+
"git:scale": "node scripts/git-at-scale.js",
|
|
1152
|
+
"git:scale:scorecard": "node scripts/git-at-scale.js scorecard",
|
|
1153
|
+
"git:scale:maintenance": "node scripts/git-at-scale.js maintenance",
|
|
1154
|
+
"git:scale:prune": "node scripts/git-at-scale.js prune-worktrees",
|
|
1155
|
+
"git:scale:tip": "node scripts/git-at-scale.js tip --branch main",
|
|
1156
|
+
"git:scale:tune": "node scripts/git-at-scale.js tune",
|
|
1157
|
+
"git:scale:check": "node scripts/git-at-scale.js check",
|
|
1158
|
+
"git:scale:heal": "node scripts/git-at-scale.js heal",
|
|
1159
|
+
"rule:sprawl": "node scripts/rule-sprawl.js",
|
|
1160
|
+
"test:hidden-entry": "node --test tests/hidden-entry-points.test.js",
|
|
1161
|
+
"hidden:entry": "node scripts/hidden-entry-points.js",
|
|
1162
|
+
"test:six-function": "node --test tests/six-function-agent-team.test.js",
|
|
1163
|
+
"test:double-blind-eval-protocol": "node --test tests/double-blind-eval-protocol.test.js",
|
|
1164
|
+
"codex:runbook:dry-run": "node scripts/codex-runbook-flywheel.js --dry-run",
|
|
1165
|
+
"codex:runbook:solve": "node scripts/codex-runbook-flywheel.js --solve",
|
|
1166
|
+
"test:claw-harness-production": "node --test tests/claw-harness-production.test.js",
|
|
1167
|
+
"test:agent-loop": "node --test tests/agent-loop-health.test.js",
|
|
1168
|
+
"test:radware-threat-defense": "node --test tests/radware-threat-defense.test.js",
|
|
1169
|
+
"explainx:trending": "node scripts/explainx-trending-honest.js",
|
|
1170
|
+
"test:explainx-trending": "node --test tests/explainx-trending-honest.test.js",
|
|
1171
|
+
"graphify:setup": "node scripts/graphify-setup.js",
|
|
1172
|
+
"graphify:ready": "node scripts/graphify-readiness.js",
|
|
1173
|
+
"graphify:stale": "node scripts/graphify-staleness-check.js",
|
|
1174
|
+
"test:graphify": "node --test tests/graphify-readiness.test.js",
|
|
1175
|
+
"test:jit-harness-compose": "node --test tests/jit-harness-compose.test.js",
|
|
1176
|
+
"test:workspace-search-route": "node --test tests/workspace-search-route.test.js",
|
|
1177
|
+
"test:intent-governed-execution": "node --test tests/intent-governed-execution.test.js",
|
|
1178
|
+
"memory:vs-rag": "node scripts/memory-vs-rag-route.js",
|
|
1179
|
+
"gist:prompt-budget": "node scripts/gist-prompt-budget.js",
|
|
1180
|
+
"test:gist-prompt-budget": "node --test tests/gist-prompt-budget.test.js",
|
|
1181
|
+
"workload-identity:honesty": "node scripts/workload-identity-honesty.js",
|
|
1182
|
+
"test:workload-identity-honesty": "node --test tests/workload-identity-honesty.test.js",
|
|
1183
|
+
"config:strict-parse": "node scripts/config-strict-parse.js",
|
|
1184
|
+
"test:config-strict-parse": "node --test tests/config-strict-parse.test.js"
|
|
932
1185
|
},
|
|
933
1186
|
"keywords": [
|
|
934
1187
|
"mcp",
|
|
@@ -983,13 +1236,13 @@
|
|
|
983
1236
|
"node": ">=18.18.0"
|
|
984
1237
|
},
|
|
985
1238
|
"dependencies": {
|
|
986
|
-
"@anthropic-ai/sdk": "0.
|
|
987
|
-
"@google/genai": "2.
|
|
988
|
-
"@lancedb/lancedb": "^0.
|
|
1239
|
+
"@anthropic-ai/sdk": "^0.122.0",
|
|
1240
|
+
"@google/genai": "2.19.0",
|
|
1241
|
+
"@lancedb/lancedb": "^0.38.0",
|
|
989
1242
|
"apache-arrow": "^18.1.0",
|
|
990
1243
|
"better-sqlite3": "^12.9.0",
|
|
991
1244
|
"dotenv": "^17.4.2",
|
|
992
|
-
"js-yaml": "4.
|
|
1245
|
+
"js-yaml": "5.4.1",
|
|
993
1246
|
"playwright-core": "^1.59.1",
|
|
994
1247
|
"protobufjs": "^8.7.1",
|
|
995
1248
|
"stripe": "^22.2.0"
|
|
@@ -1006,14 +1259,15 @@
|
|
|
1006
1259
|
"express@4.22.1": {
|
|
1007
1260
|
"path-to-regexp": "0.1.13"
|
|
1008
1261
|
},
|
|
1009
|
-
"js-yaml": "4.
|
|
1262
|
+
"js-yaml": "5.4.1",
|
|
1263
|
+
"sharp": "0.35.4",
|
|
1010
1264
|
"undici": "8.10.0"
|
|
1011
1265
|
},
|
|
1012
1266
|
"mcpName": "io.github.IgorGanapolsky/thumbgate",
|
|
1013
1267
|
"devDependencies": {
|
|
1014
|
-
"@changesets/changelog-github": "^0.
|
|
1015
|
-
"@changesets/cli": "^
|
|
1016
|
-
"@playwright/test": "^1.
|
|
1268
|
+
"@changesets/changelog-github": "^1.0.0",
|
|
1269
|
+
"@changesets/cli": "^3.0.0",
|
|
1270
|
+
"@playwright/test": "^1.62.1",
|
|
1017
1271
|
"c8": "^12.0.0",
|
|
1018
1272
|
"undici": "8.10.0"
|
|
1019
1273
|
},
|