@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.
- package/README.md +1 -2
- package/package.json +1 -1
- package/src/cli.js +8 -0
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settinghead/voxlert",
|
|
3
|
-
"version": "0.3.
|
|
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
|
|