-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) Β· 1.49 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) Β· 1.49 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
{
"name": "hail-hydra-cc",
"version": "2.5.1",
"description": "Multi-agent orchestration framework for AI coding CLIs (Claude Code, Gemini CLI, Codex CLI). Routes tasks to specialized cheap/fast subagents while the frontier model orchestrates β inspired by speculative decoding. ~50% API cost reduction.",
"bin": {
"hail-hydra-cc": "bin/cli.js"
},
"main": "./src/installer/index.js",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"inquirer": "^8.2.6"
},
"keywords": [
"claude-code",
"ai-agents",
"multi-agent",
"orchestration",
"speculative-decoding",
"subagents",
"claude",
"anthropic",
"ai-coding",
"developer-tools",
"code-review",
"haiku",
"sonnet",
"opus",
"cost-optimization",
"token-savings",
"ai-framework",
"claude-subagents",
"coding-agent",
"agent-orchestration",
"hydra"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AR6420/Hail_Hydra.git"
},
"homepage": "https://github.com/AR6420/Hail_Hydra#readme",
"bugs": {
"url": "https://github.com/AR6420/Hail_Hydra/issues"
},
"files": [
"bin/",
"src/installer/",
"dist/"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "node src/generator/build.js",
"test": "node test/run.js",
"prepack": "npm run build && npm test"
}
}