promptgraph-mcp 2.7.0 → 2.7.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.
Files changed (2) hide show
  1. package/marketplace.js +7 -0
  2. package/package.json +1 -1
package/marketplace.js CHANGED
@@ -373,6 +373,13 @@ export async function installBundle(bundleId) {
373
373
  }
374
374
  throw e;
375
375
  }
376
+ // Update skill count cache with real on-disk count (post-filters)
377
+ const real = localSkillCount(bundle.repo_url);
378
+ if (real !== null) {
379
+ const cache = readSkillCountCache();
380
+ cache[bundle.repo_url] = { count: real, ts: Date.now() };
381
+ writeSkillCountCache(cache);
382
+ }
376
383
  return { success: true, bundle: bundle.name, type: 'repo_import', repo_url: bundle.repo_url };
377
384
  }
378
385
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptgraph-mcp",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "files": [
5
5
  "*.js",
6
6
  "commands/",