@settinghead/voxlert 0.3.8 → 0.3.9

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.
Files changed (3) hide show
  1. package/README.md +1 -2
  2. package/package.json +1 -1
  3. package/src/cli.js +8 -0
package/README.md CHANGED
@@ -62,8 +62,7 @@ The setup wizard auto-detects running TTS backends. If none are running yet, set
62
62
  ### 2. Install and run setup
63
63
 
64
64
  ```bash
65
- npm install -g @settinghead/voxlert
66
- voxlert setup
65
+ npx voxlert --onboard
67
66
  ```
68
67
 
69
68
  The setup wizard configures:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@settinghead/voxlert",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "LLM-generated voice notifications for Claude Code, Cursor, OpenAI Codex, and OpenClaw, spoken by game characters like the StarCraft Adjutant, Kerrigan, C&C EVA, SHODAN, and more.",
5
5
  "repository": {
6
6
  "type": "git",
package/src/cli.js CHANGED
@@ -53,6 +53,14 @@ async function maybeRunSetup(command) {
53
53
 
54
54
  (async () => {
55
55
  const args = process.argv.slice(2);
56
+
57
+ // --onboard flag: run setup wizard directly (supports `npx voxlert --onboard`)
58
+ if (args.includes("--onboard")) {
59
+ const { runSetup } = await import("./setup.js");
60
+ await runSetup();
61
+ return;
62
+ }
63
+
56
64
  const requested = args[0] || "help";
57
65
  const command = resolveCommand(requested);
58
66