vectorvesper 2.0.4 → 2.0.6

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "engineVersion": "0.3.0",
4
- "generatedAt": "2026-07-27T08:10:50.379Z",
3
+ "engineVersion": "1.0.2",
4
+ "generatedAt": "2026-08-01T08:17:45.626Z",
5
5
  "contractLevel": "lean",
6
6
  "hooks": [
7
7
  {
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.4" : "0.0.0-dev";
996
+ var CLI_VERSION = true ? "2.0.6" : "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.4" : "0.0.0-dev";
1294
+ var version = true ? "2.0.6" : "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-GRL5KVPI.js");
1333
+ const { mcpCommand } = await import("./mcp-HOFTIXET.js");
1334
1334
  await mcpCommand(action, options);
1335
1335
  });
1336
1336
  process.on("unhandledRejection", (error) => {
@@ -7,12 +7,12 @@ import {
7
7
 
8
8
  // src/commands/mcp.ts
9
9
  import pc from "picocolors";
10
- var VERSION = true ? "2.0.4" : "0.0.0-dev";
10
+ var VERSION = true ? "2.0.6" : "0.0.0-dev";
11
11
  var CONFIG_SNIPPET = `{
12
12
  "mcpServers": {
13
13
  "vectorvesper": {
14
14
  "command": "npx",
15
- "args": ["-y", "vectorvesper", "mcp"]
15
+ "args": ["-y", "vectorvesper@latest", "mcp"]
16
16
  }
17
17
  }
18
18
  }`;
@@ -45,14 +45,16 @@ function printStatus() {
45
45
  console.log("");
46
46
  console.log(pc.bold(" Register with an agent"));
47
47
  console.log(pc.dim(" Claude Code:"));
48
- console.log(` ${pc.cyan("claude mcp add vectorvesper -- npx -y vectorvesper mcp")}`);
48
+ console.log(` ${pc.cyan("claude mcp add -s user vectorvesper -- npx -y vectorvesper@latest mcp")}`);
49
49
  console.log(pc.dim(" Cursor / Claude Desktop / other \u2014 add to the client's MCP config:"));
50
50
  console.log(
51
51
  CONFIG_SNIPPET.split("\n").map((l) => ` ${pc.dim(l)}`).join("\n")
52
52
  );
53
53
  console.log("");
54
54
  console.log(
55
- pc.dim(" Tools: list_hooks \xB7 get_hook \xB7 list_components \xB7 get_component \xB7 get_setup_guidance \xB7 search")
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-OLD3SDPJ.js");
97
+ const { startMcpServer } = await import("./server-TWBMQIV6.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.4" : "0.0.0-dev";
381
+ var VERSION = true ? "2.0.6" : "0.0.0-dev";
382
382
  function text(body) {
383
383
  return { content: [{ type: "text", text: body }] };
384
384
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vectorvesper",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "Add WebGL, React Three Fiber & advanced motion components to your project via CLI.",
5
5
  "type": "module",
6
6
  "license": "MIT",