-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.48 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 4.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "ruvnet-brain",
"version": "4.0.7",
"description": "One-command installer for RuvNet Brain — a portable, source-grounded brain over rUv's RuvNet building blocks, delivered as a Claude Code plugin so Claude uses the stack instead of fighting it.",
"type": "module",
"bin": {
"ruvnet-brain": "bin/install.mjs"
},
"scripts": {
"test": "node plugin/test/run-tests.mjs",
"release:proof": "node scripts/release-proof.mjs",
"benchmark:brain50": "node scripts/brain-latency-50.mjs",
"benchmark:novice50": "node scripts/brain-novice-50.mjs",
"version:check": "node scripts/sync-version.mjs --check",
"claims:verify": "node scripts/claims-verify.mjs",
"claims:fix": "node scripts/claims-verify.mjs --fix",
"version:sync": "node scripts/sync-version.mjs",
"test:unit": "vitest run tests/unit",
"test:mesh": "vitest run tests/mesh",
"test:mutation": "vitest run tests/mutation",
"test:regression": "vitest run tests/regression",
"qe:ux": "node scripts/qe/ux-suite.mjs",
"test:cov": "vitest run tests/unit --coverage",
"test:all": "npm run test:unit && npm run test:mesh && npm run test:mutation && npm run test:regression && npm run test:integration && npm test",
"metaharness:receipts": "node scripts/metaharness-receipts.mjs",
"route:cheap": "node scripts/route-cheap.mjs",
"route:receipt": "node scripts/dispatch-receipt.mjs",
"metaharness:fix": "node scripts/fix-metaharness-memretrieve.mjs --apply",
"metaharness:check": "node scripts/fix-metaharness-memretrieve.mjs --check",
"eval": "node scripts/eval-brain.mjs",
"eval:gate": "node scripts/eval-brain.mjs --gate",
"eval:record": "node scripts/eval-brain.mjs --record",
"eval:top100:build": "node scripts/top100-corpus.mjs",
"eval:top100": "node scripts/top100-benchmark.mjs",
"gists:index": "node scripts/ingest-gists.mjs --index-only",
"gists:sync": "node scripts/ingest-gists.mjs && node kb/forge-big.mjs both --dir kb --name ruv-gists",
"test:integration": "vitest run tests/integration",
"substitution:check": "node scripts/no-silent-substitution.mjs",
"catalog:verify": "node scripts/verify-model-catalog.mjs",
"catalog:refresh": "node scripts/refresh-model-catalog.mjs",
"falsify": "node scripts/falsify.mjs",
"sbom": "npx --yes @cyclonedx/cyclonedx-npm --omit dev --output-file sbom/ruvnet-brain.cdx.json --mc-type application --validate",
"learning:replay": "node scripts/learning-replay.mjs",
"learning:replay:check": "node scripts/learning-replay.mjs --check-portfolio",
"learning:replay:mutants:check": "node scripts/learning-replay.mjs --check-mutants",
"learning:replay:dry": "node scripts/learning-replay.mjs --dry-run",
"wired:check": "node scripts/wired-check.mjs --check",
"doc:currency": "node scripts/doc-currency.mjs --check",
"status:check": "node scripts/status-honesty.mjs",
"cap:collect": "node scripts/rerank-cap-eval.mjs --collect",
"cap:report": "node scripts/rerank-cap-eval.mjs --report",
"cap:ab": "node scripts/rerank-cap-warm-ab.mjs"
},
"files": [
".claude-plugin/marketplace.json",
"bin/install.mjs",
"plugin/",
"plugin/mcp/managed-cli-interface.mjs",
"plugin/mcp/server.mjs",
"plugin/scripts/codex-hook-wrapper.mjs",
"plugin/scripts/host-update.mjs",
"plugin/scripts/update-apply.mjs",
"!plugin/README.md",
"!plugin/scripts/.ruvnet-brain/",
"!plugin/test/",
"README.md",
"docs/RELEASE-NOTES-4.0.md",
"LICENSE",
"console/",
"config/model-router/",
"data/model-catalog.json",
"scripts/",
"kb/verify-citation.mjs",
"kb/zip-extract.mjs",
"kb/brain-profile.mjs",
"kb/model-requirements.mjs",
"keys/ruvnet-brain-signing.pub.pem"
],
"engines": {
"node": ">=18"
},
"keywords": [
"ruvnet",
"ruv",
"ruflo",
"ruvector",
"rvf",
"agentdb",
"grounding",
"brain",
"mcp",
"claude-code",
"installer"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stuinfla/ruvnet-brain.git"
},
"homepage": "https://github.com/stuinfla/ruvnet-brain#readme",
"bugs": "https://github.com/stuinfla/ruvnet-brain/issues",
"author": "Stuart Kerr",
"devDependencies": {
"@metaharness/darwin": "~0.8.0",
"@ruvector/rvf": "^0.3.4",
"@vitest/coverage-v8": "^4.1.10",
"playwright": "^1.62.0",
"vitest": "^4.1.10"
},
"dependencies": {
"@metaharness/flywheel": "^0.1.7",
"@metaharness/router": "^0.3.2"
}
}