@skillkit/cli 1.7.3 → 1.7.5

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/dist/index.js CHANGED
@@ -642,7 +642,7 @@ function getLastAgents() {
642
642
  }
643
643
 
644
644
  // src/onboarding/index.ts
645
- var VERSION = "1.7.3";
645
+ var VERSION = "1.7.5";
646
646
  var AGENT_COUNT = 17;
647
647
  function welcome() {
648
648
  console.log(getLogo(VERSION, AGENT_COUNT));
@@ -1685,8 +1685,11 @@ var UICommand = class extends Command11 {
1685
1685
  if (err instanceof Error) {
1686
1686
  console.error("Error launching TUI:", err.message);
1687
1687
  console.error("");
1688
- console.error("Make sure you are running with Bun (>=1.2.0):");
1689
- console.error(" bun skillkit ui");
1688
+ console.error("The TUI requires Bun runtime (>=1.2.0). Run with:");
1689
+ console.error(" bun $(which skillkit) ui");
1690
+ console.error("");
1691
+ console.error("Or from source directory:");
1692
+ console.error(" bun ./apps/skillkit/dist/cli.js ui");
1690
1693
  console.error("");
1691
1694
  console.error("Install Bun from: https://bun.sh");
1692
1695
  }