vybekiit 0.7.7 → 0.7.8
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/bin.js +9 -13
- package/package.json +8 -8
package/dist/bin.js
CHANGED
|
@@ -5749,7 +5749,7 @@ var CLI_HELP = `vybekiit \u2014 set up tools and create your app
|
|
|
5749
5749
|
|
|
5750
5750
|
Getting started:
|
|
5751
5751
|
vybekiit Interactive menu (terminal only)
|
|
5752
|
-
vybekiit setup
|
|
5752
|
+
vybekiit setup First run or repair: sign in, reapply tools, and open your app
|
|
5753
5753
|
vybekiit doctor Full toolchain pass (agents, gh, cloud CLIs, skills, \u2026)
|
|
5754
5754
|
${createSurfaceUsage}
|
|
5755
5755
|
vybekiit create --ui-library [directory] Full UI kit + gallery + Claude (report mode ready)
|
|
@@ -5787,7 +5787,6 @@ Buyer journey:
|
|
|
5787
5787
|
[--data=supabase|neon|railway|mongodb|firebase|aws|local]
|
|
5788
5788
|
[--google-sign-in]
|
|
5789
5789
|
vybekiit global-install [--yes] (skills + MCP + awareness into ~/.claude)
|
|
5790
|
-
vybekiit update (re-run auto-updater: latest skills + MCP)
|
|
5791
5790
|
vybekiit doctor
|
|
5792
5791
|
vybekiit doctor --ensure <tool> [--json]
|
|
5793
5792
|
vybekiit create app ${CREATE_SURFACE_PIPE_FLAGS} [directory]
|
|
@@ -11476,7 +11475,7 @@ var formatCreateUiLibraryLines = (result) => {
|
|
|
11476
11475
|
if (result.appPath === null) {
|
|
11477
11476
|
lines.push(" \u2022 Could not create or open a kit workspace.");
|
|
11478
11477
|
lines.push(" \u2022 Accept the GitHub invite, run: gh auth login --web");
|
|
11479
|
-
lines.push(" \u2022 Then: npx
|
|
11478
|
+
lines.push(" \u2022 Then: npx vybekiit create --ui-library");
|
|
11480
11479
|
lines.push("");
|
|
11481
11480
|
return lines;
|
|
11482
11481
|
}
|
|
@@ -11543,7 +11542,7 @@ var runCreateUiLibrary = async (args = [], deps = defaultDeps2()) => {
|
|
|
11543
11542
|
lines: [
|
|
11544
11543
|
"",
|
|
11545
11544
|
`${appPath} already exists and is not a VybeKiit kit workspace.`,
|
|
11546
|
-
" Pick a free folder: npx
|
|
11545
|
+
" Pick a free folder: npx vybekiit create --ui-library ~/my-ui-kit",
|
|
11547
11546
|
" Or set VYBEKIIT_UI_LIBRARY_DIR and re-run.",
|
|
11548
11547
|
""
|
|
11549
11548
|
]
|
|
@@ -31379,7 +31378,7 @@ var formatGlobalInstallSummary = (summary) => {
|
|
|
31379
31378
|
if (skillsEmpty) {
|
|
31380
31379
|
lines.push(
|
|
31381
31380
|
" No managed skills on disk \u2014 Claude Code will not load kit skills until this is fixed.",
|
|
31382
|
-
" Re-run: `npx
|
|
31381
|
+
" Re-run: `npx vybekiit setup` to repair the installation."
|
|
31383
31382
|
);
|
|
31384
31383
|
}
|
|
31385
31384
|
if (summary.claudeMissing) {
|
|
@@ -31409,10 +31408,9 @@ var formatGlobalInstallSummary = (summary) => {
|
|
|
31409
31408
|
"To see it: restart Claude Code (or run `claude` once) to approve the new MCP servers,",
|
|
31410
31409
|
"then type /vybekiit to confirm.",
|
|
31411
31410
|
"",
|
|
31412
|
-
"Re-run anytime to
|
|
31413
|
-
"
|
|
31414
|
-
|
|
31415
|
-
"Skip that step: VYBEKIIT_SKIP_SESSION_ONE=1 or --skip-session-one",
|
|
31411
|
+
"Re-run anytime to repair or reapply everything: npx vybekiit setup",
|
|
31412
|
+
'The first run creates your web app and opens Claude with "Set up my app.";',
|
|
31413
|
+
"later runs reuse that app and redo the required setup.",
|
|
31416
31414
|
""
|
|
31417
31415
|
);
|
|
31418
31416
|
}
|
|
@@ -31431,7 +31429,7 @@ var runGlobalInstall = async (args, gate = checkEntitlement) => {
|
|
|
31431
31429
|
if (!skipPrompt) {
|
|
31432
31430
|
if (!isInteractive()) {
|
|
31433
31431
|
process29.stdout.write(
|
|
31434
|
-
"Skipping global setup (non-interactive). Run `
|
|
31432
|
+
"Skipping global setup (non-interactive). Run `npx vybekiit setup` to provision Claude Code globally.\n"
|
|
31435
31433
|
);
|
|
31436
31434
|
return 0;
|
|
31437
31435
|
}
|
|
@@ -31440,9 +31438,7 @@ var runGlobalInstall = async (args, gate = checkEntitlement) => {
|
|
|
31440
31438
|
initialValue: true
|
|
31441
31439
|
});
|
|
31442
31440
|
if (isCancel4(proceed) || proceed !== true) {
|
|
31443
|
-
process29.stdout.write(
|
|
31444
|
-
"Skipped global setup. You can run `vybekiit update` or `vybekiit global-install` anytime.\n"
|
|
31445
|
-
);
|
|
31441
|
+
process29.stdout.write("Skipped global setup. You can run `npx vybekiit setup` anytime.\n");
|
|
31446
31442
|
return 0;
|
|
31447
31443
|
}
|
|
31448
31444
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vybekiit",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.8",
|
|
4
4
|
"description": "Choose your services, sign in, create a VybeKiit app, and open its verified local welcome page.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"tsup": "8.5.1",
|
|
33
33
|
"typescript": "5.7.2",
|
|
34
34
|
"vitest": "3.2.6",
|
|
35
|
-
"@vybekiit/agent-kit": "0.7.
|
|
36
|
-
"@vybekiit/
|
|
37
|
-
"@vybekiit/
|
|
38
|
-
"@vybekiit/
|
|
39
|
-
"@vybekiit/
|
|
40
|
-
"@vybekiit/
|
|
41
|
-
"@vybekiit/report-mode": "0.7.
|
|
35
|
+
"@vybekiit/agent-kit": "0.7.8",
|
|
36
|
+
"@vybekiit/db": "0.7.8",
|
|
37
|
+
"@vybekiit/agent-mcp": "0.7.8",
|
|
38
|
+
"@vybekiit/deploy": "0.7.8",
|
|
39
|
+
"@vybekiit/payments": "0.7.8",
|
|
40
|
+
"@vybekiit/core": "0.7.8",
|
|
41
|
+
"@vybekiit/report-mode": "0.7.8"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsup && node scripts/bundleGlobalSkills.mjs",
|