stigmergy 1.3.2-beta.6 → 1.3.2-beta.7

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.3.2-beta.6",
3
+ "version": "1.3.2-beta.7",
4
4
  "description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -348,7 +348,7 @@ async function main() {
348
348
  });
349
349
 
350
350
  // Route commands to CLI tools
351
- for (const tool of ['claude', 'gemini', 'qwen', 'codebuddy', 'codex', 'iflow', 'qodercli', 'copilot', 'kode']) {
351
+ for (const tool of ['claude', 'gemini', 'qwen', 'codebuddy', 'codex', 'iflow', 'qodercli', 'copilot', 'kode', 'resumesession']) {
352
352
  program
353
353
  .command(tool)
354
354
  .description(`Use ${tool} CLI tool`)
@@ -30,7 +30,8 @@ class CLIPathDetector {
30
30
  'codebuddy': ['codebuddy'],
31
31
  'copilot': ['copilot'],
32
32
  'codex': ['codex'],
33
- 'kode': ['kode']
33
+ 'kode': ['kode'],
34
+ 'resumesession': ['resumesession']
34
35
  };
35
36
  }
36
37