@revealui/cli 0.6.1 → 0.6.2

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