stigmergy 1.10.6 → 1.10.7
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 +102 -102
- package/scripts/deploy-complete-superpowers.js +774 -729
- package/scripts/postinstall-deploy.js +30 -9
- package/src/cli/commands/project.js +885 -864
package/package.json
CHANGED
|
@@ -1,102 +1,102 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "stigmergy",
|
|
3
|
-
"version": "1.10.
|
|
4
|
-
"description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
|
|
5
|
-
"main": "src/index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"stigmergy": "bin/stigmergy",
|
|
8
|
-
"stigmergy-gateway": "bin/stigmergy-gateway"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"bin/**",
|
|
12
|
-
"src/**",
|
|
13
|
-
"scripts/**",
|
|
14
|
-
"config/**",
|
|
15
|
-
"dist/orchestration/**",
|
|
16
|
-
"skills/**",
|
|
17
|
-
"README.md",
|
|
18
|
-
"LICENSE"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"postinstall": "node scripts/postinstall-deploy.js",
|
|
22
|
-
"start": "node src/index.js",
|
|
23
|
-
"build:orchestration": "tsc --project tsconfig.build.json",
|
|
24
|
-
"verify:package": "node scripts/verify-package-content.js",
|
|
25
|
-
"concurrent": "node src/index.js concurrent",
|
|
26
|
-
"interactive": "node src/index.js interactive",
|
|
27
|
-
"status": "node src/index.js status",
|
|
28
|
-
"scan": "node src/index.js scan",
|
|
29
|
-
"init": "node src/index.js init",
|
|
30
|
-
"setup": "node src/index.js setup",
|
|
31
|
-
"call": "node src/index.js call",
|
|
32
|
-
"clean": "node cleanup.js",
|
|
33
|
-
"test": "node scripts/run-tests.js",
|
|
34
|
-
"test:unit": "jest tests/unit --coverage",
|
|
35
|
-
"test:integration": "jest tests/integration",
|
|
36
|
-
"test:e2e": "jest tests/e2e",
|
|
37
|
-
"test:automation": "jest tests/automation",
|
|
38
|
-
"test:functional": "jest tests/functional",
|
|
39
|
-
"test:all": "node scripts/run-tests.js all",
|
|
40
|
-
"test:watch": "jest --watch",
|
|
41
|
-
"test:coverage": "jest --coverage",
|
|
42
|
-
"test:report": "jest --coverage --coverageReporters=html",
|
|
43
|
-
"lint": "eslint src/**/*.js",
|
|
44
|
-
"format": "prettier --write src/**/*.js"
|
|
45
|
-
},
|
|
46
|
-
"keywords": [
|
|
47
|
-
"ai",
|
|
48
|
-
"cli",
|
|
49
|
-
"collaboration",
|
|
50
|
-
"multi-agents",
|
|
51
|
-
"nodejs-first",
|
|
52
|
-
"cross-cli",
|
|
53
|
-
"claude-cli",
|
|
54
|
-
"gemini-cli",
|
|
55
|
-
"qwen-cli",
|
|
56
|
-
"iflow-cli",
|
|
57
|
-
"kilocode-cli",
|
|
58
|
-
"real-testing",
|
|
59
|
-
"python-free"
|
|
60
|
-
],
|
|
61
|
-
"engines": {
|
|
62
|
-
"node": ">=16.0.0"
|
|
63
|
-
},
|
|
64
|
-
"dependencies": {
|
|
65
|
-
"chalk": "^4.1.2",
|
|
66
|
-
"commander": "^14.0.2",
|
|
67
|
-
"cron-parser": "^4.9.0",
|
|
68
|
-
"inquirer": "^13.1.0",
|
|
69
|
-
"js-yaml": "^4.1.1",
|
|
70
|
-
"semver": "^7.7.3"
|
|
71
|
-
},
|
|
72
|
-
"devDependencies": {
|
|
73
|
-
"@babel/core": "^7.28.6",
|
|
74
|
-
"@babel/preset-env": "^7.28.6",
|
|
75
|
-
"@types/jest": "^30.0.0",
|
|
76
|
-
"@types/node": "^25.0.9",
|
|
77
|
-
"babel-jest": "^30.2.0",
|
|
78
|
-
"eslint": "^9.39.2",
|
|
79
|
-
"fs-extra": "^11.3.3",
|
|
80
|
-
"jest": "^30.2.0",
|
|
81
|
-
"jest-junit": "^16.0.0",
|
|
82
|
-
"prettier": "^3.7.4",
|
|
83
|
-
"rimraf": "^6.1.2",
|
|
84
|
-
"ts-node": "^10.9.2",
|
|
85
|
-
"typescript": "^5.9.3"
|
|
86
|
-
},
|
|
87
|
-
"repository": {
|
|
88
|
-
"type": "git",
|
|
89
|
-
"url": "git+https://github.com/ptreezh/stigmergy-CLI-Multi-Agents.git"
|
|
90
|
-
},
|
|
91
|
-
"author": "Stigmergy CLI Team",
|
|
92
|
-
"contributors": [
|
|
93
|
-
"Claude",
|
|
94
|
-
"Qwen",
|
|
95
|
-
"iFlow",
|
|
96
|
-
"QoderCLI",
|
|
97
|
-
"GLM4.5",
|
|
98
|
-
"KiloCode",
|
|
99
|
-
"Other AI Systems"
|
|
100
|
-
],
|
|
101
|
-
"license": "MIT"
|
|
102
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "stigmergy",
|
|
3
|
+
"version": "1.10.7",
|
|
4
|
+
"description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"stigmergy": "bin/stigmergy",
|
|
8
|
+
"stigmergy-gateway": "bin/stigmergy-gateway"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/**",
|
|
12
|
+
"src/**",
|
|
13
|
+
"scripts/**",
|
|
14
|
+
"config/**",
|
|
15
|
+
"dist/orchestration/**",
|
|
16
|
+
"skills/**",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"postinstall": "node scripts/postinstall-deploy.js",
|
|
22
|
+
"start": "node src/index.js",
|
|
23
|
+
"build:orchestration": "tsc --project tsconfig.build.json",
|
|
24
|
+
"verify:package": "node scripts/verify-package-content.js",
|
|
25
|
+
"concurrent": "node src/index.js concurrent",
|
|
26
|
+
"interactive": "node src/index.js interactive",
|
|
27
|
+
"status": "node src/index.js status",
|
|
28
|
+
"scan": "node src/index.js scan",
|
|
29
|
+
"init": "node src/index.js init",
|
|
30
|
+
"setup": "node src/index.js setup",
|
|
31
|
+
"call": "node src/index.js call",
|
|
32
|
+
"clean": "node cleanup.js",
|
|
33
|
+
"test": "node scripts/run-tests.js",
|
|
34
|
+
"test:unit": "jest tests/unit --coverage",
|
|
35
|
+
"test:integration": "jest tests/integration",
|
|
36
|
+
"test:e2e": "jest tests/e2e",
|
|
37
|
+
"test:automation": "jest tests/automation",
|
|
38
|
+
"test:functional": "jest tests/functional",
|
|
39
|
+
"test:all": "node scripts/run-tests.js all",
|
|
40
|
+
"test:watch": "jest --watch",
|
|
41
|
+
"test:coverage": "jest --coverage",
|
|
42
|
+
"test:report": "jest --coverage --coverageReporters=html",
|
|
43
|
+
"lint": "eslint src/**/*.js",
|
|
44
|
+
"format": "prettier --write src/**/*.js"
|
|
45
|
+
},
|
|
46
|
+
"keywords": [
|
|
47
|
+
"ai",
|
|
48
|
+
"cli",
|
|
49
|
+
"collaboration",
|
|
50
|
+
"multi-agents",
|
|
51
|
+
"nodejs-first",
|
|
52
|
+
"cross-cli",
|
|
53
|
+
"claude-cli",
|
|
54
|
+
"gemini-cli",
|
|
55
|
+
"qwen-cli",
|
|
56
|
+
"iflow-cli",
|
|
57
|
+
"kilocode-cli",
|
|
58
|
+
"real-testing",
|
|
59
|
+
"python-free"
|
|
60
|
+
],
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=16.0.0"
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"chalk": "^4.1.2",
|
|
66
|
+
"commander": "^14.0.2",
|
|
67
|
+
"cron-parser": "^4.9.0",
|
|
68
|
+
"inquirer": "^13.1.0",
|
|
69
|
+
"js-yaml": "^4.1.1",
|
|
70
|
+
"semver": "^7.7.3"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@babel/core": "^7.28.6",
|
|
74
|
+
"@babel/preset-env": "^7.28.6",
|
|
75
|
+
"@types/jest": "^30.0.0",
|
|
76
|
+
"@types/node": "^25.0.9",
|
|
77
|
+
"babel-jest": "^30.2.0",
|
|
78
|
+
"eslint": "^9.39.2",
|
|
79
|
+
"fs-extra": "^11.3.3",
|
|
80
|
+
"jest": "^30.2.0",
|
|
81
|
+
"jest-junit": "^16.0.0",
|
|
82
|
+
"prettier": "^3.7.4",
|
|
83
|
+
"rimraf": "^6.1.2",
|
|
84
|
+
"ts-node": "^10.9.2",
|
|
85
|
+
"typescript": "^5.9.3"
|
|
86
|
+
},
|
|
87
|
+
"repository": {
|
|
88
|
+
"type": "git",
|
|
89
|
+
"url": "git+https://github.com/ptreezh/stigmergy-CLI-Multi-Agents.git"
|
|
90
|
+
},
|
|
91
|
+
"author": "Stigmergy CLI Team",
|
|
92
|
+
"contributors": [
|
|
93
|
+
"Claude",
|
|
94
|
+
"Qwen",
|
|
95
|
+
"iFlow",
|
|
96
|
+
"QoderCLI",
|
|
97
|
+
"GLM4.5",
|
|
98
|
+
"KiloCode",
|
|
99
|
+
"Other AI Systems"
|
|
100
|
+
],
|
|
101
|
+
"license": "MIT"
|
|
102
|
+
}
|