promptgraph-mcp 2.9.49 → 2.9.51

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/package.json +1 -1
  2. package/tui.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptgraph-mcp",
3
- "version": "2.9.49",
3
+ "version": "2.9.51",
4
4
  "files": [
5
5
  "*.js",
6
6
  "commands/",
package/tui.js CHANGED
@@ -194,7 +194,8 @@ function render(state, installedSet = new Set()) {
194
194
  : dim(' Enter') + chalk.white(' install') + dim(' ');
195
195
  write(instLabel + dim('Tab') + ' all/skills/bundles/recent ' + dim('/') + ' search ' + dim('q') + ' quit' + CLEAR_EOL + '\n');
196
196
  const ghUrl = sel.repo_url ? chalk.hex('#3B82F6')(` ↗ github.com/${sel.repo_url}`) : '';
197
- write(dim(` pg ${installCmd}`) + ghUrl + CLEAR_EOL + '\n');
197
+ const toolsNote = sel.has_tools ? chalk.hex('#F59E0B')(' 🔧 includes scripts (py/sh/js)') : '';
198
+ write(dim(` → pg ${installCmd}`) + ghUrl + toolsNote + CLEAR_EOL + '\n');
198
199
  } else if (state.confirming) {
199
200
  write(chalk.red.bold(' Remove ') + chalk.white(state.confirming.name) + chalk.red('? ') +
200
201
  chalk.white.bold('[y]') + chalk.gray('es ') + chalk.white.bold('[n]') + chalk.gray('o') + CLEAR_EOL + '\n');