skillverse 0.1.3 → 0.1.4

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/bin.js CHANGED
@@ -2019,7 +2019,7 @@ async function initializeStorage() {
2019
2019
  }
2020
2020
  }
2021
2021
  }
2022
- async function startServer(port = parseInt(process.env.PORT || "3001")) {
2022
+ async function startServer(port = 3001) {
2023
2023
  try {
2024
2024
  await initializeStorage();
2025
2025
  await ensureDatabaseInitialized();
@@ -2162,8 +2162,8 @@ async function prompt(question, hidden = false) {
2162
2162
  });
2163
2163
  }
2164
2164
  program.name("skillverse").description("SkillVerse - Local-first skill management platform for AI coding assistants").version("0.1.0");
2165
- program.command("start").description("Start the SkillVerse local server").option("-p, --port <number>", "Port to run server on", "3001").option("--no-open", "Do not open browser on start").action(async (options) => {
2166
- const port = parseInt(options.port, 10);
2165
+ program.command("start").description("Start the SkillVerse local server").option("--no-open", "Do not open browser on start").action(async (options) => {
2166
+ const port = 3001;
2167
2167
  console.log("");
2168
2168
  console.log(" \u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557");
2169
2169
  console.log(" \u2551 \u{1F680} SkillVerse CLI \u2551");