-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
209 lines (209 loc) · 8.41 KB
/
Copy pathpackage.json
File metadata and controls
209 lines (209 loc) · 8.41 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
{
"name": "@desplega.ai/agent-swarm",
"version": "1.131.1",
"description": "agent-swarm.dev — an open-source operating system for AI work: a lead agent breaks goals into tasks, routes them to specialized workers such as Claude Code or Codex, runs each worker in an isolated container, and preserves shared memory, tools, schedules, and review gates so delegated work compounds across sessions.",
"keywords": [
"agent-swarm.dev",
"multi-agent orchestration",
"AI agents",
"Claude Code",
"Codex",
"agent swarm",
"MCP",
"AI agent framework",
"autonomous agents",
"Docker-isolated agents"
],
"license": "MIT",
"author": "desplega.sh <contact@desplega.sh>",
"maintainers": [
{
"name": "Taras",
"email": "t@desplega.sh"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/desplega-ai/agent-swarm.git"
},
"bugs": {
"url": "https://github.com/desplega-ai/agent-swarm/issues"
},
"homepage": "https://agent-swarm.dev",
"mcpName": "io.github.desplega-ai/agent-swarm",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/",
"tsconfig.json",
"plugin/commands/",
"plugin/agents/",
"plugin/pi-skills/",
"templates/",
"vendored-openapi/",
"openapi.json"
],
"module": "src/http.ts",
"type": "module",
"bin": {
"agent-swarm": "./dist/cli.js"
},
"@desplega.ai/agent-swarm": "link:@desplega.ai/agent-swarm",
"config": {
"name": "agent-swarm"
},
"packageManager": "bun@1.3.11",
"workspaces": [
"apps/ui",
"apps/templates-ui",
"apps/evals",
"packages/*"
],
"overrides": {
"react": "19.2.3",
"react-dom": "19.2.3"
},
"trustedDependencies": [
"esbuild",
"unrs-resolver"
],
"scripts": {
"build:pi-skills": "bun run plugin/build-pi-skills.ts",
"build:skill-md": "bun scripts/build-skill-md.ts",
"check:skill-md": "bun scripts/build-skill-md.ts --check",
"build:seed-skill-files": "bun scripts/build-seed-skill-files.ts",
"check:seed-skill-files": "bun scripts/build-seed-skill-files.ts --check",
"sync:ai-toolbox-skills": "bun scripts/sync-ai-toolbox-skills.ts",
"check:ai-toolbox-skills": "bun scripts/sync-ai-toolbox-skills.ts --check",
"check:skill-sources": "bun scripts/check-skill-sources.ts",
"build:script-types": "bun scripts/bundle-script-types.ts",
"build:cli": "bun run scripts/build-cli.ts",
"mono:build": "turbo run build",
"mono:test": "turbo run test",
"mono:lint": "turbo run lint",
"mono:dev": "turbo run dev",
"test:root": "bash scripts/run-bun-tests.sh",
"prepack": "bun run build:cli",
"tsc:check": "bun tsc --noEmit",
"check:db-boundary": "bash scripts/check-db-boundary.sh",
"check:dep-graph": "depcruise src plugin/opencode-plugins --config .dependency-cruiser.cjs",
"check:api-key-boundary": "bash scripts/check-api-key-boundary.sh",
"check:vendored-openapi": "bun scripts/check-vendored-openapi.ts",
"check:rbac-coverage": "bun scripts/check-rbac-coverage.ts",
"check:openapi-response-coverage": "bun scripts/check-openapi-response-coverage.ts",
"check:script-types": "bash scripts/check-script-types-freshness.sh",
"check:audit-columns": "bash scripts/check-audit-columns.sh",
"lint:structure": "konsistent check",
"prepare-release": "bun scripts/prepare-release.ts",
"refresh:vendored-openapi": "bun scripts/refresh-vendored-openapi.ts",
"sync-chart-version": "bun scripts/sync-chart-version.ts",
"check-chart-version": "bun scripts/sync-chart-version.ts --check-if-package-version-changed",
"cli": "bun src/cli.tsx",
"hook": "bun src/hooks/hook.ts",
"claude": "bun src/cli.tsx claude",
"claude:headless": "bun src/cli.tsx claude --headless",
"worker": "bun src/cli.tsx worker",
"worker:yolo": "bun src/cli.tsx worker --yolo",
"lead": "bun src/cli.tsx lead",
"lead:yolo": "bun src/cli.tsx lead --yolo",
"dev": "bun --hot src/stdio.ts",
"dev:http": "NODE_ENV=development portless api.swarm bun --hot src/http.ts",
"start": "bun src/stdio.ts",
"start:http": "NODE_ENV=development bun --expose-gc src/http.ts",
"start:portless": "portless api.swarm bun --expose-gc src/http.ts",
"inspector": "bunx @modelcontextprotocol/inspector --transport stdio bun src/stdio.ts",
"inspector:http": "bunx @modelcontextprotocol/inspector --transport http https://api.swarm.localhost:1355/mcp",
"lint": "biome check src apps/evals",
"lint:fix": "biome check --write src apps/evals",
"format": "biome format --write src",
"build:binary": "bun build ./src/cli.tsx --compile --compile-exec-argv='--expose-gc' --target=bun-linux-x64 --outfile ./dist/agent-swarm",
"build:binary:arm64": "bun build ./src/cli.tsx --compile --compile-exec-argv='--expose-gc' --target=bun-linux-arm64 --outfile ./dist/agent-swarm",
"docker:build:api": "docker build -f Dockerfile -t agent-swarm-api:latest .",
"docker:build:worker": "docker build -f Dockerfile.worker -t agent-swarm-worker:latest .",
"docker:build:worker:slim": "docker build -f Dockerfile.worker --target worker-slim -t agent-swarm-worker:slim .",
"docker:run:worker": "docker run --rm -it --env-file .env.docker -p 3202:3000 -v ./logs:/logs -v ./work/shared:/workspace/shared -v ./work/worker-1:/workspace/personal agent-swarm-worker:latest",
"docker:run:lead": "docker run --rm -it --env-file .env.docker-lead -e AGENT_ROLE=lead -p 3201:3000 -v ./logs:/logs -v ./work/shared:/workspace/shared -v ./work/lead:/workspace/personal agent-swarm-worker:latest",
"deploy:install": "bun deploy/install.ts",
"deploy:update": "bun deploy/update.ts",
"deploy:uninstall": "bun deploy/uninstall.ts",
"deploy:docker": "bun deploy/docker-push.ts",
"e2e:workflows": "bun scripts/e2e-workflow-test.ts",
"e2e:workflows:docker": "bun scripts/e2e-workflow-test.ts --with-docker",
"e2e:otel:jaeger": "bun scripts/e2e-otel-jaeger.ts",
"docs:mcp": "bun scripts/generate-mcp-docs.ts",
"docs:openapi": "bun scripts/generate-openapi.ts",
"docs:business-use": "bun scripts/generate-business-use-docs.ts",
"pm2-start": "pm2 start ecosystem.config.cjs",
"pm2-stop": "pm2 stop ecosystem.config.cjs",
"pm2-restart": "pm2 restart ecosystem.config.cjs",
"pm2-logs": "pm2 logs swarm-api swarm-ui swarm-lead swarm-worker",
"pm2-status": "pm2 status swarm-api swarm-ui swarm-lead swarm-worker",
"seed": "bun scripts/seed.ts",
"seed:clean": "bun scripts/seed.ts --clean",
"seed:people": "bun scripts/seed-people.ts",
"seed:scripts": "bun scripts/seed-scripts.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@faker-js/faker": "^10.4.0",
"@opencode-ai/plugin": "1.17.4",
"@types/bun": "latest",
"dependency-cruiser": "^18.0.0",
"konsistent": "1.0.0-beta.1",
"openapi-typescript": "^7",
"ts-morph": "^28.0.0",
"turbo": "^2.10.0"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"bun": ">=1.0.26"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.41",
"@anthropic-ai/sdk": "^0.93.0",
"@asteasolutions/zod-to-openapi": "^8.0.0",
"@aws-sdk/client-bedrock": "3.1048.0",
"@desplega.ai/business-use": "^0.4.2",
"@desplega.ai/localtunnel": "^2.2.0",
"@earendil-works/pi-agent-core": "^0.84.1",
"@earendil-works/pi-ai": "^0.84.1",
"@earendil-works/pi-coding-agent": "^0.84.1",
"@inkjs/ui": "^2.0.0",
"@linear/sdk": "^77.0.0",
"@modelcontextprotocol/sdk": "^1.25.1",
"@openai/codex-sdk": "^0.147.0",
"@opencode-ai/sdk": "^1.18.16",
"@openfort/openfort-node": "^0.9.1",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-metrics-otlp-http": "^0.218.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.218.0",
"@opentelemetry/resources": "^2.7.1",
"@opentelemetry/sdk-metrics": "^2.7.1",
"@opentelemetry/sdk-node": "^0.218.0",
"@opentelemetry/semantic-conventions": "^1.41.1",
"@slack/bolt": "^4.6.0",
"@types/react": "^19.2.7",
"@x402/core": "^2.5.0",
"@x402/evm": "^2.5.0",
"@x402/fetch": "^2.5.0",
"ai": "^6.0.116",
"cron-parser": "^5.4.0",
"date-fns": "^4.1.0",
"e2b": "2.26.0",
"hono": "^4.12.3",
"ink": "^6.5.1",
"oauth4webapi": "^3.8.5",
"openai": "^6.22.0",
"react": "19.2.3",
"react-devtools-core": "^7.0.1",
"sqlite-vec": "^0.1.9",
"svix": "^1.62.0",
"viem": "^2.46.3",
"zod": "^4.2.1",
"zod-to-json-schema": "^3.25.1"
}
}