bf-skills 1.3.0 → 1.3.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/dist/cli.mjs +3 -3
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -396,11 +396,11 @@ async function runInstall(source, opts) {
396
396
  } else if (opts.yes) {
397
397
  selectedSkills = allSkills;
398
398
  } else {
399
- const selected = await p.autocompleteMultiselect({
400
- message: `Pick skills to install (${allSkills.length} available \u2014 type to search)`,
399
+ const selected = await p.multiselect({
400
+ message: `Pick skills to install (${allSkills.length} available)`,
401
401
  options: allSkills.map((s) => ({
402
402
  value: s.name,
403
- label: `${skillEmoji(s.name)} ${pc.blue(s.name)}`,
403
+ label: `${skillEmoji(s.name)} ${s.name}`,
404
404
  hint: s.description
405
405
  })),
406
406
  required: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bf-skills",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "BF Skills installer — Building the Future of Business with AI",
5
5
  "type": "module",
6
6
  "engines": {