forked from ruvnet/agentic-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
279 lines (279 loc) · 10.2 KB
/
package.json
File metadata and controls
279 lines (279 loc) · 10.2 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
{
"name": "agentic-flow",
"version": "2.0.2-alpha",
"description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, ReasoningBank learning memory, quantum-resistant Jujutsu VCS, and autonomous multi-agent swarms. Built by @ruvnet with Claude Agent SDK, neural networks, memory persistence, GitHub integration, and distributed consensus protocols.",
"type": "module",
"main": "agentic-flow/dist/index.js",
"types": "agentic-flow/dist/index.d.ts",
"bin": {
"agentic-flow": "agentic-flow/dist/cli-proxy.js",
"agentdb": "agentic-flow/dist/agentdb/cli/agentdb-cli.js",
"ajj-billing": "agentic-flow/dist/billing/cli.js",
"agentic-jujutsu": "packages/agentic-jujutsu/bin/cli.js",
"jj-agent": "packages/agentic-jujutsu/bin/cli.js"
},
"exports": {
".": "./agentic-flow/dist/index.js",
"./package.json": "./package.json",
"./wrappers": "./agentic-flow/dist/core/index.js",
"./wrappers/gnn": "./agentic-flow/dist/core/gnn-wrapper.js",
"./wrappers/agentdb-fast": "./agentic-flow/dist/core/agentdb-fast.js",
"./wrappers/attention": "./agentic-flow/dist/core/attention-fallbacks.js",
"./wrappers/embedding": "./agentic-flow/dist/core/embedding-service.js",
"./reasoningbank": {
"node": "./agentic-flow/dist/reasoningbank/index.js",
"browser": "./agentic-flow/dist/reasoningbank/wasm-adapter.js",
"default": "./agentic-flow/dist/reasoningbank/index.js"
},
"./reasoningbank/backend-selector": "./agentic-flow/dist/reasoningbank/backend-selector.js",
"./reasoningbank/wasm-adapter": "./agentic-flow/dist/reasoningbank/wasm-adapter.js",
"./router": "./agentic-flow/dist/router/index.js",
"./agent-booster": "./agentic-flow/dist/agent-booster/index.js",
"./transport/quic": "./agentic-flow/dist/transport/quic.js",
"./agentdb": "./agentic-flow/dist/agentdb/index.js",
"./billing": "./agentic-flow/dist/billing/index.js",
"./agentic-jujutsu": {
"require": "./packages/agentic-jujutsu/index.js",
"import": "./packages/agentic-jujutsu/index.js",
"types": "./packages/agentic-jujutsu/index.d.ts"
},
"./agentic-jujutsu/quantum": {
"require": "./packages/agentic-jujutsu/src/quantum_bridge.js",
"import": "./packages/agentic-jujutsu/src/quantum_bridge.js",
"types": "./packages/agentic-jujutsu/quantum-bridge.d.ts"
}
},
"scripts": {
"postinstall": "cd agentic-flow && node scripts/postinstall.js || true",
"prepare": "bash scripts/setup-husky.sh || true",
"build": "npm run build:main && npm run build:packages",
"build:main": "cd agentic-flow && npm run build",
"build:packages": "npm run build:agent-booster && npm run build:reasoningbank && npm run build:jujutsu",
"build:agent-booster": "cd packages/agent-booster && npm run build || true",
"build:reasoningbank": "cd packages/reasoningbank && npm run build || true",
"build:jujutsu": "cd packages/agentic-jujutsu && npm run build || echo 'Jujutsu uses pre-built binaries'",
"test": "npm run test:main && npm run test:parallel",
"test:main": "cd agentic-flow && npm test",
"test:billing": "npx tsx test/billing/billing-system.test.ts",
"test:parallel": "node tests/parallel/benchmark-suite.js",
"test:mesh": "node tests/parallel/mesh-swarm-test.js",
"test:hierarchical": "node tests/parallel/hierarchical-swarm-test.js",
"test:ring": "node tests/parallel/ring-swarm-test.js",
"test:coverage": "jest --coverage --config=config/jest.config.js",
"test:watch": "jest --watch --config=config/jest.config.js",
"coverage:check": "jest --coverage --config=config/jest.config.js --coverageThreshold='{\"global\":{\"branches\":80,\"functions\":80,\"lines\":80,\"statements\":80}}'",
"bench:quic": "node benchmarks/quic-transport.bench.js",
"bench:report": "node scripts/generate-benchmark-report.js",
"bench:parallel": "BENCHMARK_MODE=true ITERATIONS=10 node tests/parallel/benchmark-suite.js",
"bench:attention": "node benchmarks/attention-gnn-benchmark.js",
"bench:sona": "npx tsx tests/sona/sona-performance.bench.ts",
"bench:sona:quick": "BENCHMARK_QUICK=1 npx tsx tests/sona/sona-performance.bench.ts",
"bench:sona:gc": "node --expose-gc --loader tsx tests/sona/benchmark-runner.ts --gc",
"test:attention": "jest tests/integration/attention-gnn.test.ts --config=config/jest.config.cjs",
"docker:test": "cd tests/docker && docker-compose -f docker-compose.parallel.yml up --build",
"docker:bench": "cd tests/docker && docker-compose -f docker-compose.parallel.yml up --build benchmark",
"profile": "0x -- node benchmarks/quic-transport.bench.js",
"lint": "eslint . --ext .ts,.js --config config/.eslintrc.strict.js",
"lint:fix": "eslint . --ext .ts,.js --config config/.eslintrc.strict.js --fix",
"lint:report": "eslint . --ext .ts,.js --config config/.eslintrc.strict.js --format json --output-file eslint-report.json",
"format": "prettier --write --config config/.prettierrc.js \"**/*.{ts,js,json,md,yml,yaml}\" --ignore-path config/.prettierignore",
"format:check": "prettier --check --config config/.prettierrc.js \"**/*.{ts,js,json,md,yml,yaml}\" --ignore-path config/.prettierignore",
"typecheck": "tsc --noEmit --project ./agentic-flow/config/tsconfig.json",
"typecheck:strict": "tsc --noEmit --project ./agentic-flow/config/tsconfig.strict.json",
"complexity": "npx complexity-report --format json --output complexity-report.json agentic-flow/src/**/*.ts || echo 'Complexity report generated'",
"quality:check": "npm run lint && npm run format:check && npm run typecheck:strict && npm run test:coverage",
"quality:fix": "npm run lint:fix && npm run format",
"prepublishOnly": "npm run build || true"
},
"keywords": [
"ai",
"ai-agents",
"ai-orchestration",
"agentic",
"agents",
"agent-swarm",
"anthropic",
"anthropic-claude",
"automation",
"autonomous-agents",
"byzantine-consensus",
"claude",
"claude-agent-sdk",
"claude-code",
"reasoning-memory",
"reasoningbank",
"agent-learning",
"memory-system",
"consensus-protocols",
"coordination",
"crdt",
"devops",
"distributed-systems",
"docker",
"fastmcp",
"flow-nexus",
"github",
"github-integration",
"goal-planning",
"goap",
"hive-mind",
"huggingface",
"jujutsu",
"jujutsu-vcs",
"quantum-resistant",
"quantum-cryptography",
"quantumdag",
"llm",
"llm-orchestration",
"machine-learning",
"mcp",
"mcp-server",
"mcp-tools",
"memory-persistence",
"mesh-network",
"multi-agent",
"multi-agent-systems",
"neural-networks",
"onnx",
"onnxruntime",
"orchestration",
"pagerank",
"parallel-processing",
"quic",
"raft",
"ruv",
"ruvnet",
"sparc",
"sublinear-algorithms",
"swarm",
"swarm-intelligence",
"task-orchestration",
"typescript",
"version-control",
"vcs",
"workflow",
"workflow-automation"
],
"author": {
"name": "ruv",
"email": "contact@ruv.io",
"url": "https://github.com/ruvnet"
},
"contributors": [
{
"name": "ruv",
"url": "https://github.com/ruvnet"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/agentic-flow.git"
},
"bugs": {
"url": "https://github.com/ruvnet/agentic-flow/issues"
},
"homepage": "https://github.com/ruvnet/agentic-flow#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"files": [
"agentic-flow/dist",
"agentic-flow/docs",
"agentic-flow/.claude",
"agentic-flow/wasm",
"agentic-flow/certs",
"agentic-flow/scripts",
"agent-booster/dist",
"reasoningbank/dist",
"packages/agentic-jujutsu",
"docs/AGENTIC_JUJUTSU_QUICKSTART.md",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.5",
"@anthropic-ai/claude-code": "^2.0.35",
"@anthropic-ai/sdk": "^0.65.0",
"@google/genai": "^1.22.0",
"@ruvector/attention": "^0.1.2",
"@ruvector/gnn": "^0.1.23",
"@ruvector/ruvllm": "^0.2.4",
"@ruvector/sona": "^0.1.3",
"@supabase/supabase-js": "^2.78.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react-swc": "^4.2.0",
"@xenova/transformers": "^2.17.2",
"agentdb": "^2.0.0-alpha.3.6",
"agentic-payments": "^0.1.13",
"autoprefixer": "^10.4.21",
"axios": "^1.12.2",
"better-sqlite3": "^11.10.0",
"dotenv": "^16.4.5",
"express": "^5.1.0",
"fastmcp": "^3.19.0",
"http-proxy-middleware": "^3.0.5",
"lucide-react": "^0.548.0",
"marked": "^17.0.3",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.4",
"tailwindcss": "^4.1.16",
"tailwindcss-animate": "^1.0.7",
"tiktoken": "^1.0.22",
"ulid": "^3.0.1",
"vite": "^7.1.12",
"ws": "^8.18.3",
"yaml": "^2.8.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@e2b/code-interpreter": "^2.3.1",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/helmet": "^4.0.0",
"@types/inquirer": "^9.0.9",
"@types/jest": "^29.5.8",
"@types/node": "^20.19.19",
"@types/uuid": "^11.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"0x": "^5.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.5.2",
"prettier": "^3.7.3",
"ts-jest": "^29.1.1",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"claude-flow": "^2.7.0",
"flow-nexus": "^1.0.0"
},
"peerDependenciesMeta": {
"claude-flow": {
"optional": true
},
"flow-nexus": {
"optional": true
}
},
"optionalDependencies": {
"@ruvector/attention-darwin-arm64": "^0.1.1",
"@ruvector/attention-darwin-x64": "^0.1.1",
"@ruvector/attention-linux-x64-gnu": "^0.1.1",
"@ruvector/attention-win32-x64-msvc": "^0.1.1"
}
}