@kylewadegrove/cutline-mcp-cli 0.7.2 → 0.7.3

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.
@@ -84,10 +84,12 @@ function prompt(question) {
84
84
  });
85
85
  }
86
86
  function buildServerConfig() {
87
+ const voltaNpx = join(homedir(), '.volta', 'bin', 'npx');
88
+ const npxCommand = existsSync(voltaNpx) ? voltaNpx : 'npx';
87
89
  const config = {};
88
90
  for (const name of SERVER_NAMES) {
89
91
  config[`cutline-${name}`] = {
90
- command: 'npx',
92
+ command: npxCommand,
91
93
  args: ['-y', '@kylewadegrove/cutline-mcp-cli@latest', 'serve', name],
92
94
  };
93
95
  }
@@ -257,13 +259,15 @@ export async function setupCommand(options) {
257
259
  else {
258
260
  const items = [
259
261
  { cmd: 'Run an engineering audit on this codebase', desc: 'Security, reliability, and scalability scan (3/month free)' },
262
+ { cmd: 'Explore a product idea', desc: 'Free 6-act discovery flow to identify pain points and opportunities' },
263
+ { cmd: 'Continue my exploration session', desc: 'Resume and refine an existing free exploration conversation' },
260
264
  ];
261
265
  for (const item of items) {
262
266
  console.log(` ${chalk.cyan('→')} ${chalk.white(`"${item.cmd}"`)}`);
263
267
  console.log(` ${chalk.dim(item.desc)}`);
264
268
  }
265
269
  console.log();
266
- console.log(chalk.dim(' Upgrade to Premium for deep dives, code audits, constraint graphs, and personas'));
270
+ console.log(chalk.dim(' Want product-linked constraints, full code audit + RGR plans, and pre-mortem deep dives?'));
267
271
  console.log(chalk.dim(' →'), chalk.cyan('cutline-mcp upgrade'), chalk.dim('or https://thecutline.ai/upgrade'));
268
272
  }
269
273
  console.log();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kylewadegrove/cutline-mcp-cli",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "CLI and MCP servers for Cutline — authenticate, then run constraint-aware MCP servers in Cursor or any MCP client.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",