vectorvesper 2.8.1 → 2.8.2

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
3
  "engineVersion": "4.2.0",
4
- "generatedAt": "2026-09-24T15:22:31.361Z",
4
+ "generatedAt": "2026-09-24T15:58:51.312Z",
5
5
  "contractLevel": "full",
6
6
  "hooks": [
7
7
  {
package/dist/index.js CHANGED
@@ -1123,7 +1123,7 @@ Remove ${slug}
1123
1123
  import fs7 from "fs";
1124
1124
  import path7 from "path";
1125
1125
  import pc8 from "picocolors";
1126
- var CLI_VERSION = true ? "2.8.1" : "0.0.0-dev";
1126
+ var CLI_VERSION = true ? "2.8.2" : "0.0.0-dev";
1127
1127
  async function infoCommand() {
1128
1128
  console.log(pc8.bold(pc8.cyan("\nVector Vesper Diagnostics\n")));
1129
1129
  const projectInfo = detectProject();
@@ -1419,7 +1419,7 @@ async function whoamiCommand() {
1419
1419
  }
1420
1420
 
1421
1421
  // src/index.ts
1422
- var version = true ? "2.8.1" : "0.0.0-dev";
1422
+ var version = true ? "2.8.2" : "0.0.0-dev";
1423
1423
  var program = new Command();
1424
1424
  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) => {
1425
1425
  const opts = thisCommand.opts();
@@ -1461,7 +1461,7 @@ program.command("mcp [action] [client]").description(
1461
1461
  "Run as an MCP server (stdio) for AI coding agents. `vv mcp install` wires it into your editor; `vv mcp status` checks the setup."
1462
1462
  ).option("--stdio", "Force server mode even from an interactive terminal").option("-g, --global", "Write user-level config instead of project-level (install)").action(
1463
1463
  async (action, client, options) => {
1464
- const { mcpCommand } = await import("./mcp-D5QWQ2PC.js");
1464
+ const { mcpCommand } = await import("./mcp-RERKF32A.js");
1465
1465
  await mcpCommand(action, { ...options, client });
1466
1466
  }
1467
1467
  );
@@ -146,7 +146,7 @@ function detectClients(cwd = process.cwd()) {
146
146
  }
147
147
 
148
148
  // src/commands/mcp.ts
149
- var VERSION = true ? "2.8.1" : "0.0.0-dev";
149
+ var VERSION = true ? "2.8.2" : "0.0.0-dev";
150
150
  var CONFIG_SNIPPET = `{
151
151
  "mcpServers": {
152
152
  "vectorvesper": {
@@ -186,7 +186,7 @@ function printStatus() {
186
186
  console.log(` ${pc.dim("Reinstall with: npm i -g vectorvesper@latest")}`);
187
187
  }
188
188
  console.log(
189
- ` ${authed ? ok("Authenticated \u2014 Pro components available") : pc.dim("\u25CB Not authenticated \u2014 free components only")}`
189
+ ` ${authed ? ok("Signed in \u2014 Pro installs allowed if your membership covers them") : pc.dim("\u25CB Not signed in \u2014 free components only")}`
190
190
  );
191
191
  console.log("");
192
192
  console.log(pc.bold(" Register with an agent"));
@@ -293,7 +293,7 @@ ${pc.red("\u2717")} Unknown argument "${action}" for \`vv mcp\`.
293
293
  return;
294
294
  }
295
295
  protectStdout();
296
- const { startMcpServer } = await import("./server-BEBUGQ7F.js");
296
+ const { startMcpServer } = await import("./server-UQBNOULO.js");
297
297
  try {
298
298
  await startMcpServer();
299
299
  } catch (error) {
@@ -1327,7 +1327,7 @@ function formatPlan({ building, using }) {
1327
1327
  }
1328
1328
 
1329
1329
  // src/mcp/server.ts
1330
- var VERSION = true ? "2.8.1" : "0.0.0-dev";
1330
+ var VERSION = true ? "2.8.2" : "0.0.0-dev";
1331
1331
  function text(body) {
1332
1332
  return { content: [{ type: "text", text: body }] };
1333
1333
  }
@@ -1789,9 +1789,11 @@ Hook discovery still works offline \u2014 try \`list_hooks\`.`
1789
1789
  out.push(`- Tailwind: ${info.hasTailwind ? "yes" : "no"}`);
1790
1790
  out.push(`- \`src/\` directory: ${info.hasSrcDir ? "yes" : "no"}`);
1791
1791
  out.push("\n# Vector Vesper");
1792
- out.push(`- CLI authenticated: ${authed ? "yes \u2014 Pro components available" : "no \u2014 free components only"}`);
1792
+ out.push(
1793
+ `- CLI signed in: ${authed ? "yes \u2014 a Pro component installs if the account's membership covers it, and is refused if not" : "no \u2014 free components only"}`
1794
+ );
1793
1795
  if (!authed) {
1794
- out.push(" - To unlock Pro: `npx vectorvesper login <token>` (tokens at https://vectorvesper.dev/account)");
1796
+ out.push(" - For Pro: `npx vectorvesper login <token>` (tokens at https://vectorvesper.dev/account)");
1795
1797
  }
1796
1798
  out.push("\n# What this implies");
1797
1799
  if (info.framework === "next" && info.nextRouter === "app") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vectorvesper",
3
- "version": "2.8.1",
3
+ "version": "2.8.2",
4
4
  "description": "Motion runtime and WebGL/R3F component CLI for React, with an MCP server that tells your coding agent which primitive to use, how to wire it, and when not to.",
5
5
  "type": "module",
6
6
  "license": "MIT",