@revealui/cli 0.6.1 → 0.6.3

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/cli.js CHANGED
@@ -13,7 +13,9 @@ async function runAgentStatusCommand() {
13
13
  logger.info(`Project root: ${projectRoot}`);
14
14
  logger.info(`Available: ${available ? "yes" : "no"}`);
15
15
  if (!available) {
16
- logger.warn("No LLM provider detected. Start BitNet, Ollama, or set GROQ_API_KEY.");
16
+ logger.warn(
17
+ "No LLM provider detected. Start BitNet, Ollama, or install an Ubuntu inference snap."
18
+ );
17
19
  }
18
20
  }
19
21
  async function runAgentHeadlessCommand(prompt) {
@@ -198,9 +200,6 @@ async function detectProvider() {
198
200
  }
199
201
  } catch {
200
202
  }
201
- if (process.env.GROQ_API_KEY) {
202
- return { available: true, provider: "groq", model: "llama-3.3-70b-versatile", projectRoot };
203
- }
204
203
  return { available: false, provider: "none", model: "none", projectRoot };
205
204
  }
206
205
  function buildMinimalInstructions() {
@@ -1445,7 +1444,7 @@ async function checkProLicense() {
1445
1444
  }
1446
1445
  function printBanner() {
1447
1446
  logger8.divider();
1448
- logger8.info(" RevealUI \u2014 The Agentic Business Runtime");
1447
+ logger8.info(" RevealUI \u2014 Agentic Business Runtime");
1449
1448
  logger8.info(" Build your business, not your boilerplate.");
1450
1449
  logger8.divider();
1451
1450
  logger8.info("");
@@ -1465,7 +1464,7 @@ function printPostCreateSummary(projectName) {
1465
1464
  logger8.info(` ./${projectName}/README.md \u2014 getting started guide`);
1466
1465
  logger8.info("");
1467
1466
  logger8.info(" RevealUI ecosystem:");
1468
- logger8.info(" Studio: Desktop companion for managing your dev environment");
1467
+ logger8.info(" Studio: Native AI experience \u2014 agent hub, local inference, dev environment");
1469
1468
  logger8.info(" Terminal: TUI client \u2014 run `revealui terminal install`");
1470
1469
  logger8.info(" CMS: Admin dashboard at your-domain.com/admin");
1471
1470
  logger8.info("");
@@ -1908,15 +1907,16 @@ var ENV_VAR_SPECS = [
1908
1907
  label: "Cron secret",
1909
1908
  required: false
1910
1909
  },
1911
- // AI
1910
+ // AI (open-model inference)
1912
1911
  {
1913
- key: "GROQ_API_KEY",
1914
- label: "Groq API key",
1915
- required: false,
1916
- validate: (v) => ({
1917
- valid: v.startsWith("gsk_"),
1918
- message: "Must start with gsk_"
1919
- })
1912
+ key: "BITNET_BASE_URL",
1913
+ label: "BitNet base URL",
1914
+ required: false
1915
+ },
1916
+ {
1917
+ key: "OLLAMA_BASE_URL",
1918
+ label: "Ollama base URL",
1919
+ required: false
1920
1920
  }
1921
1921
  ];
1922
1922
  function maskValue(value) {