stigmergy 1.3.16-beta.0 → 1.3.16-beta.1

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.16-beta.0",
3
+ "version": "1.3.16-beta.1",
4
4
  "description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -29,8 +29,20 @@ const fs = require('fs');
29
29
  const path = require('path');
30
30
  const os = require('os');
31
31
 
32
- // Load shared path configuration
33
- const pathConfigLoader = require(path.join(__dirname, 'path-config-loader.js'));
32
+ // Embedded path configuration for CLI session paths
33
+ const getAllCLISessionPaths = () => {
34
+ const homeDir = os.homedir();
35
+ return {
36
+ claude: [path.join(homeDir, '.claude', 'projects')],
37
+ gemini: [path.join(homeDir, '.config', 'gemini', 'tmp')],
38
+ qwen: [path.join(homeDir, '.qwen', 'projects')],
39
+ iflow: [path.join(homeDir, '.iflow', 'projects')],
40
+ qodercli: [path.join(homeDir, '.qoder', 'projects')],
41
+ codebuddy: [path.join(homeDir, '.codebuddy')],
42
+ codex: [path.join(homeDir, '.config', 'codex')],
43
+ kode: [path.join(homeDir, '.kode', 'projects')]
44
+ };
45
+ };
34
46
 
35
47
  // Embedded ResumeSession Core Functionality
36
48
 
@@ -212,7 +224,7 @@ class SessionScanner {
212
224
 
213
225
  scanAllCLISessions(projectPath) {
214
226
  const allSessions = [];
215
- const cliPathsMap = pathConfigLoader.getAllCLISessionPaths();
227
+ const cliPathsMap = getAllCLISessionPaths();
216
228
 
217
229
  for (const [cliType, sessionsPaths] of Object.entries(cliPathsMap)) {
218
230
  for (const sessionsPath of sessionsPaths) {