-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.59 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
{
"name": "fleet-engineering",
"version": "0.3.0",
"private": true,
"type": "module",
"description": "Practical reference for fleet engineering — governing populations of AI agents",
"scripts": {
"audit": "node tools/fleet-audit/cli.js .",
"audit:suggest": "node tools/fleet-audit/cli.js . --suggest",
"audit:gate": "node tools/fleet-audit/cli.js . --min-score=55",
"budget": "node tools/fleet-budget/cli.js .",
"cost": "node tools/fleet-cost/cli.js .",
"init:demo": "node tools/fleet-init/cli.js /tmp/fleet-demo --pattern team-agent-registry --with-loop daily-triage",
"validate:registry": "node scripts/validate-registry.mjs",
"validate:agents": "node scripts/validate-agents.mjs",
"test:fleet-audit": "cd tools/fleet-audit && npm install && npm test",
"test:fleet-budget": "cd tools/fleet-budget && npm test",
"test:fleet-cost": "cd tools/fleet-cost && npm test",
"test:fleet-mcp": "cd tools/fleet-mcp && node --test test/allocate.test.mjs",
"test:fixtures": "node scripts/test-fixtures.mjs",
"test:examples": "node tools/fleet-audit/cli.js examples/e2e-f2 --min-score=55",
"demo:diy": "bash examples/diy/demo.sh",
"bundle:init": "node scripts/bundle-fleet-init.mjs",
"test": "npm run test:fleet-audit && npm run test:fleet-budget && npm run test:fleet-cost && npm run test:fleet-mcp && npm run test:fixtures && npm run test:examples"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cobusgreyling/fleet-engineering.git"
},
"devDependencies": {
"ajv": "^8.17.1",
"yaml": "^2.8.0"
}
}