-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.71 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
{
"name": "helloagents",
"version": "3.1.9",
"type": "module",
"description": "HelloAGENTS — The orchestration kernel that makes any AI CLI smarter. Adds intelligent routing, unified QA gates, 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",
"helloagents-js.cmd": "cli.mjs",
"helloagents-turn-state": "scripts/turn-state-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",
"deploy": "node cli.mjs install",
"deploy:standby": "node cli.mjs install --all --standby",
"deploy:global": "node cli.mjs install --all --global",
"sync-hosts": "node cli.mjs update",
"cleanup-hosts": "node cli.mjs cleanup",
"switch-branch": "node cli.mjs switch-branch"
},
"files": [
"cli.mjs",
"scripts/",
"hooks/",
"skills/",
"templates/",
"assets/",
"bootstrap.md",
"bootstrap-lite.md",
"README_CN.md",
"install.sh",
"install.ps1",
"gemini-extension.json",
".cursor-plugin/",
".claude-plugin/",
".codex-plugin/",
".grok-plugin/"
],
"keywords": [
"ai",
"agent",
"claude",
"codex",
"cursor",
"cli",
"orchestration",
"subagent",
"hooks",
"skills"
],
"engines": {
"node": ">=18"
}
}