stigmergy 1.0.92 → 1.0.93

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/bin/stigmergy ADDED
@@ -0,0 +1,12 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ exec node "$basedir/../src/main_english.js" "$@"
package/bin/stigmergy.cmd CHANGED
@@ -2,4 +2,4 @@
2
2
  SETLOCAL
3
3
  SET "NODE_PATH=%~dp0\node_modules;%NODE_PATH%"
4
4
  SET "PATH=%~dp0;%PATH%"
5
- node "%~dp0node_modules\stigmergy\src\main_english.js" %*
5
+ node "%~dp0..\src\main_english.js" %*
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "stigmergy",
3
- "version": "1.0.92",
3
+ "version": "1.0.93",
4
4
  "description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
5
5
  "main": "src/main_english.js",
6
6
  "bin": {
7
- "stigmergy": "bin/stigmergy.cmd"
7
+ "stigmergy": "bin/stigmergy"
8
8
  },
9
9
  "scripts": {
10
10
  "start": "node src/main_english.js",
@@ -61,7 +61,7 @@
61
61
  ],
62
62
  "repository": {
63
63
  "type": "git",
64
- "url": "https://github.com/ptreezh/stigmergy-CLI-Multi-Agents.git"
64
+ "url": "git+https://github.com/ptreezh/stigmergy-CLI-Multi-Agents.git"
65
65
  },
66
66
  "author": "Stigmergy CLI Team",
67
67
  "license": "MIT",
@@ -820,7 +820,7 @@ class StigmergyInstaller {
820
820
 
821
821
  const configFile = path.join(this.configDir, 'config.json');
822
822
  const config = {
823
- version: '1.0.92',
823
+ version: '1.0.93',
824
824
  initialized: true,
825
825
  createdAt: new Date().toISOString(),
826
826
  lastUpdated: new Date().toISOString(),