@agencycli/agencycli 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agencycli/agencycli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "AI agent organisation and context management — hire agents into teams, assign tasks, and automate workflows",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agent",
|
|
@@ -14,28 +14,26 @@
|
|
|
14
14
|
"agent-orchestration"
|
|
15
15
|
],
|
|
16
16
|
"homepage": "https://github.com/chenhg5/agencycli",
|
|
17
|
-
"bugs": {
|
|
18
|
-
"url": "https://github.com/chenhg5/agencycli/issues"
|
|
19
|
-
},
|
|
20
17
|
"repository": {
|
|
21
18
|
"type": "git",
|
|
22
|
-
"url": "
|
|
19
|
+
"url": "https://github.com/chenhg5/agencycli.git"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/chenhg5/agencycli/issues"
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"author": "chenhg5",
|
|
26
|
-
"type": "commonjs",
|
|
27
|
-
"main": "install.js",
|
|
28
26
|
"bin": {
|
|
29
27
|
"agencycli": "run.js"
|
|
30
28
|
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"postinstall": "node install.js"
|
|
31
|
+
},
|
|
31
32
|
"files": [
|
|
32
33
|
"install.js",
|
|
33
34
|
"run.js",
|
|
34
35
|
"README.md"
|
|
35
36
|
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"postinstall": "node install.js"
|
|
38
|
-
},
|
|
39
37
|
"engines": {
|
|
40
38
|
"node": ">=16"
|
|
41
39
|
}
|