create-volt 0.50.0 → 0.51.0

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/CHANGELOG.md CHANGED
@@ -4,6 +4,15 @@ All notable changes to `create-volt` are documented here. The format follows
4
4
  [Keep a Changelog](https://keepachangelog.com/), and this project adheres to
5
5
  [Semantic Versioning](https://semver.org/).
6
6
 
7
+ ## [0.51.0] - 2026-06-30
8
+
9
+ ### Added
10
+ - **Generate a hosted-AI token from the config.** The wizard's AI section has a
11
+ **Generate a free hosted token** button: it self-registers with the voltjs.com
12
+ gateway (new public, rate-limited `POST /api/register`) and writes
13
+ `VOLT_AI_TOKEN` to `.env` on Apply. One click to the free-capped/pay-as-you-go
14
+ hosted tier when you have no key of your own.
15
+
7
16
  ## [0.50.0] - 2026-06-30
8
17
 
9
18
  ### Added
@@ -666,6 +675,7 @@ All notable changes to `create-volt` are documented here. The format follows
666
675
  watching and full-page hot reload. Supports `--skip-install` and `--force`,
667
676
  and auto-detects npm / pnpm / yarn / bun for the install step.
668
677
 
678
+ [0.51.0]: https://github.com/MIR-2025/volt/releases/tag/v0.51.0
669
679
  [0.50.0]: https://github.com/MIR-2025/volt/releases/tag/v0.50.0
670
680
  [0.49.0]: https://github.com/MIR-2025/volt/releases/tag/v0.49.0
671
681
  [0.48.3]: https://github.com/MIR-2025/volt/releases/tag/v0.48.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-volt",
3
- "version": "0.50.0",
3
+ "version": "0.51.0",
4
4
  "description": "Scaffold a new Volt app — no-build, signals-based UI with Socket.io hot reload.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -344,6 +344,17 @@ function startSetup() {
344
344
  }
345
345
  return;
346
346
  }
347
+ // --- generate a free hosted-AI token from the gateway (self-service) ---
348
+ if (req.method === "POST" && p === "/setup/gen-token") {
349
+ res.setHeader("Content-Type", "application/json");
350
+ const env = readEnvFile();
351
+ const base = (env.VOLT_AI_GATEWAY || "https://voltjs.com/api/ai").replace(/\/api\/ai\/?$/, "");
352
+ fetch(base + "/api/register", { method: "POST", headers: { "content-type": "application/json" }, body: JSON.stringify({ app: env.SITE_NAME || "volt-app" }) })
353
+ .then((r) => r.json())
354
+ .then((j) => res.end(JSON.stringify(j)))
355
+ .catch(() => res.end(JSON.stringify({ ok: false, error: "gateway unreachable" })));
356
+ return;
357
+ }
347
358
  // --- AI proxy for the in-config editor (RTEPro). Uses a local provider key
348
359
  // (BYO) when set; otherwise falls back to the voltjs.com gateway via
349
360
  // VOLT_AI_TOKEN (free-capped, then pay-as-you-go on the host's key). The
@@ -34,6 +34,7 @@ const state = signal({
34
34
  theme: current.THEME || "",
35
35
  aiProvider: current.AI_PROVIDER || "anthropic",
36
36
  aiKey: current.ANTHROPIC_API_KEY || current.OPENAI_API_KEY || current.GEMINI_API_KEY || "",
37
+ aiToken: current.VOLT_AI_TOKEN || "",
37
38
  });
38
39
  const set = (patch) => state({ ...state(), ...patch });
39
40
  const toggle = (n) => state({ ...state(), addons: { ...state().addons, [n]: !state().addons[n] } });
@@ -82,6 +83,7 @@ function genEnv(s) {
82
83
  const keyVar = { anthropic: "ANTHROPIC_API_KEY", openai: "OPENAI_API_KEY", gemini: "GEMINI_API_KEY" }[s.aiProvider] || "ANTHROPIC_API_KEY";
83
84
  out.push(`${keyVar}=${clean(s.aiKey)}`);
84
85
  }
