-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.74 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
{
"name": "agent-bober",
"version": "0.18.0",
"description": "Multi-agent, multi-provider harness for building software autonomously with any LLM. Researcher, Planner, Curator, Generator, Evaluator, Documenter pipeline with a fail-closed security-audit gate, a fleet orchestrator for bulk multi-agent runs, and a cross-domain knowledge platform (medical, vault, priority hub). Supports Claude, GPT, Gemini, DeepSeek, Ollama, and Claude Code subscriptions. MCP server for Cursor/Windsurf.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"agent-bober": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest",
"update-all": "node scripts/update-all.mjs",
"update-all:check": "node scripts/update-all.mjs --check",
"prepublishOnly": "npm run build"
},
"keywords": [
"agent",
"harness",
"multi-agent",
"autonomous",
"generator-evaluator",
"claude-code",
"cursor",
"mcp",
"claude",
"openai",
"gemini",
"deepseek",
"ollama",
"plugin",
"security-audit",
"fleet",
"incident-response",
"knowledge-platform"
],
"author": "BOBER3r",
"license": "MIT",
"homepage": "https://agentbober.com",
"repository": {
"type": "git",
"url": "git+https://github.com/BOBER3r/agent-bober.git"
},
"bugs": {
"url": "https://github.com/BOBER3r/agent-bober/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"skills/",
"agents/",
"hooks/",
"scripts/",
"templates/",
".claude-plugin/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.100.1",
"@modelcontextprotocol/sdk": "^1.28.0",
"better-sqlite3": "^11.9.1",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"execa": "^9.5.2",
"glob": "^11.0.1",
"grammy": "^1.44.0",
"ora": "^8.1.1",
"prompts": "^2.4.2",
"sax": "^1.6.0",
"semver": "^7.8.1",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.25.2"
},
"peerDependencies": {
"@google/generative-ai": ">=0.21.0",
"openai": "^6.42.0"
},
"peerDependenciesMeta": {
"openai": {
"optional": true
},
"@google/generative-ai": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.0",
"@types/prompts": "^2.4.9",
"@types/sax": "^1.2.7",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^10.0.0",
"markdownlint-cli": "^0.48.0",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}