gitnexus 1.3.1 → 1.3.3

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.
@@ -298,12 +298,13 @@ export const analyzeCommand = async (inputPath, options) => {
298
298
  if (hookResult.registered) {
299
299
  console.log(` Hooks: ${hookResult.message}`);
300
300
  }
301
- // Show warnings (missing schema pairs, etc.) after the clean output
301
+ // Show a quiet summary if some edge types needed fallback insertion
302
302
  if (kuzuWarnings.length > 0) {
303
- console.log(`\n Warnings (${kuzuWarnings.length}):`);
304
- for (const w of kuzuWarnings) {
305
- console.log(` ${w}`);
306
- }
303
+ const totalFallback = kuzuWarnings.reduce((sum, w) => {
304
+ const m = w.match(/\((\d+) edges\)/);
305
+ return sum + (m ? parseInt(m[1]) : 0);
306
+ }, 0);
307
+ console.log(` Note: ${totalFallback} edges across ${kuzuWarnings.length} types inserted via fallback (schema will be updated in next release)`);
307
308
  }
308
309
  try {
309
310
  await fs.access(getGlobalRegistryPath());
@@ -42,7 +42,7 @@ export const walkRepositoryPaths = async (repoPath, onProgress) => {
42
42
  }
43
43
  }
44
44
  if (skippedLarge > 0) {
45
- console.warn(` Skipped ${skippedLarge} files larger than ${MAX_FILE_SIZE / 1024}KB`);
45
+ console.warn(` Skipped ${skippedLarge} large files (>${MAX_FILE_SIZE / 1024}KB, likely generated/vendored)`);
46
46
  }
47
47
  return entries;
48
48
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitnexus",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "Graph-powered code intelligence for AI agents. Index any codebase, query via MCP or CLI.",
5
5
  "author": "Abhigyan Patwari",
6
6
  "license": "PolyForm-Noncommercial-1.0.0",