86
+ if (s.aiToken) out.push(`VOLT_AI_TOKEN=${clean(s.aiToken)}`); // hosted-tier token (used when no local key)
85
87
  if (eff.includes("db")) {
86
88
  out.push(`DB_DRIVER=${clean(s.dbDriver)}`);
87
89
  if (s.dbDriver === "mongodb") {
@@ -266,6 +268,8 @@ const aiSettings = () =>
266
268
  </select>
267
269
  ${() => html`<a class="small d-inline-block mb-1" href=${AI_KEY_URL[state().aiProvider] || AI_KEY_URL.anthropic} target="_blank" rel="noopener">Get a ${state().aiProvider} key → paste it below (stays server-side in .env)</a>`}
268
270
  ${field("API key", "aiKey", "sk-…")}
271
+ <div class="small text-muted mt-2 mb-1">— or — no key? Use the hosted tier (free, capped, then pay-as-you-go):</div>
272
+ ${() => (state().aiToken ? html`<div class="small">Hosted token: <code>${state().aiToken.slice(0, 14)}…</code> <button class="btn btn-sm btn-link p-0 ms-1" onclick=${() => set({ aiToken: "" })}>clear</button></div>` : html`<button class="btn btn-sm btn-outline-secondary" onclick=${genToken}>Generate a free hosted token</button>`)}
269
273
  </div>
270
274
  </details>`;
271
275
 
@@ -304,6 +308,18 @@ async function buyCredits(amountUsd) {
304
308
  status("Checkout request failed.");
305
309
  }
306
310
  }
311
+ async function genToken() {
312
+ status("Requesting a hosted token…");
313
+ try {
314
+ const r = await (await fetch("/setup/gen-token", { method: "POST" })).json();
315
+ if (r.ok && r.token) {
316
+ set({ aiToken: r.token });
317
+ status("Hosted token generated — click Apply to save it.");
318
+ } else status("Could not get a token: " + (r.error || "?"));
319
+ } catch {
320
+ status("Token request failed.");
321
+ }
322
+ }
307
323
  const items = signal({ pages: [], posts: [] });
308
324
  const editing = signal(null); // { type, slug, title, isNew } — set only on open/save/close
309
325
  let ed = null; // live RTEPro instance for the open editor
@@ -344,6 +344,17 @@ function startSetup() {
344
344
  }
345
345
  return;
346
346
  }
347
+ // --- generate a free hosted-AI token from the gateway (self-service) ---
348
+ if (req.method === "POST" && p === "/setup/gen-token") {
349
+ res.setHeader("Content-Type", "application/json");
350
+ const env = readEnvFile();
351
+ const base = (env.VOLT_AI_GATEWAY || "https://voltjs.com/api/ai").replace(/\/api\/ai\/?$/, "");
352
+ fetch(base + "/api/register", { method: "POST", headers: { "content-type": "application/json" }, body: JSON.stringify({ app: env.SITE_NAME || "volt-app" }) })
353
+ .then((r) => r.json())
354
+ .then((j) => res.end(JSON.stringify(j)))
355
+ .catch(() => res.end(JSON.stringify({ ok: false, error: "gateway unreachable" })));
356
+ return;
357
+ }
347
358
  // --- AI proxy for the in-config editor (RTEPro). Uses a local provider key
348
359
  // (BYO) when set; otherwise falls back to the voltjs.com gateway via
349
360
  // VOLT_AI_TOKEN (free-capped, then pay-as-you-go on the host's key). The
@@ -34,6 +34,7 @@ const state = signal({
34
34
  theme: current.THEME || "",
35
35
  aiProvider: current.AI_PROVIDER || "anthropic",
36
36
  aiKey: current.ANTHROPIC_API_KEY || current.OPENAI_API_KEY || current.GEMINI_API_KEY || "",
37
+ aiToken: current.VOLT_AI_TOKEN || "",
37
38
  });
38
39
  const set = (patch) => state({ ...state(), ...patch });
39
40
  const toggle = (n) => state({ ...state(), addons: { ...state().addons, [n]: !state().addons[n] } });
@@ -82,6 +83,7 @@ function genEnv(s) {
82
83
  const keyVar = { anthropic: "ANTHROPIC_API_KEY", openai: "OPENAI_API_KEY", gemini: "GEMINI_API_KEY" }[s.aiProvider] || "ANTHROPIC_API_KEY";
83
84
  out.push(`${keyVar}=${clean(s.aiKey)}`);
84
85
  }
86
+ if (s.aiToken) out.push(`VOLT_AI_TOKEN=${clean(s.aiToken)}`); // hosted-tier token (used when no local key)
85
87
  if (eff.includes("db")) {
86
88
  out.push(`DB_DRIVER=${clean(s.dbDriver)}`);
87
89
  if (s.dbDriver === "mongodb") {
@@ -266,6 +268,8 @@ const aiSettings = () =>
266
268
  </select>
267
269
  ${() => html`<a class="small d-inline-block mb-1" href=${AI_KEY_URL[state().aiProvider] || AI_KEY_URL.anthropic} target="_blank" rel="noopener">Get a ${state().aiProvider} key → paste it below (stays server-side in .env)</a>`}
268
270
  ${field("API key", "aiKey", "sk-…")}
271
+ <div class="small text-muted mt-2 mb-1">— or — no key? Use the hosted tier (free, capped, then pay-as-you-go):</div>
272
+ ${() => (state().aiToken ? html`<div class="small">Hosted token: <code>${state().aiToken.slice(0, 14)}…</code> <button class="btn btn-sm btn-link p-0 ms-1" onclick=${() => set({ aiToken: "" })}>clear</button></div>` : html`<button class="btn btn-sm btn-outline-secondary" onclick=${genToken}>Generate a free hosted token</button>`)}
269
273
  </div>
270
274
  </details>`;
271
275
 
@@ -304,6 +308,18 @@ async function buyCredits(amountUsd) {
304
308
  status("Checkout request failed.");
305
309
  }
306
310
  }
311
+ async function genToken() {
312
+ status("Requesting a hosted token…");
313
+ try {
314
+ const r = await (await fetch("/setup/gen-token", { method: "POST" })).json();
315
+ if (r.ok && r.token) {
316
+ set({ aiToken: r.token });
317
+ status("Hosted token generated — click Apply to save it.");
318
+ } else status("Could not get a token: " + (r.error || "?"));
319
+ } catch {
320
+ status("Token request failed.");
321
+ }
322
+ }
307
323
  const items = signal({ pages: [], posts: [] });
308
324
  const editing = signal(null); // { type, slug, title, isNew } — set only on open/save/close
309
325
  let ed = null; // live RTEPro instance for the open editor
@@ -344,6 +344,17 @@ function startSetup() {
344
344
  }
345
345
  return;
346
346
  }
