vybekiit 0.7.15 → 0.7.16
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 +12 -9
- package/package.json +8 -8
package/dist/bin.js
CHANGED
|
@@ -11260,8 +11260,8 @@ var defaultDeps = () => ({
|
|
|
11260
11260
|
platform: process7.platform
|
|
11261
11261
|
});
|
|
11262
11262
|
var projectToolsLines = (ready) => ready ? [
|
|
11263
|
-
" \u2022 @vybekiit/ui + the UI catalog are available to
|
|
11264
|
-
" \u2022
|
|
11263
|
+
" \u2022 @vybekiit/ui + the UI catalog are available to your coding agent",
|
|
11264
|
+
" \u2022 VybeKiit tools, browser automation, and matching project skills are connected"
|
|
11265
11265
|
] : [];
|
|
11266
11266
|
var formatSessionOneLines = (result) => {
|
|
11267
11267
|
if (result.appPath === null) {
|
|
@@ -11306,13 +11306,13 @@ var formatSessionOneLines = (result) => {
|
|
|
11306
11306
|
if (result.claudeOpened) {
|
|
11307
11307
|
lines.push(' \u2022 Claude Code opening with: "Set up my app."');
|
|
11308
11308
|
} else {
|
|
11309
|
-
lines.push(' \u2022 Open
|
|
11310
|
-
lines.push(`
|
|
11309
|
+
lines.push(' \u2022 Open that folder in your coding agent and say: "Set up my app."');
|
|
11310
|
+
lines.push(` ${result.appPath}`);
|
|
11311
11311
|
}
|
|
11312
11312
|
lines.push(
|
|
11313
11313
|
"",
|
|
11314
11314
|
"Report mode is built in \u2014 if something looks wrong, press Option+Shift+R",
|
|
11315
|
-
"(Alt+Shift+R on Windows), click it, and tell
|
|
11315
|
+
"(Alt+Shift+R on Windows), click it, and tell your coding agent what is off.",
|
|
11316
11316
|
""
|
|
11317
11317
|
);
|
|
11318
11318
|
return lines;
|
|
@@ -31442,11 +31442,12 @@ var installGlobalSkills = async (paths, sourceDir = paths.bundledSkillsDir) => {
|
|
|
31442
31442
|
|
|
31443
31443
|
// src/global/runGlobalInstall.ts
|
|
31444
31444
|
var shouldRunSessionOneOnInstall = (args, isFirstInstall) => isFirstInstall || args.includes("--session-one");
|
|
31445
|
+
var globalSetupComplete = (managedFilesReady, mcpInstallation) => managedFilesReady && (mcpInstallation.claudeMissing || isVybekiitMcpReady(mcpInstallation));
|
|
31445
31446
|
var formatGlobalInstallSummary = (summary) => {
|
|
31446
31447
|
const isUpdate = summary.previousVersion !== null && summary.previousVersion !== summary.version;
|
|
31447
31448
|
const isRerun = summary.previousVersion !== null && summary.previousVersion === summary.version;
|
|
31448
31449
|
const skillsEmpty = summary.skillsInstalled === 0 && summary.skillSample.length === 0;
|
|
31449
|
-
let headline = `\u2705 VybeKiit ${summary.version} is now set up globally in Claude Code.`;
|
|
31450
|
+
let headline = summary.claudeMissing ? `\u2705 VybeKiit ${summary.version} is ready for your coding agent.` : `\u2705 VybeKiit ${summary.version} is now set up globally in Claude Code.`;
|
|
31450
31451
|
if (skillsEmpty) {
|
|
31451
31452
|
headline = `\u2717 VybeKiit ${summary.version} global setup did not land any managed skills.`;
|
|
31452
31453
|
} else if (isUpdate) {
|
|
@@ -31475,7 +31476,9 @@ var formatGlobalInstallSummary = (summary) => {
|
|
|
31475
31476
|
);
|
|
31476
31477
|
}
|
|
31477
31478
|
if (summary.claudeMissing) {
|
|
31478
|
-
lines.push(
|
|
31479
|
+
lines.push(
|
|
31480
|
+
" \u2022 MCP Claude Code is optional and was not found. Continuing with your coding agent."
|
|
31481
|
+
);
|
|
31479
31482
|
} else {
|
|
31480
31483
|
const enabledLabel = summary.mcpEnabled.length > 0 ? summary.mcpEnabled.join(", ") : "none newly added";
|
|
31481
31484
|
lines.push(` \u2022 MCP ${enabledLabel} (VybeKiit tools + browser automation + live docs)`);
|
|
@@ -31568,9 +31571,9 @@ var runGlobalInstall = async (args, gate = checkEntitlement) => {
|
|
|
31568
31571
|
process29.stdout.write(`${line}
|
|
31569
31572
|
`);
|
|
31570
31573
|
}
|
|
31571
|
-
if (!(isGloballyInstalled(postStatus)
|
|
31574
|
+
if (!globalSetupComplete(isGloballyInstalled(postStatus), mcp)) {
|
|
31572
31575
|
process29.stderr.write(
|
|
31573
|
-
"VybeKiit
|
|
31576
|
+
"VybeKiit setup is incomplete: the managed files or an available Claude Code connection could not be prepared.\n"
|
|
31574
31577
|
);
|
|
31575
31578
|
return 1;
|
|
31576
31579
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vybekiit",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.16",
|
|
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/db": "0.7.
|
|
36
|
-
"@vybekiit/
|
|
37
|
-
"@vybekiit/
|
|
38
|
-
"@vybekiit/
|
|
39
|
-
"@vybekiit/
|
|
40
|
-
"@vybekiit/
|
|
41
|
-
"@vybekiit/
|
|
35
|
+
"@vybekiit/db": "0.7.16",
|
|
36
|
+
"@vybekiit/core": "0.7.16",
|
|
37
|
+
"@vybekiit/agent-mcp": "0.7.16",
|
|
38
|
+
"@vybekiit/payments": "0.7.16",
|
|
39
|
+
"@vybekiit/agent-kit": "0.7.16",
|
|
40
|
+
"@vybekiit/report-mode": "0.7.16",
|
|
41
|
+
"@vybekiit/deploy": "0.7.16"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsup && node scripts/bundleGlobalSkills.mjs",
|