thumbgate 1.35.0 → 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 +336 -3
- package/bin/futureagi-bridge +9 -0
- package/config/gate-templates.json +581 -4
- package/config/gates/actor-critic-audit.json +34 -0
- package/config/gates/default.json +9 -3
- 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 +6 -0
- package/config/model-candidates.json +312 -29
- 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 +390 -148
- 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/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-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.js +251 -32
- 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/gates-engine.js +810 -63
- 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 +724 -153
- 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,71 +144,74 @@
|
|
|
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",
|
|
66
168
|
"scripts/cli-test-block.js",
|
|
67
|
-
"scripts/cli-progress.js",
|
|
68
169
|
"scripts/cloudflare-dynamic-sandbox.js",
|
|
69
170
|
"scripts/code-graph-guardrails.js",
|
|
70
171
|
"scripts/code-mode-mcp-plan.js",
|
|
71
172
|
"scripts/code-reasoning.js",
|
|
72
173
|
"scripts/codegraph-context.js",
|
|
174
|
+
"scripts/codex-runbook-flywheel.js",
|
|
73
175
|
"scripts/codex-self-heal.js",
|
|
74
|
-
"scripts/
|
|
176
|
+
"scripts/colbert-style-maxsim.js",
|
|
75
177
|
"scripts/commercial-offer.js",
|
|
76
|
-
"scripts/revenue-offer-system.js",
|
|
77
178
|
"scripts/context-engine.js",
|
|
78
179
|
"scripts/context-footprint.js",
|
|
79
180
|
"scripts/context-manager.js",
|
|
80
181
|
"scripts/contextfs.js",
|
|
81
182
|
"scripts/conversation-context.js",
|
|
183
|
+
"scripts/cross-encoder-reranker.js",
|
|
82
184
|
"scripts/dashboard-chat.js",
|
|
185
|
+
"scripts/dashboard-limits.js",
|
|
83
186
|
"scripts/dashboard-render-spec.js",
|
|
84
187
|
"scripts/dashboard.js",
|
|
85
|
-
"scripts/dashboard-limits.js",
|
|
86
188
|
"scripts/decision-journal.js",
|
|
87
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",
|
|
88
193
|
"scripts/docker-sandbox-planner.js",
|
|
89
194
|
"scripts/document-intake.js",
|
|
90
|
-
"scripts/rag-document-pipeline.js",
|
|
91
|
-
"scripts/ragas-style-metrics.js",
|
|
92
|
-
"scripts/skill-packs.js",
|
|
93
|
-
"scripts/lesson-embedding-maintenance.js",
|
|
94
|
-
"scripts/retrieval-hybrid-ablation.js",
|
|
95
195
|
"scripts/document-workflow-governance.js",
|
|
196
|
+
"scripts/double-blind-eval-protocol.js",
|
|
96
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",
|
|
97
203
|
"scripts/evolution-state.js",
|
|
98
204
|
"scripts/experiment-tracker.js",
|
|
99
205
|
"scripts/explore-subcommands.js",
|
|
100
206
|
"scripts/explore.js",
|
|
101
207
|
"scripts/export-databricks-bundle.js",
|
|
102
|
-
"scripts/entitlement.js",
|
|
103
|
-
"scripts/eval-quality-suite.js",
|
|
104
|
-
"config/entitlement-public-keys.json",
|
|
105
|
-
"scripts/external-customer-audit.js",
|
|
106
|
-
"scripts/stripe-revenue-catalog.js",
|
|
107
|
-
"scripts/stripe-revenue-catalog-audit.js",
|
|
108
208
|
"scripts/export-dpo-pairs.js",
|
|
109
209
|
"scripts/export-hf-dataset.js",
|
|
210
|
+
"scripts/external-customer-audit.js",
|
|
110
211
|
"scripts/failure-diagnostics.js",
|
|
111
212
|
"scripts/feedback-aggregate.js",
|
|
112
|
-
"scripts/feedback-history-distiller.js",
|
|
113
213
|
"scripts/feedback-attribution.js",
|
|
214
|
+
"scripts/feedback-history-distiller.js",
|
|
114
215
|
"scripts/feedback-loop.js",
|
|
115
216
|
"scripts/feedback-paths.js",
|
|
116
217
|
"scripts/feedback-quality.js",
|
|
@@ -120,36 +221,48 @@
|
|
|
120
221
|
"scripts/feedback-to-rules.js",
|
|
121
222
|
"scripts/feedback_quality_eval.py",
|
|
122
223
|
"scripts/file-ledger-lock.js",
|
|
123
|
-
"scripts/financial-control-plane.js",
|
|
124
224
|
"scripts/filesystem-search.js",
|
|
225
|
+
"scripts/find-dormant-requires.js",
|
|
226
|
+
"scripts/financial-control-plane.js",
|
|
125
227
|
"scripts/fs-utils.js",
|
|
126
|
-
"scripts/grafana-revenue-evidence.js",
|
|
127
228
|
"scripts/gate-stats.js",
|
|
128
229
|
"scripts/gate-templates.js",
|
|
129
|
-
"scripts/harness-tool-names.js",
|
|
130
230
|
"scripts/gates-engine.js",
|
|
131
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",
|
|
132
239
|
"scripts/growth-campaigns.js",
|
|
240
|
+
"scripts/gurobi-optimizer.js",
|
|
241
|
+
"scripts/gurobi_optimizer.py",
|
|
133
242
|
"scripts/harness-selector.js",
|
|
243
|
+
"scripts/harness-tool-names.js",
|
|
134
244
|
"scripts/hf-papers.js",
|
|
245
|
+
"scripts/hidden-entry-points.js",
|
|
135
246
|
"scripts/hook-runtime.js",
|
|
136
247
|
"scripts/hook-stop-anti-claim.js",
|
|
137
248
|
"scripts/hook-thumbgate-cache-updater.js",
|
|
138
249
|
"scripts/hosted-config.js",
|
|
139
250
|
"scripts/human-escalation.js",
|
|
140
251
|
"scripts/hybrid-feedback-context.js",
|
|
141
|
-
"scripts/imperative-detector.js",
|
|
142
252
|
"scripts/hybrid-supervisor-agent.js",
|
|
253
|
+
"scripts/imperative-detector.js",
|
|
143
254
|
"scripts/inference-cache-policy.js",
|
|
144
|
-
"scripts/install-shim.js",
|
|
145
255
|
"scripts/install-mcp.js",
|
|
256
|
+
"scripts/install-shim.js",
|
|
146
257
|
"scripts/internal-agent-bootstrap.js",
|
|
147
258
|
"scripts/intervention-policy.js",
|
|
148
259
|
"scripts/jsonl-watcher.js",
|
|
260
|
+
"scripts/jsonl-window.js",
|
|
149
261
|
"scripts/judge-reward-function.js",
|
|
150
262
|
"scripts/lesson-canonical.js",
|
|
151
263
|
"scripts/lesson-db.js",
|
|
152
264
|
"scripts/lesson-embedding-index.js",
|
|
265
|
+
"scripts/lesson-embedding-maintenance.js",
|
|
153
266
|
"scripts/lesson-inference.js",
|
|
154
267
|
"scripts/lesson-reranker.js",
|
|
155
268
|
"scripts/lesson-retrieval.js",
|
|
@@ -163,33 +276,39 @@
|
|
|
163
276
|
"scripts/long-running-agent-context-guardrails.js",
|
|
164
277
|
"scripts/mailer/index.js",
|
|
165
278
|
"scripts/mailer/resend-mailer.js",
|
|
279
|
+
"scripts/matryoshka-embedding.js",
|
|
166
280
|
"scripts/mcp-config.js",
|
|
167
281
|
"scripts/mcp-oauth.js",
|
|
168
282
|
"scripts/mcp-policy.js",
|
|
283
|
+
"scripts/mcp-session-handles.js",
|
|
169
284
|
"scripts/mcp-transport-strategy.js",
|
|
285
|
+
"scripts/mcp-wiring-doctor.js",
|
|
170
286
|
"scripts/memory-firewall.js",
|
|
171
287
|
"scripts/memory-scope-readiness.js",
|
|
288
|
+
"scripts/memory-vs-rag-route.js",
|
|
172
289
|
"scripts/meta-agent-loop.js",
|
|
173
290
|
"scripts/model-access-eligibility.js",
|
|
291
|
+
"scripts/model-eval.js",
|
|
174
292
|
"scripts/model-migration-readiness.js",
|
|
175
293
|
"scripts/model-tier-router.js",
|
|
176
294
|
"scripts/multimodal-retrieval-plan.js",
|
|
177
295
|
"scripts/native-messaging-audit.js",
|
|
178
296
|
"scripts/natural-language-harness.js",
|
|
179
297
|
"scripts/noop-detect.js",
|
|
298
|
+
"scripts/observability-env.js",
|
|
299
|
+
"scripts/observability-setup.js",
|
|
180
300
|
"scripts/obsidian-export.js",
|
|
181
301
|
"scripts/operational-integrity.js",
|
|
182
|
-
"scripts/observability-setup.js",
|
|
183
|
-
"scripts/observability-env.js",
|
|
184
|
-
"scripts/jsonl-window.js",
|
|
185
302
|
"scripts/oss-pr-opportunity-scout.js",
|
|
186
303
|
"scripts/otel-declarative-config.js",
|
|
304
|
+
"scripts/override-audit.js",
|
|
187
305
|
"scripts/parallel-workflow-orchestrator.js",
|
|
188
306
|
"scripts/perplexity-client.js",
|
|
189
307
|
"scripts/plan-gate.js",
|
|
190
308
|
"scripts/plausible-domain-config.js",
|
|
191
309
|
"scripts/plausible-server-events.js",
|
|
192
310
|
"scripts/pr-manager.js",
|
|
311
|
+
"scripts/pragmatic-hybrid-search.js",
|
|
193
312
|
"scripts/private-core-boundary.js",
|
|
194
313
|
"scripts/pro-local-dashboard.js",
|
|
195
314
|
"scripts/proactive-agent-eval-guardrails.js",
|
|
@@ -200,55 +319,73 @@
|
|
|
200
319
|
"scripts/prompt-guard.js",
|
|
201
320
|
"scripts/prompt-programs.js",
|
|
202
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",
|
|
203
327
|
"scripts/provider-live-evidence.js",
|
|
204
328
|
"scripts/provider-payment-reconciler.js",
|
|
329
|
+
"scripts/provider-receipt-contract.js",
|
|
205
330
|
"scripts/provider-revenue-evidence.js",
|
|
206
|
-
"scripts/provider-action-normalizer.js",
|
|
207
331
|
"scripts/proxy-pointer-rag-guardrails.js",
|
|
208
|
-
"scripts/qa-scenario-planner.js",
|
|
209
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",
|
|
210
337
|
"scripts/rag-precision-guardrails.js",
|
|
338
|
+
"scripts/rag-structured-output.js",
|
|
339
|
+
"scripts/ragas-style-metrics.js",
|
|
211
340
|
"scripts/rate-limiter.js",
|
|
212
341
|
"scripts/reasoning-efficiency-guardrails.js",
|
|
342
|
+
"scripts/refresh-proof-pack.js",
|
|
343
|
+
"scripts/remote-feedback-capture.js",
|
|
213
344
|
"scripts/repeat-metric.js",
|
|
345
|
+
"scripts/request-envelope.js",
|
|
214
346
|
"scripts/rerank-pipeline.js",
|
|
215
347
|
"scripts/rerank-quality-eval.js",
|
|
216
|
-
"scripts/
|
|
348
|
+
"scripts/research-agent-harness.js",
|
|
349
|
+
"scripts/retrieval-hybrid-ablation.js",
|
|
217
350
|
"scripts/retrieval-quality-tier.js",
|
|
218
|
-
"scripts/tier-budget-guard.js",
|
|
219
351
|
"scripts/revenue-action-eligibility.js",
|
|
220
352
|
"scripts/revenue-evidence-remediation.js",
|
|
353
|
+
"scripts/revenue-offer-system.js",
|
|
221
354
|
"scripts/reward-hacking-guardrails.js",
|
|
222
|
-
"scripts/model-eval.js",
|
|
223
355
|
"scripts/risk-scorer.js",
|
|
224
356
|
"scripts/rlaif-self-audit.js",
|
|
357
|
+
"scripts/rsi-safety-hillclimb.js",
|
|
225
358
|
"scripts/rubric-engine.js",
|
|
359
|
+
"scripts/rule-sprawl.js",
|
|
226
360
|
"scripts/rule-validator.js",
|
|
227
361
|
"scripts/sales-pipeline.js",
|
|
228
362
|
"scripts/schedule-manager.js",
|
|
229
|
-
"scripts/secret-scanner.js",
|
|
230
363
|
"scripts/secret-fixture-tokens.js",
|
|
231
364
|
"scripts/secret-redaction.js",
|
|
232
|
-
"scripts/
|
|
365
|
+
"scripts/secret-scanner.js",
|
|
233
366
|
"scripts/security-scanner.js",
|
|
234
367
|
"scripts/self-distill-agent.js",
|
|
235
|
-
"scripts/self-heal.js",
|
|
236
368
|
"scripts/self-harness-optimizer.js",
|
|
369
|
+
"scripts/self-heal.js",
|
|
237
370
|
"scripts/self-healing-check.js",
|
|
371
|
+
"scripts/self-protection.js",
|
|
238
372
|
"scripts/semantic-dedup.js",
|
|
239
373
|
"scripts/semantic-layer.js",
|
|
240
374
|
"scripts/seo-gsd.js",
|
|
375
|
+
"scripts/session-lease.js",
|
|
241
376
|
"scripts/settings-hierarchy.js",
|
|
242
377
|
"scripts/silent-failure-cluster.js",
|
|
378
|
+
"scripts/simatree-data-governance.js",
|
|
243
379
|
"scripts/single-use-credential-gate.js",
|
|
244
380
|
"scripts/skill-generator.js",
|
|
381
|
+
"scripts/skill-packs.js",
|
|
245
382
|
"scripts/skill-rag-router.js",
|
|
246
|
-
"scripts/slow-loop.js",
|
|
247
383
|
"scripts/slo-alert-engine.js",
|
|
384
|
+
"scripts/slow-loop.js",
|
|
385
|
+
"scripts/solver-parity.js",
|
|
248
386
|
"scripts/spec-gate.js",
|
|
249
|
-
"scripts/stripe-credentials.js",
|
|
250
|
-
"scripts/statusline-cache-read.js",
|
|
251
387
|
"scripts/statusline-cache-path.js",
|
|
388
|
+
"scripts/statusline-cache-read.js",
|
|
252
389
|
"scripts/statusline-context.js",
|
|
253
390
|
"scripts/statusline-lesson.js",
|
|
254
391
|
"scripts/statusline-links.js",
|
|
@@ -256,23 +393,31 @@
|
|
|
256
393
|
"scripts/statusline-meta.js",
|
|
257
394
|
"scripts/statusline-tower.js",
|
|
258
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",
|
|
259
400
|
"scripts/structured-prompt-driven.js",
|
|
401
|
+
"scripts/switchyard-router.js",
|
|
260
402
|
"scripts/sync-telemetry-from-prod.js",
|
|
261
403
|
"scripts/synthetic-data-provenance.js",
|
|
262
404
|
"scripts/task-context-result.js",
|
|
405
|
+
"scripts/task-outcomes.js",
|
|
263
406
|
"scripts/telemetry-analytics.js",
|
|
407
|
+
"scripts/temporal-decay-weighting.js",
|
|
408
|
+
"scripts/test-all.js",
|
|
264
409
|
"scripts/thompson-sampling.js",
|
|
265
410
|
"scripts/thumbgate-bench.js",
|
|
266
411
|
"scripts/thumbgate-search.js",
|
|
267
|
-
"scripts/
|
|
412
|
+
"scripts/tier-budget-guard.js",
|
|
268
413
|
"scripts/token-savings.js",
|
|
269
414
|
"scripts/token-tco.js",
|
|
270
415
|
"scripts/tool-contract-validator.js",
|
|
271
|
-
"scripts/tool-registry.js",
|
|
272
|
-
"scripts/task-outcomes.js",
|
|
273
416
|
"scripts/tool-kpi-tracker.js",
|
|
274
|
-
"scripts/
|
|
417
|
+
"scripts/tool-registry.js",
|
|
418
|
+
"scripts/trajectory-scorer.js",
|
|
275
419
|
"scripts/universal-claim-evaluator.js",
|
|
420
|
+
"scripts/upstream-contribution-engine.js",
|
|
276
421
|
"scripts/user-profile.js",
|
|
277
422
|
"scripts/validate-workflow-contract.js",
|
|
278
423
|
"scripts/vector-store.js",
|
|
@@ -280,89 +425,27 @@
|
|
|
280
425
|
"scripts/verifier-scoring.js",
|
|
281
426
|
"scripts/verify-marketing-pages-deployed.js",
|
|
282
427
|
"scripts/visitor-journey.js",
|
|
428
|
+
"scripts/workflow-intake-queue.js",
|
|
429
|
+
"scripts/workflow-notebook.js",
|
|
283
430
|
"scripts/workflow-runs.js",
|
|
284
431
|
"scripts/workflow-sentinel.js",
|
|
285
|
-
"scripts/
|
|
432
|
+
"scripts/workos-production-guard.js",
|
|
286
433
|
"scripts/workspace-agent-routines.js",
|
|
287
434
|
"scripts/workspace-evolver.js",
|
|
288
435
|
"scripts/xmemory-lite.js",
|
|
289
|
-
".
|
|
290
|
-
"hooks/hooks.json",
|
|
291
|
-
".claude/commands/",
|
|
292
|
-
"commands/",
|
|
293
|
-
".well-known/",
|
|
294
|
-
"LICENSE",
|
|
295
|
-
"README.md",
|
|
296
|
-
"docs/integrations/grafana/README.md",
|
|
297
|
-
"docs/integrations/grafana/thumbgate-revenue-evidence-dashboard.json",
|
|
298
|
-
"adapters/amp/skills/thumbgate-feedback/SKILL.md",
|
|
299
|
-
"adapters/claude/.mcp.json",
|
|
300
|
-
"adapters/codex/config.toml",
|
|
301
|
-
"adapters/forge/forge.yaml",
|
|
302
|
-
"adapters/gemini/function-declarations.json",
|
|
303
|
-
"adapters/letta/README.md",
|
|
304
|
-
"adapters/letta/thumbgate-letta-adapter.js",
|
|
305
|
-
"adapters/gcp/dfcx-webhook-gate.js",
|
|
306
|
-
"adapters/policy-engine/README.md",
|
|
307
|
-
"adapters/policy-engine/ethicore-guardian-client.js",
|
|
308
|
-
"adapters/policy-engine/thumbgate-policy-engine-adapter.js",
|
|
309
|
-
"adapters/mcp/server-stdio.js",
|
|
310
|
-
"adapters/opencode/opencode.json",
|
|
311
|
-
"bench/programbench-smoke.json",
|
|
312
|
-
"bench/prompt-eval-suite.json",
|
|
313
|
-
"bench/observability-eval-suite.json",
|
|
314
|
-
"bench/thumbgate-bench.json",
|
|
315
|
-
"bin/cli.js",
|
|
316
|
-
"bin/dashboard-cli.js",
|
|
317
|
-
"bin/postinstall.js",
|
|
318
|
-
"config/",
|
|
319
|
-
"openapi/",
|
|
320
|
-
"public/about.html",
|
|
321
|
-
"public/agent-manager.html",
|
|
322
|
-
"public/blog.html",
|
|
323
|
-
"public/blog/",
|
|
324
|
-
"public/codex-enterprise.html",
|
|
325
|
-
"public/agents-cost-savings.html",
|
|
326
|
-
"public/ai-malpractice-prevention.html",
|
|
327
|
-
"public/chatgpt-app.html",
|
|
328
|
-
"public/codex-plugin.html",
|
|
329
|
-
"public/compare.html",
|
|
330
|
-
"public/dashboard.html",
|
|
331
|
-
"public/diagnostic.html",
|
|
332
|
-
"public/federal.html",
|
|
333
|
-
"public/guide.html",
|
|
334
|
-
"public/install.html",
|
|
335
|
-
"public/index.html",
|
|
336
|
-
"public/learn.html",
|
|
337
|
-
"public/lessons.html",
|
|
338
|
-
"public/numbers.html",
|
|
339
|
-
"public/assets/diagrams/",
|
|
340
|
-
"public/whitepaper.html",
|
|
341
|
-
"public/evaluations.html",
|
|
342
|
-
"public/eval-scorecard.html",
|
|
343
|
-
"public/eval-scorecard.json",
|
|
344
|
-
"public/case-studies.html",
|
|
345
|
-
"public/architecture.html",
|
|
346
|
-
"public/partner-intake.html",
|
|
347
|
-
"public/pricing.html",
|
|
348
|
-
"public/pro.html",
|
|
349
|
-
"public/assets/brand/",
|
|
350
|
-
"!public/assets/brand/github-social-preview.png",
|
|
351
|
-
"public/assets/claude-thumbgate-statusbar.svg",
|
|
352
|
-
"public/assets/codex-thumbgate-statusbar-test.svg",
|
|
353
|
-
"public/assets/legal-intake-control-flow.svg",
|
|
354
|
-
"public/brand/",
|
|
355
|
-
"public/js/",
|
|
436
|
+
"server.json",
|
|
356
437
|
"skills/thumbgate/SKILL.md",
|
|
438
|
+
"smithery.yaml",
|
|
357
439
|
"src/",
|
|
358
|
-
"scripts/
|
|
359
|
-
"
|
|
360
|
-
"scripts/
|
|
361
|
-
"
|
|
362
|
-
"scripts/
|
|
363
|
-
"
|
|
364
|
-
"
|
|
365
|
-
"
|
|
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/"
|
|
366
449
|
],
|
|
367
450
|
"scripts": {
|
|
368
451
|
"canary:snapshot": "node scripts/gate-decision-canary.js --snapshot",
|
|
@@ -465,7 +548,45 @@
|
|
|
465
548
|
"social:prospect:bluesky": "node scripts/social-bluesky-prospecting.js",
|
|
466
549
|
"social:prospect:bluesky:dry": "node scripts/social-bluesky-prospecting.js --dry-run",
|
|
467
550
|
"social:reply-publish:bluesky:dry": "node scripts/social-reply-monitor-bluesky.js --publish-approved --dry-run",
|
|
468
|
-
"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: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: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",
|
|
469
590
|
"test:python": "python3 -m pytest tests/*.py",
|
|
470
591
|
"test:check-update": "node --test tests/check-update.test.js",
|
|
471
592
|
"test:hook-stop-verify-deploy": "node --test tests/hook-stop-verify-deploy.test.js",
|
|
@@ -526,6 +647,8 @@
|
|
|
526
647
|
"test:metaclaw": "node --test tests/metaclaw-features.test.js",
|
|
527
648
|
"test:server-lock": "node --test tests/server-stdio-lock.test.js",
|
|
528
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",
|
|
529
652
|
"test:multi-hop-recall": "node --test tests/multi-hop-recall.test.js",
|
|
530
653
|
"test:synthetic-dpo": "node --test tests/synthetic-dpo.test.js",
|
|
531
654
|
"test:thumbgate-skill": "node --test tests/thumbgate-skill.test.js",
|
|
@@ -535,6 +658,9 @@
|
|
|
535
658
|
"test:statusline-cache-aggregate": "node --test tests/statusline-cache-aggregate.test.js",
|
|
536
659
|
"test:no-internal-orchestration-leaks": "node --test tests/no-internal-orchestration-leaks.test.js",
|
|
537
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",
|
|
538
664
|
"test:lesson-db": "node --test tests/lesson-db.test.js",
|
|
539
665
|
"test:lesson-rotation": "node --test tests/lesson-rotation.test.js",
|
|
540
666
|
"test:feedback-quality": "node --test tests/feedback-quality.test.js tests/feedback-event-idempotency.test.js tests/feedback-capture-e2e.test.js",
|
|
@@ -550,6 +676,8 @@
|
|
|
550
676
|
"test:repeat-metric": "node --test tests/repeat-metric.test.js",
|
|
551
677
|
"test:noop-detect": "node --test tests/noop-detect.test.js",
|
|
552
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",
|
|
553
681
|
"test:learn-hub": "node --test tests/learn-hub.test.js",
|
|
554
682
|
"test:feedback-to-rules": "node --test tests/feedback-to-rules.test.js",
|
|
555
683
|
"test:memory-firewall": "node --test tests/memory-firewall.test.js",
|
|
@@ -570,6 +698,7 @@
|
|
|
570
698
|
"test:plan-gate": "node --test tests/plan-gate.test.js",
|
|
571
699
|
"test:pulse": "node --test tests/pulse.test.js",
|
|
572
700
|
"test:semantic-layer": "node --test tests/semantic-layer.test.js",
|
|
701
|
+
"test:simatree-data-governance": "node --test tests/simatree-data-governance.test.js",
|
|
573
702
|
"test:data-pipeline": "node --test tests/data-pipeline.test.js",
|
|
574
703
|
"test:optimize-context": "node --test tests/optimize-context.test.js tests/context-footprint.test.js",
|
|
575
704
|
"test:principle-extractor": "node --test tests/principle-extractor.test.js",
|
|
@@ -597,16 +726,16 @@
|
|
|
597
726
|
"test:loop": "node scripts/feedback-loop.js --test",
|
|
598
727
|
"test:dpo": "node scripts/export-dpo-pairs.js --test",
|
|
599
728
|
"test:kto": "node --test tests/export-kto.test.js",
|
|
600
|
-
"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",
|
|
601
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",
|
|
602
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",
|
|
603
|
-
"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",
|
|
604
733
|
"test:quality": "node --test tests/validate-feedback.test.js tests/feedback-quality-eval-python.test.js tests/eval-gate-classifier.test.js",
|
|
605
734
|
"test:intelligence": "node --test tests/intelligence.test.js",
|
|
606
735
|
"test:training-export": "node --test tests/training-export.test.js tests/databricks-export.test.js",
|
|
607
|
-
"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",
|
|
608
|
-
"test:operational-integrity": "node --test tests/operational-integrity.test.js tests/sync-branch-protection.test.js",
|
|
609
|
-
"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",
|
|
610
739
|
"test:revenue-evidence-remediation": "node --test tests/revenue-evidence-remediation.test.js",
|
|
611
740
|
"test:grafana-revenue-evidence": "node --test tests/grafana-revenue-evidence.test.js",
|
|
612
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",
|
|
@@ -616,10 +745,25 @@
|
|
|
616
745
|
"test:evolution": "node --test tests/workspace-evolver.test.js",
|
|
617
746
|
"test:watcher": "node --test tests/jsonl-watcher.test.js",
|
|
618
747
|
"test:autoresearch": "node --test tests/autoresearch.test.js",
|
|
619
|
-
"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",
|
|
620
749
|
"test:session-analyzer": "node --test tests/session-analyzer.test.js",
|
|
621
750
|
"test:tessl": "node --test tests/tessl-export.test.js",
|
|
622
|
-
"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",
|
|
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",
|
|
623
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",
|
|
624
768
|
"test:workers": "npm --prefix workers ci && npm --prefix workers test",
|
|
625
769
|
"test:evoskill": "node --test tests/evoskill.test.js",
|
|
@@ -644,6 +788,8 @@
|
|
|
644
788
|
"pr:manage": "node scripts/pr-manager.js",
|
|
645
789
|
"branch-protection:check": "node scripts/sync-branch-protection.js --check",
|
|
646
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",
|
|
647
793
|
"self-heal:run": "node scripts/self-heal.js",
|
|
648
794
|
"self-heal:check": "node scripts/self-healing-check.js",
|
|
649
795
|
"skill:verify": "node scripts/tessl-export.js verify",
|
|
@@ -654,6 +800,7 @@
|
|
|
654
800
|
"ops:integrity:ci": "node scripts/operational-integrity.js --ci",
|
|
655
801
|
"prove:adapters": "node --test tests/prove-adapters.test.js",
|
|
656
802
|
"prove:automation": "node --test tests/prove-automation.test.js",
|
|
803
|
+
"prove:provider-attestation": "node scripts/provider-attestation-conformance.js",
|
|
657
804
|
"prove:workflow-contract": "node --test tests/prove-workflow-contract.test.js",
|
|
658
805
|
"prove:evolution": "node scripts/prove-evolution.js",
|
|
659
806
|
"prove:autoresearch": "node scripts/prove-autoresearch.js",
|
|
@@ -669,6 +816,10 @@
|
|
|
669
816
|
"prove:tessl": "node scripts/prove-tessl.js",
|
|
670
817
|
"prove:xmemory": "node scripts/prove-xmemory.js",
|
|
671
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",
|
|
672
823
|
"profile:route": "node scripts/profile-router.js",
|
|
673
824
|
"test:platform-limits": "node --test tests/platform-limits.test.js",
|
|
674
825
|
"test:durability-step": "node --test tests/durability-step.test.js",
|
|
@@ -762,6 +913,8 @@
|
|
|
762
913
|
"test:enforcement-loop": "node --test tests/enforcement-loop-fixes.test.js",
|
|
763
914
|
"test:ai-search-visibility": "node --test tests/ai-search-visibility.test.js",
|
|
764
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",
|
|
765
918
|
"test:llm-client": "node --test tests/llm-client.test.js",
|
|
766
919
|
"test:model-candidates": "node --test tests/model-candidates.test.js",
|
|
767
920
|
"test:managed-lesson-agent": "node --test tests/managed-lesson-agent.test.js",
|
|
@@ -808,8 +961,16 @@
|
|
|
808
961
|
"test:vlt": "node --test tests/vlt-proof.test.js",
|
|
809
962
|
"test:hf-context": "node --test tests/hf-context-course.test.js",
|
|
810
963
|
"test:proof-common": "node --test tests/proof-common.test.js",
|
|
811
|
-
"test:
|
|
812
|
-
"test:
|
|
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",
|
|
813
974
|
"test:token-savings": "node --test tests/token-savings.test.js",
|
|
814
975
|
"test:cost-cli": "node --test tests/cost-cli.test.js tests/conversion-receipt.test.js",
|
|
815
976
|
"test:numbers-page": "node --test tests/numbers-page.test.js",
|
|
@@ -862,7 +1023,7 @@
|
|
|
862
1023
|
"test:mcp-oauth-reviewer": "node --test tests/mcp-oauth-reviewer.test.js",
|
|
863
1024
|
"test:dashboard-chat": "node --test tests/dashboard-chat.test.js",
|
|
864
1025
|
"test:gitar-integration": "node --test tests/gitar-integration.test.js",
|
|
865
|
-
"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",
|
|
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",
|
|
866
1027
|
"test:leak-scanner": "node --test tests/leak-scanner.test.js",
|
|
867
1028
|
"test:tool-contract-validator": "node --test tests/tool-contract-validator.test.js",
|
|
868
1029
|
"test:letta-adapter": "node --test tests/letta-adapter.test.js",
|
|
@@ -896,7 +1057,13 @@
|
|
|
896
1057
|
"test:state-backup": "node --test tests/state-backup.test.js",
|
|
897
1058
|
"eval:mine": "node scripts/mine-eval-set.js",
|
|
898
1059
|
"eval:baseline": "node scripts/eval-baseline.js",
|
|
899
|
-
"
|
|
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",
|
|
900
1067
|
"test:eval-mining": "node --test tests/mine-eval-set.test.js tests/eval-baseline.test.js",
|
|
901
1068
|
"test:task-scope-lease": "node --test tests/task-scope-lease.test.js",
|
|
902
1069
|
"eval-scorecard:generate": "node scripts/generate-eval-scorecard.js",
|
|
@@ -907,7 +1074,7 @@
|
|
|
907
1074
|
"test:proof-pack-cadence": "node --test tests/refresh-proof-pack.test.js tests/case-study-outreach.test.js",
|
|
908
1075
|
"test:evaluations-page": "node --test tests/evaluations-page.test.js",
|
|
909
1076
|
"prove:rag": "node -r dotenv/config scripts/prove-rag-pipeline.js",
|
|
910
|
-
"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",
|
|
911
1078
|
"eval:ranking": "node scripts/retrieval-ranking-eval.js",
|
|
912
1079
|
"test:ir-metrics": "node --test tests/ir-metrics.test.js tests/retrieval-ranking-eval.test.js",
|
|
913
1080
|
"test:pragmatic-hybrid": "node --test tests/pragmatic-hybrid-search.test.js",
|
|
@@ -940,7 +1107,81 @@
|
|
|
940
1107
|
"enforcement:provenance": "node scripts/enforcement-provenance-check.js",
|
|
941
1108
|
"prove:vlt": "node scripts/prove-vlt-dogfood.js",
|
|
942
1109
|
"test:vlt-dogfood": "node --test tests/prove-vlt-dogfood.test.js",
|
|
943
|
-
"test:context-engineering": "node --test tests/context-engineering-checklist.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"
|
|
944
1185
|
},
|
|
945
1186
|
"keywords": [
|
|
946
1187
|
"mcp",
|
|
@@ -995,13 +1236,13 @@
|
|
|
995
1236
|
"node": ">=18.18.0"
|
|
996
1237
|
},
|
|
997
1238
|
"dependencies": {
|
|
998
|
-
"@anthropic-ai/sdk": "0.
|
|
999
|
-
"@google/genai": "2.
|
|
1000
|
-
"@lancedb/lancedb": "^0.
|
|
1239
|
+
"@anthropic-ai/sdk": "^0.122.0",
|
|
1240
|
+
"@google/genai": "2.19.0",
|
|
1241
|
+
"@lancedb/lancedb": "^0.38.0",
|
|
1001
1242
|
"apache-arrow": "^18.1.0",
|
|
1002
1243
|
"better-sqlite3": "^12.9.0",
|
|
1003
1244
|
"dotenv": "^17.4.2",
|
|
1004
|
-
"js-yaml": "4.
|
|
1245
|
+
"js-yaml": "5.4.1",
|
|
1005
1246
|
"playwright-core": "^1.59.1",
|
|
1006
1247
|
"protobufjs": "^8.7.1",
|
|
1007
1248
|
"stripe": "^22.2.0"
|
|
@@ -1018,14 +1259,15 @@
|
|
|
1018
1259
|
"express@4.22.1": {
|
|
1019
1260
|
"path-to-regexp": "0.1.13"
|
|
1020
1261
|
},
|
|
1021
|
-
"js-yaml": "4.
|
|
1262
|
+
"js-yaml": "5.4.1",
|
|
1263
|
+
"sharp": "0.35.4",
|
|
1022
1264
|
"undici": "8.10.0"
|
|
1023
1265
|
},
|
|
1024
1266
|
"mcpName": "io.github.IgorGanapolsky/thumbgate",
|
|
1025
1267
|
"devDependencies": {
|
|
1026
|
-
"@changesets/changelog-github": "^0.
|
|
1027
|
-
"@changesets/cli": "^
|
|
1028
|
-
"@playwright/test": "^1.
|
|
1268
|
+
"@changesets/changelog-github": "^1.0.0",
|
|
1269
|
+
"@changesets/cli": "^3.0.0",
|
|
1270
|
+
"@playwright/test": "^1.62.1",
|
|
1029
1271
|
"c8": "^12.0.0",
|
|
1030
1272
|
"undici": "8.10.0"
|
|
1031
1273
|
},
|