347
+ // --- generate a free hosted-AI token from the gateway (self-service) ---
348
+ if (req.method === "POST" && p === "/setup/gen-token") {
349
+ res.setHeader("Content-Type", "application/json");
350
+ const env = readEnvFile();
351
+ const base = (env.VOLT_AI_GATEWAY || "https://voltjs.com/api/ai").replace(/\/api\/ai\/?$/, "");
352
+ fetch(base + "/api/register", { method: "POST", headers: { "content-type": "application/json" }, body: JSON.stringify({ app: env.SITE_NAME || "volt-app" }) })
353
+ .then((r) => r.json())
354
+ .then((j) => res.end(JSON.stringify(j)))
355
+ .catch(() => res.end(JSON.stringify({ ok: false, error: "gateway unreachable" })));
356
+ return;
357
+ }
347
358
  // --- AI proxy for the in-config editor (RTEPro). Uses a local provider key
348
359
  // (BYO) when set; otherwise falls back to the voltjs.com gateway via
349
360
  // VOLT_AI_TOKEN (free-capped, then pay-as-you-go on the host's key). The
@@ -34,6 +34,7 @@ const state = signal({
34
34
  theme: current.THEME || "",
35
35
  aiProvider: current.AI_PROVIDER || "anthropic",
36
36
  aiKey: current.ANTHROPIC_API_KEY || current.OPENAI_API_KEY || current.GEMINI_API_KEY || "",
37
+ aiToken: current.VOLT_AI_TOKEN || "",
37
38
  });
