stigmergy 1.0.99 → 1.1.0

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/README.md CHANGED
@@ -47,6 +47,23 @@ Stigmergy CLI enhances the following AI CLI tools:
47
47
  - **GitHub Copilot CLI** - Microsoft's Copilot
48
48
  - **OpenAI Codex CLI** - OpenAI's code completion
49
49
 
50
+ ## Dual Implementation Architecture
51
+
52
+ Stigmergy CLI features a unique dual implementation architecture:
53
+
54
+ ### Node.js First Approach
55
+ - **Primary Implementation**: Native Node.js coordination layer
56
+ - **No System Python Required**: Works without Python installation
57
+ - **Graceful Degradation**: Falls back to Python when needed
58
+ - **Enhanced Performance**: Optimized for modern Node.js environments
59
+
60
+ ### Python Fallback
61
+ - **Secondary Implementation**: Python-based coordination layer
62
+ - **Legacy Support**: Maintains compatibility with existing installations
63
+ - **Automatic Detection**: Seamlessly switches based on system capabilities
64
+
65
+ This architecture ensures maximum compatibility and reliability across different environments.
66
+
50
67
  ## Usage
51
68
 
52
69
  ### Basic Commands
package/bin/stigmergy CHANGED
@@ -18,7 +18,7 @@ process.on('uncaughtException', (error) => {
18
18
  });
19
19
 
20
20
  // Get the path to the main script
21
- const mainScript = path.join(__dirname, '..', 'src', 'main_english.js');
21
+ const mainScript = path.join(__dirname, '..', 'src', 'index.js');
22
22
 
23
23
  // Spawn the Node.js process with the main script and all arguments
24
24
  const child = spawn(process.execPath, [mainScript, ...process.argv.slice(2)], {
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 "%~dp0\..\src\main_english.js" %*
5
+ node "%~dp0\..\src\index.js" %*