@contextstream/mcp-server 0.3.29 → 0.3.30

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9840,9 +9840,9 @@ Created API key: ${maskApiKey(apiKey)}
9840
9840
  }
9841
9841
  }
9842
9842
  }
9843
- console.log("Rule verbosity:");
9844
- console.log(" 1) Minimal (recommended)");
9845
- console.log(" 2) Full (more context and guidance, more tokens)");
9843
+ console.log("Rules detail level (in the generated rules file):\n");
9844
+ console.log(" 1) Standard (recommended) \u2014 concise, high-signal (lower token overhead)");
9845
+ console.log(" 2) Extended \u2014 more guidance + examples (higher token overhead)");
9846
9846
  const modeChoice = normalizeInput(await rl.question("Choose [1/2] (default 1): ")) || "1";
9847
9847
  const mode = modeChoice === "2" ? "full" : "minimal";
9848
9848
  const editors = ["codex", "claude", "cursor", "windsurf", "cline", "kilo", "roo", "aider"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contextstream/mcp-server",
3
- "version": "0.3.29",
3
+ "version": "0.3.30",
4
4
  "description": "MCP server exposing ContextStream public API - code context, memory, search, and AI tools for developers",
5
5
  "type": "module",
6
6
  "license": "MIT",