@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.
- package/dist/index.js +3 -3
- 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("
|
|
9844
|
-
console.log(" 1)
|
|
9845
|
-
console.log(" 2)
|
|
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