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.
- package/package.json +1 -1
- package/tui.js +2 -1
package/package.json
CHANGED
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
|
-
|
|
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');
|