vectorvesper 2.0.4 → 2.0.5
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/hooks.json
CHANGED
package/dist/index.js
CHANGED
|
@@ -993,7 +993,7 @@ Remove ${slug}
|
|
|
993
993
|
import fs6 from "fs";
|
|
994
994
|
import path6 from "path";
|
|
995
995
|
import pc8 from "picocolors";
|
|
996
|
-
var CLI_VERSION = true ? "2.0.
|
|
996
|
+
var CLI_VERSION = true ? "2.0.5" : "0.0.0-dev";
|
|
997
997
|
async function infoCommand() {
|
|
998
998
|
console.log(pc8.bold(pc8.cyan("\nVector Vesper Diagnostics\n")));
|
|
999
999
|
const projectInfo = detectProject();
|
|
@@ -1291,7 +1291,7 @@ async function whoamiCommand() {
|
|
|
1291
1291
|
}
|
|
1292
1292
|
|
|
1293
1293
|
// src/index.ts
|
|
1294
|
-
var version = true ? "2.0.
|
|
1294
|
+
var version = true ? "2.0.5" : "0.0.0-dev";
|
|
1295
1295
|
var program = new Command();
|
|
1296
1296
|
program.name("vv").description("Vector Vesper CLI \u2014 add visual components to your React project").version(version).option("--verbose", "Show detailed debug output").hook("preAction", (thisCommand) => {
|
|
1297
1297
|
const opts = thisCommand.opts();
|
|
@@ -1330,7 +1330,7 @@ program.command("whoami", { hidden: true }).description("Show current authentica
|
|
|
1330
1330
|
await whoamiCommand();
|
|
1331
1331
|
});
|
|
1332
1332
|
program.command("mcp [action]").description("Run as an MCP server (stdio) for AI coding agents. `vv mcp status` checks the setup.").option("--stdio", "Force server mode even from an interactive terminal").action(async (action, options) => {
|
|
1333
|
-
const { mcpCommand } = await import("./mcp-
|
|
1333
|
+
const { mcpCommand } = await import("./mcp-AXNTAIZS.js");
|
|
1334
1334
|
await mcpCommand(action, options);
|
|
1335
1335
|
});
|
|
1336
1336
|
process.on("unhandledRejection", (error) => {
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
|
|
8
8
|
// src/commands/mcp.ts
|
|
9
9
|
import pc from "picocolors";
|
|
10
|
-
var VERSION = true ? "2.0.
|
|
10
|
+
var VERSION = true ? "2.0.5" : "0.0.0-dev";
|
|
11
11
|
var CONFIG_SNIPPET = `{
|
|
12
12
|
"mcpServers": {
|
|
13
13
|
"vectorvesper": {
|
|
@@ -52,7 +52,9 @@ function printStatus() {
|
|
|
52
52
|
);
|
|
53
53
|
console.log("");
|
|
54
54
|
console.log(
|
|
55
|
-
pc.dim(
|
|
55
|
+
pc.dim(
|
|
56
|
+
" Tools: list_hooks \xB7 get_hook \xB7 list_components \xB7 get_component \xB7 get_setup_guidance \xB7 search \xB7 check_motion"
|
|
57
|
+
)
|
|
56
58
|
);
|
|
57
59
|
console.log("");
|
|
58
60
|
}
|
|
@@ -92,7 +94,7 @@ ${pc.red("\u2717")} Unknown argument "${action}" for \`vv mcp\`.
|
|
|
92
94
|
return;
|
|
93
95
|
}
|
|
94
96
|
protectStdout();
|
|
95
|
-
const { startMcpServer } = await import("./server-
|
|
97
|
+
const { startMcpServer } = await import("./server-H33TKXE4.js");
|
|
96
98
|
try {
|
|
97
99
|
await startMcpServer();
|
|
98
100
|
} catch (error) {
|
|
@@ -378,7 +378,7 @@ async function checkMotionFiles(files, cwd) {
|
|
|
378
378
|
}
|
|
379
379
|
|
|
380
380
|
// src/mcp/server.ts
|
|
381
|
-
var VERSION = true ? "2.0.
|
|
381
|
+
var VERSION = true ? "2.0.5" : "0.0.0-dev";
|
|
382
382
|
function text(body) {
|
|
383
383
|
return { content: [{ type: "text", text: body }] };
|
|
384
384
|
}
|