38
39
  const set = (patch) => state({ ...state(), ...patch });
39
40
  const toggle = (n) => state({ ...state(), addons: { ...state().addons, [n]: !state().addons[n] } });
@@ -82,6 +83,7 @@ function genEnv(s) {
82
83
  const keyVar = { anthropic: "ANTHROPIC_API_KEY", openai: "OPENAI_API_KEY", gemini: "GEMINI_API_KEY" }[s.aiProvider] || "ANTHROPIC_API_KEY";
83
84
  out.push(`${keyVar}=${clean(s.aiKey)}`);
84
85
  }
86
+ if (s.aiToken) out.push(`VOLT_AI_TOKEN=${clean(s.aiToken)}`); // hosted-tier token (used when no local key)
85
87
  if (eff.includes("db")) {
86
88
  out.push(`DB_DRIVER=${clean(s.dbDriver)}`);
87
89
  if (s.dbDriver === "mongodb") {
@@ -266,6 +268,8 @@ const aiSettings = () =>
266
268
  </select>
267
269
  ${() => html`<a class="small d-inline-block mb-1" href=${AI_KEY_URL[state().aiProvider] || AI_KEY_URL.anthropic} target="_blank" rel="noopener">Get a ${state().aiProvider} key → paste it below (stays server-side in .env)</a>`}
268
270
  ${field("API key", "aiKey", "sk-…")}
271
+ <div class="small text-muted mt-2 mb-1">— or — no key? Use the hosted tier (free, capped, then pay-as-you-go):</div>
272
+ ${() => (state().aiToken ? html`<div class="small">Hosted token: <code>${state().aiToken.slice(0, 14)}…</code> <button class="btn btn-sm btn-link p-0 ms-1" onclick=${() => set({ aiToken: "" })}>clear</button></div>` : html`<button class="btn btn-sm btn-outline-secondary" onclick=${genToken}>Generate a free hosted token</button>`)}
269
273
  </div>
270
274
  </details>`;
271
275
 
@@ -304,6 +308,18 @@ async function buyCredits(amountUsd) {
304
308
  status("Checkout request failed.");
305
309
  }
306
310
  }
311
+ async function genToken() {
312
+ status("Requesting a hosted token…");
313
+ try {
314
+ const r = await (await fetch("/setup/gen-token", { method: "POST" })).json();
315
+ if (r.ok && r.token) {
316
+ set({ aiToken: r.token });
317
+ status("Hosted token generated — click Apply to save it.");
318
+ } else status("Could not get a token: " + (r.error || "?"));
319
+ } catch {
320
+ status("Token request failed.");
321
+ }
322
+ }
307
323
  const items = signal({ pages: [], posts: [] });
308
324
  const editing = signal(null); // { type, slug, title, isNew } — set only on open/save/close
309
325
  let ed = null; // live RTEPro instance for the open editor
@@ -370,6 +370,17 @@ function startSetup() {
370
370
  }
371
371
  return;
372
372
  }
373
+ // --- generate a free hosted-AI token from the gateway (self-service) ---
374
+ if (req.method === "POST" && p === "/setup/gen-token") {
375
+ res.setHeader("Content-Type", "application/json");
376
+ const env = readEnvFile();
377
+ const base = (env.VOLT_AI_GATEWAY || "https://voltjs.com/api/ai").replace(/\/api\/ai\/?$/, "");
378
+ fetch(base + "/api/register", { method: "POST", headers: { "content-type": "application/json" }, body: JSON.stringify({ app: env.SITE_NAME || "volt-app" }) })
379
+ .then((r) => r.json())
380
+ .then((j) => res.end(JSON.stringify(j)))
381
+ .catch(() => res.end(JSON.stringify({ ok: false, error: "gateway unreachable" })));
382
+ return;
383
+ }
373
384
  // --- AI proxy for the in-config editor (RTEPro). Uses a local provider key
374
385
  // (BYO) when set; otherwise falls back to the voltjs.com gateway via
375
386
  // VOLT_AI_TOKEN (free-capped, then pay-as-you-go on the host's key). The
@@ -34,6 +34,7 @@ const state = signal({
34
34
  theme: current.THEME || "",
35
35
  aiProvider: current.AI_PROVIDER || "anthropic",
36
36
  aiKey: current.ANTHROPIC_API_KEY || current.OPENAI_API_KEY || current.GEMINI_API_KEY || "",
37
+ aiToken: current.VOLT_AI_TOKEN || "",
37
38
  });
38
39
  const set = (patch) => state({ ...state(), ...patch });
39
40
  const toggle = (n) => state({ ...state(), addons: { ...state().addons, [n]: !state().addons[n] } });
@@ -82,6 +83,7 @@ function genEnv(s) {
82
83
  const keyVar = { anthropic: "ANTHROPIC_API_KEY", openai: "OPENAI_API_KEY", gemini: "GEMINI_API_KEY" }[s.aiProvider] || "ANTHROPIC_API_KEY";
83
84
  out.push(`${keyVar}=${clean(s.aiKey)}`);
84
85
  }
86
+ if (s.aiToken) out.push(`VOLT_AI_TOKEN=${clean(s.aiToken)}`); // hosted-tier token (used when no local key)
85
87
  if (eff.includes("db")) {
86
88
  out.push(`DB_DRIVER=${clean(s.dbDriver)}`);
87
89
  if (s.dbDriver === "mongodb") {
@@ -266,6 +268,8 @@ const aiSettings = () =>
266
268
  </select>
267
269
  ${() => html`<a class="small d-inline-block mb-1" href=${AI_KEY_URL[state().aiProvider] || AI_KEY_URL.anthropic} target="_blank" rel="noopener">Get a ${state().aiProvider} key → paste it below (stays server-side in .env)</a>`}
268
270
  ${field("API key", "aiKey", "sk-…")}
271
+ <div class="small text-muted mt-2 mb-1">— or — no key? Use the hosted tier (free, capped, then pay-as-you-go):</div>
272
+ ${() => (state().aiToken ? html`<div class="small">Hosted token: <code>${state().aiToken.slice(0, 14)}…</code> <button class="btn btn-sm btn-link p-0 ms-1" onclick=${() => set({ aiToken: "" })}>clear</button></div>` : html`<button class="btn btn-sm btn-outline-secondary" onclick=${genToken}>Generate a free hosted token</button>`)}
269
273
  </div>
270
274
  </details>`;
271
275
 
@@ -304,6 +308,18 @@ async function buyCredits(amountUsd) {
304
308
  status("Checkout request failed.");
305
309
  }
306
310
  }
311
+ async function genToken() {
312
+ status("Requesting a hosted token…");
313
+ try {
314
+ const r = await (await fetch("/setup/gen-token", { method: "POST" })).json();
315
+ if (r.ok && r.token) {
316
+ set({ aiToken: r.token });
317
+ status("Hosted token generated — click Apply to save it.");
318
+ } else status("Could not get a token: " + (r.error || "?"));
319
+ } catch {
320
+ status("Token request failed.");
321
+ }
322
+ }
307
323
  const items = signal({ pages: [], posts: [] });
308
324
  const editing = signal(null); // { type, slug, title, isNew } — set only on open/save/close
309
325
  let ed = null; // live RTEPro instance for the open editor