stigmergy 1.0.85 → 1.0.86

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,6 +1,6 @@
1
1
  {
2
2
  "name": "stigmergy",
3
- "version": "1.0.85",
3
+ "version": "1.0.86",
4
4
  "type": "commonjs",
5
5
  "description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
6
6
  "main": "src/main_english.js",
@@ -22,7 +22,7 @@
22
22
  "dev": "node --watch src/index.js",
23
23
  "lint": "eslint src/",
24
24
  "format": "prettier --write src/",
25
- "postinstall": "node src/main_english.js setup"
25
+ "postinstall": "node src/main_english.js auto-install"
26
26
  },
27
27
  "keywords": [
28
28
  "ai",
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System
5
5
  * International Version - Pure English & ANSI Only
6
- * Version: 1.0.85
6
+ * Version: 1.0.86
7
7
  */
8
8
 
9
9
  const { spawn, spawnSync } = require('child_process');
@@ -563,7 +563,7 @@ class StigmergyInstaller {
563
563
 
564
564
  const configFile = path.join(this.configDir, 'config.json');
565
565
  const config = {
566
- version: '1.0.85',
566
+ version: '1.0.86',
567
567
  initialized: true,
568
568
  createdAt: new Date().toISOString(),
569
569
  lastUpdated: new Date().toISOString(),
@@ -617,7 +617,7 @@ async function main() {
617
617
 
618
618
  if (args.length === 0 || args.includes('--help') || args.includes('-h')) {
619
619
  console.log('Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System');
620
- console.log('Version: 1.0.85');
620
+ console.log('Version: 1.0.86');
621
621
  console.log('');
622
622
  console.log('[SYSTEM] Automated Installation and Deployment System');
623
623
  console.log('');
@@ -648,7 +648,7 @@ async function main() {
648
648
  switch (command) {
649
649
  case 'version':
650
650
  case '--version':
651
- console.log('Stigmergy CLI v1.0.85');
651
+ console.log('Stigmergy CLI v1.0.86');
652
652
  break;
653
653
 
654
654
  case 'status':