fraim-framework 2.0.59 → 2.0.60

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.
@@ -42,17 +42,22 @@ class FraimLocalMCPServer {
42
42
  // Start from cwd and search upwards for .fraim directory
43
43
  let currentDir = process.cwd();
44
44
  const root = (0, path_1.parse)(currentDir).root;
45
+ this.log(`🔍 Starting search from: ${currentDir}`);
45
46
  while (currentDir !== root) {
46
47
  const fraimDir = (0, path_1.join)(currentDir, '.fraim');
48
+ this.log(` Checking: ${fraimDir}`);
47
49
  if ((0, fs_1.existsSync)(fraimDir)) {
50
+ this.log(`✅ Found .fraim at: ${currentDir}`);
48
51
  return currentDir;
49
52
  }
50
53
  currentDir = (0, path_1.dirname)(currentDir);
51
54
  }
55
+ this.log(`❌ No .fraim directory found in any parent directory`);
52
56
  return null;
53
57
  }
54
58
  loadConfig() {
55
59
  try {
60
+ this.log(`📍 Process started from: ${process.cwd()}`);
56
61
  // Try to find project root by searching for .fraim directory
57
62
  const projectDir = this.findProjectRoot() || process.cwd();
58
63
  const configPath = (0, path_1.join)(projectDir, '.fraim', 'config.json');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fraim-framework",
3
- "version": "2.0.59",
3
+ "version": "2.0.60",
4
4
  "description": "FRAIM v2: Framework for Rigor-based AI Management - Transform from solo developer to AI manager orchestrating production-ready code with enterprise-grade discipline",
5
5
  "main": "index.js",
6
6
  "bin": {