promptgraph-mcp 1.9.8 → 1.9.9

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/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -113,8 +113,8 @@ if (args[0] === 'marketplace' && (args[1] === 'bundles' || args[1] === 'bundle')
113
113
 
114
114
  bundles.forEach((b, i) => {
115
115
  const stars = b.stars > 0 ? chalk.yellow('★ ' + b.stars) : chalk.gray('★ 0');
116
- const count = b.repo_url ? (b.skillCount || '?') : (b.skills?.length || 0);
117
- console.log(' ' + chalk.gray((i + 1) + '.') + ' ' + chalk.white.bold(b.id) + ' ' + stars + chalk.gray(' ' + count + ' skills'));
116
+ const countLabel = b.repo_url ? chalk.blue('GitHub repo') : chalk.gray((b.skills?.length || 0) + ' skills');
117
+ console.log(' ' + chalk.gray((i + 1) + '.') + ' ' + chalk.white.bold(b.id) + ' ' + stars + ' ' + countLabel);
118
118
  console.log(wrapB(b.description, 64, ' '));
119
119
  console.log(' ' + chalk.gray('includes: ') + (b.repo_url ? chalk.blue(b.repo_url) : chalk.gray((b.skills || []).join(', '))));
120
120
  if (b.tags?.length) console.log(' ' + purple(b.tags.map(t => '#' + t).join(' ')));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptgraph-mcp",
3
- "version": "1.9.8",
3
+ "version": "1.9.9",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "bin": {