stigmergy 1.3.1-beta → 1.3.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 CHANGED
@@ -1,146 +1,146 @@
1
- {
2
- "name": "stigmergy",
3
- "version": "1.3.1-beta",
4
- "description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
5
- "main": "src/index.js",
6
- "bin": {
7
- "stigmergy": "bin/stigmergy"
8
- },
9
- "scripts": {
10
- "start": "node src/index.js",
11
- "test": "node scripts/test-runner.js",
12
- "test:unit": "jest tests/unit --coverage",
13
- "test:integration": "jest tests/integration --coverage",
14
- "test:regression": "jest tests/regression --coverage",
15
- "test:performance": "jest tests/unit --testNamePattern=\"Performance\" --verbose",
16
- "test:coverage": "jest --coverage",
17
- "test:e2e": "jest tests/e2e",
18
- "test:core": "jest tests/unit/cli-tool-detector.test.js tests/unit/smart-router-core.test.js tests/unit/parameter-handler-core.test.js",
19
- "test:layers": "node scripts/run-layered-tests.js",
20
- "test:layers-skip-e2e": "node scripts/run-layered-tests.js --skip-e2e",
21
- "test:rest-client": "node test/rest_client.test.js",
22
- "test:nodejs-coordination": "jest tests/unit/nodejs-coordination-layer.test.js",
23
- "test:nodejs-hooks": "jest tests/unit/nodejs-hook-deployment.test.js",
24
- "test:nodejs-integration": "jest tests/unit/nodejs-cli-integration.test.js",
25
- "test:availability": "node -e \"const CLIAvailabilityChecker = require('./src/test/cli-availability-checker'); const checker = new CLIAvailabilityChecker(); checker.printAvailabilityReport()\"",
26
- "example:rest-client": "node examples/rest_client_example.js",
27
- "coverage": "jest --coverage",
28
- "coverage:unit": "jest tests/unit --coverage",
29
- "coverage:integration": "jest tests/integration --coverage",
30
- "coverage:regression": "jest tests/regression --coverage",
31
- "test:watch": "jest --watch",
32
- "build": "node scripts/build.js",
33
- "deploy": "node src/index.js deploy",
34
- "status": "node src/index.js status",
35
- "scan": "node src/index.js scan",
36
- "init": "node src/index.js init",
37
- "clean": "node cleanup.js",
38
- "validate": "node src/index.js validate",
39
- "dev": "node --watch src/index.js",
40
- "lint": "eslint src/",
41
- "format": "prettier --write src/",
42
- "fix-node-conflict": "node fix-node-conflict.js",
43
- "diagnostic": "node diagnostic.js",
44
- "deps-analyze": "node scripts/dependency-analyzer.js",
45
- "deps-check": "npx depcheck",
46
- "deps-update": "npx npm-check-updates",
47
- "deps-clean": "npm prune && npm cache clean --force",
48
- "path-fixer": "node path-fixer.js",
49
- "emergency-clean": "node emergency-cleanup.js",
50
- "test:conflict-prevention": "node test/conflict-prevention-test.js",
51
- "test:comprehensive": "node scripts/run-comprehensive-tests.js",
52
- "test:quick": "node scripts/run-quick-tests.js",
53
- "post-deployment-config": "node scripts/post-deployment-config.js",
54
- "preinstall": "node scripts/preinstall-check.js",
55
- "postinstall": "node src/index.js auto-install",
56
- "preuninstall": "node scripts/preuninstall.js",
57
- "postuninstall": "node scripts/postuninstall.js",
58
- "docs:update": "node scripts/generate-cli-docs.js",
59
- "install": "node src/index.js install",
60
- "install:check": "node src/index.js status",
61
- "install:verbose": "node src/index.js install --verbose",
62
- "install:force": "node src/index.js install --force",
63
- "fix-perms": "node fix-permissions.js --auto",
64
- "fix-perms:check": "node fix-permissions.js --check"
65
- },
66
- "keywords": [
67
- "ai",
68
- "cli",
69
- "collaboration",
70
- "multi-agents",
71
- "nodejs-first",
72
- "ansi-encoding",
73
- "cross-cli",
74
- "claude-cli",
75
- "gemini-cli",
76
- "qwen-cli",
77
- "iflow-cli",
78
- "real-testing",
79
- "python-free"
80
- ],
81
- "workspaces": [
82
- "packages/*"
83
- ],
84
- "files": [
85
- "src/**/*.js",
86
- "config/**/*.json",
87
- "templates/**/*.md",
88
- "skills/**/*",
89
- "bin/**/*",
90
- "test/**/*.js",
91
- "scripts/**/*.js",
92
- "examples/**/*",
93
- "docs/**/*",
94
- "package.json",
95
- "README.md",
96
- "LICENSE",
97
- "STIGMERGY.md"
98
- ],
99
- "repository": {
100
- "type": "git",
101
- "url": "git+https://github.com/ptreezh/stigmergy-CLI-Multi-Agents.git"
102
- },
103
- "author": "Stigmergy CLI Team",
104
- "contributors": [
105
- "Claude",
106
- "Qwen",
107
- "iFlow",
108
- "QoderCLI",
109
- "GLM4.5",
110
- "Other AI Systems"
111
- ],
112
- "license": "MIT",
113
- "engines": {
114
- "node": ">=16.0.0"
115
- },
116
- "dependencies": {
117
- "chalk": "^4.1.2",
118
- "commander": "^14.0.2",
119
- "inquirer": "^13.1.0",
120
- "js-yaml": "^4.1.1",
121
- "semver": "^7.7.3"
122
- },
123
- "devDependencies": {
124
- "eslint": "^9.39.2",
125
- "jest": "^30.2.0",
126
- "prettier": "^3.7.4",
127
- "rimraf": "^6.1.2"
128
- },
129
- "optionalDependencies": {},
130
- "peerDependencies": {},
131
- "bundledDependencies": [],
132
- "config": {
133
- "encoding": "ansi",
134
- "platform": "nodejs-first",
135
- "python-free": true,
136
- "real-testing": true,
137
- "unicode-free": true
138
- },
139
- "npx": {
140
- "stigmergy": "src/index.js"
141
- },
142
- "homepage": "https://github.com/ptreezh/stigmergy-CLI-Multi-Agents#readme",
143
- "bugs": {
144
- "url": "https://github.com/ptreezh/stigmergy-CLI-Multi-Agents/issues"
145
- }
146
- }
1
+ {
2
+ "name": "stigmergy",
3
+ "version": "1.3.1",
4
+ "description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
5
+ "main": "src/index.js",
6
+ "bin": {
7
+ "stigmergy": "bin/stigmergy"
8
+ },
9
+ "scripts": {
10
+ "start": "node src/index.js",
11
+ "test": "node scripts/test-runner.js",
12
+ "test:unit": "jest tests/unit --coverage",
13
+ "test:integration": "jest tests/integration --coverage",
14
+ "test:regression": "jest tests/regression --coverage",
15
+ "test:performance": "jest tests/unit --testNamePattern=\"Performance\" --verbose",
16
+ "test:coverage": "jest --coverage",
17
+ "test:e2e": "jest tests/e2e",
18
+ "test:core": "jest tests/unit/cli-tool-detector.test.js tests/unit/smart-router-core.test.js tests/unit/parameter-handler-core.test.js",
19
+ "test:layers": "node scripts/run-layered-tests.js",
20
+ "test:layers-skip-e2e": "node scripts/run-layered-tests.js --skip-e2e",
21
+ "test:rest-client": "node test/rest_client.test.js",
22
+ "test:nodejs-coordination": "jest tests/unit/nodejs-coordination-layer.test.js",
23
+ "test:nodejs-hooks": "jest tests/unit/nodejs-hook-deployment.test.js",
24
+ "test:nodejs-integration": "jest tests/unit/nodejs-cli-integration.test.js",
25
+ "test:availability": "node -e \"const CLIAvailabilityChecker = require('./src/test/cli-availability-checker'); const checker = new CLIAvailabilityChecker(); checker.printAvailabilityReport()\"",
26
+ "example:rest-client": "node examples/rest_client_example.js",
27
+ "coverage": "jest --coverage",
28
+ "coverage:unit": "jest tests/unit --coverage",
29
+ "coverage:integration": "jest tests/integration --coverage",
30
+ "coverage:regression": "jest tests/regression --coverage",
31
+ "test:watch": "jest --watch",
32
+ "build": "node scripts/build.js",
33
+ "deploy": "node src/index.js deploy",
34
+ "status": "node src/index.js status",
35
+ "scan": "node src/index.js scan",
36
+ "init": "node src/index.js init",
37
+ "clean": "node cleanup.js",
38
+ "validate": "node src/index.js validate",
39
+ "dev": "node --watch src/index.js",
40
+ "lint": "eslint src/",
41
+ "format": "prettier --write src/",
42
+ "fix-node-conflict": "node fix-node-conflict.js",
43
+ "diagnostic": "node diagnostic.js",
44
+ "deps-analyze": "node scripts/dependency-analyzer.js",
45
+ "deps-check": "npx depcheck",
46
+ "deps-update": "npx npm-check-updates",
47
+ "deps-clean": "npm prune && npm cache clean --force",
48
+ "path-fixer": "node path-fixer.js",
49
+ "emergency-clean": "node emergency-cleanup.js",
50
+ "test:conflict-prevention": "node test/conflict-prevention-test.js",
51
+ "test:comprehensive": "node scripts/run-comprehensive-tests.js",
52
+ "test:quick": "node scripts/run-quick-tests.js",
53
+ "post-deployment-config": "node scripts/post-deployment-config.js",
54
+ "preinstall": "node scripts/preinstall-check.js",
55
+ "postinstall": "node src/index.js auto-install",
56
+ "preuninstall": "node scripts/preuninstall.js",
57
+ "postuninstall": "node scripts/postuninstall.js",
58
+ "docs:update": "node scripts/generate-cli-docs.js",
59
+ "install": "node src/index.js install",
60
+ "install:check": "node src/index.js status",
61
+ "install:verbose": "node src/index.js install --verbose",
62
+ "install:force": "node src/index.js install --force",
63
+ "fix-perms": "node fix-permissions.js --auto",
64
+ "fix-perms:check": "node fix-permissions.js --check"
65
+ },
66
+ "keywords": [
67
+ "ai",
68
+ "cli",
69
+ "collaboration",
70
+ "multi-agents",
71
+ "nodejs-first",
72
+ "ansi-encoding",
73
+ "cross-cli",
74
+ "claude-cli",
75
+ "gemini-cli",
76
+ "qwen-cli",
77
+ "iflow-cli",
78
+ "real-testing",
79
+ "python-free"
80
+ ],
81
+ "workspaces": [
82
+ "packages/*"
83
+ ],
84
+ "files": [
85
+ "src/**/*.js",
86
+ "config/**/*.json",
87
+ "templates/**/*.md",
88
+ "skills/**/*",
89
+ "bin/**/*",
90
+ "test/**/*.js",
91
+ "scripts/**/*.js",
92
+ "examples/**/*",
93
+ "docs/**/*",
94
+ "package.json",
95
+ "README.md",
96
+ "LICENSE",
97
+ "STIGMERGY.md"
98
+ ],
99
+ "repository": {
100
+ "type": "git",
101
+ "url": "git+https://github.com/ptreezh/stigmergy-CLI-Multi-Agents.git"
102
+ },
103
+ "author": "Stigmergy CLI Team",
104
+ "contributors": [
105
+ "Claude",
106
+ "Qwen",
107
+ "iFlow",
108
+ "QoderCLI",
109
+ "GLM4.5",
110
+ "Other AI Systems"
111
+ ],
112
+ "license": "MIT",
113
+ "engines": {
114
+ "node": ">=16.0.0"
115
+ },
116
+ "dependencies": {
117
+ "chalk": "^4.1.2",
118
+ "commander": "^14.0.2",
119
+ "inquirer": "^13.1.0",
120
+ "js-yaml": "^4.1.1",
121
+ "semver": "^7.7.3"
122
+ },
123
+ "devDependencies": {
124
+ "eslint": "^9.39.2",
125
+ "jest": "^30.2.0",
126
+ "prettier": "^3.7.4",
127
+ "rimraf": "^6.1.2"
128
+ },
129
+ "optionalDependencies": {},
130
+ "peerDependencies": {},
131
+ "bundledDependencies": [],
132
+ "config": {
133
+ "encoding": "ansi",
134
+ "platform": "nodejs-first",
135
+ "python-free": true,
136
+ "real-testing": true,
137
+ "unicode-free": true
138
+ },
139
+ "npx": {
140
+ "stigmergy": "src/index.js"
141
+ },
142
+ "homepage": "https://github.com/ptreezh/stigmergy-CLI-Multi-Agents#readme",
143
+ "bugs": {
144
+ "url": "https://github.com/ptreezh/stigmergy-CLI-Multi-Agents/issues"
145
+ }
146
+ }