-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.18 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.18 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
{
"name": "agency-orchestrator",
"version": "0.6.6",
"description": "Multi-agent YAML workflow engine — 211 AI roles, auto DAG parallelism, zero code. One sentence → multiple AI roles collaborate → complete plan in minutes. 10 LLM providers, 7 need no API key.",
"keywords": [
"multi-agent",
"ai-agents",
"agent-orchestration",
"orchestrator",
"workflow",
"yaml-workflow",
"dag",
"llm",
"claude",
"openai",
"deepseek",
"ollama",
"crewai-alternative",
"langgraph-alternative",
"autogen-alternative",
"no-code",
"no-api-key",
"subscription-based",
"copilot-cli",
"codex-cli",
"ai-roles",
"chinese-ai",
"copilot",
"cursor",
"windsurf",
"aider",
"kiro",
"trae",
"gemini-cli",
"codex",
"qwen",
"openclaw",
"opencode",
"claude-code",
"deerflow",
"antigravity",
"mcp"
],
"author": "jnMetaCode",
"license": "Apache-2.0",
"homepage": "https://github.com/jnMetaCode/agency-orchestrator#readme",
"repository": {
"type": "git",
"url": "https://github.com/jnMetaCode/agency-orchestrator"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"agency-orchestrator": "dist/cli.js",
"ao": "dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "npx tsx test/run.ts && npx tsx test/condition.ts && npx tsx test/cli.ts && npx tsx test/compose.ts && npx tsx test/demo.ts && npx tsx test/e2e.ts && npx tsx test/e2e-condition.ts && npx tsx test/e2e-loop.ts && npx tsx test/mcp.ts",
"prepublishOnly": "npm run build"
},
"files": [
"dist/",
"workflows/",
"examples/",
"integrations/",
"agency-agents/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@modelcontextprotocol/sdk": "^1.28.0",
"agency-agents-zh": "^1.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}