-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "helloagents",
"version": "3.0.12",
"type": "module",
"description": "HelloAGENTS — The orchestration kernel that makes any AI CLI smarter. Adds intelligent routing, quality verification (Ralph Loop), safety guards, and notifications.",
"author": "HelloWind",
"license": "Apache-2.0",
"homepage": "https://github.com/hellowind777/helloagents",
"repository": {
"type": "git",
"url": "git+https://github.com/hellowind777/helloagents.git"
},
"bin": {
"helloagents": "cli.mjs",
"helloagents-js": "cli.mjs"
},
"scripts": {
"test": "node --test",
"postinstall": "node cli.mjs postinstall",
"preuninstall": "node cli.mjs preuninstall",
"uninstall": "node cli.mjs preuninstall",
"postuninstall": "node cli.mjs preuninstall",
"prepublishOnly": "node cli.mjs sync-version"
},
"files": [
"cli.mjs",
"scripts/",
"hooks/",
"skills/",
"templates/",
"assets/",
"bootstrap.md",
"bootstrap-lite.md",
"README_CN.md",
"gemini-extension.json",
".claude-plugin/",
".codex-plugin/"
],
"keywords": ["ai", "agent", "claude", "codex", "cli", "orchestration", "subagent", "hooks", "skills"],
"engines": {
"node": ">=18"
}
}