stigmergy 1.0.87 → 1.0.88
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 +1 -1
- package/src/main_english.js +5 -7
package/package.json
CHANGED
package/src/main_english.js
CHANGED
|
@@ -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.
|
|
6
|
+
* Version: 1.0.88
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
const { spawn, spawnSync } = require('child_process');
|
|
@@ -608,8 +608,7 @@ class StigmergyInstaller {
|
|
|
608
608
|
|
|
609
609
|
for (const templateFile of templateFiles) {
|
|
610
610
|
if (templateFile.endsWith('.j2')) {
|
|
611
|
-
const
|
|
612
|
-
const dstFileName = `${baseName}.md`;
|
|
611
|
+
const dstFileName = templateFile.replace('.j2', '');
|
|
613
612
|
const dstPath = path.join(projectDir, dstFileName);
|
|
614
613
|
|
|
615
614
|
// Read template and substitute variables
|
|
@@ -717,7 +716,6 @@ class StigmergyInstaller {
|
|
|
717
716
|
console.log('\n[OK] Hook deployment completed');
|
|
718
717
|
return true;
|
|
719
718
|
}
|
|
720
|
-
}
|
|
721
719
|
|
|
722
720
|
async initializeConfig() {
|
|
723
721
|
console.log('\n[CONFIG] Initializing Stigmergy configuration...');
|
|
@@ -727,7 +725,7 @@ class StigmergyInstaller {
|
|
|
727
725
|
|
|
728
726
|
const configFile = path.join(this.configDir, 'config.json');
|
|
729
727
|
const config = {
|
|
730
|
-
version: '1.0.
|
|
728
|
+
version: '1.0.88',
|
|
731
729
|
initialized: true,
|
|
732
730
|
createdAt: new Date().toISOString(),
|
|
733
731
|
lastUpdated: new Date().toISOString(),
|
|
@@ -781,7 +779,7 @@ async function main() {
|
|
|
781
779
|
|
|
782
780
|
if (args.length === 0 || args.includes('--help') || args.includes('-h')) {
|
|
783
781
|
console.log('Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System');
|
|
784
|
-
console.log('Version: 1.0.
|
|
782
|
+
console.log('Version: 1.0.88');
|
|
785
783
|
console.log('');
|
|
786
784
|
console.log('[SYSTEM] Automated Installation and Deployment System');
|
|
787
785
|
console.log('');
|
|
@@ -812,7 +810,7 @@ async function main() {
|
|
|
812
810
|
switch (command) {
|
|
813
811
|
case 'version':
|
|
814
812
|
case '--version':
|
|
815
|
-
console.log('Stigmergy CLI v1.0.
|
|
813
|
+
console.log('Stigmergy CLI v1.0.88');
|
|
816
814
|
break;
|
|
817
815
|
|
|
818
816
|
case 'status':
|