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 +12 -0
- package/bin/stigmergy.cmd +1 -1
- package/package.json +3 -3
- package/src/main_english.js +1 -1
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
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stigmergy",
|
|
3
|
-
"version": "1.0.
|
|
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
|
|
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",
|
package/src/main_english.js
CHANGED
|
@@ -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.
|
|
823
|
+
version: '1.0.93',
|
|
824
824
|
initialized: true,
|
|
825
825
|
createdAt: new Date().toISOString(),
|
|
826
826
|
lastUpdated: new Date().toISOString(),
|