lean-ctx-bin 2.9.12 → 2.9.14

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/package.json +1 -1
  2. package/postinstall.js +11 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lean-ctx-bin",
3
- "version": "2.9.12",
3
+ "version": "2.9.14",
4
4
  "description": "lean-ctx — the token-efficient context tool for LLM coding agents. Installs a pre-built binary, no Rust required.",
5
5
  "keywords": ["lean-ctx", "mcp", "llm", "context", "claude", "cursor", "ai", "token-optimization"],
6
6
  "homepage": "https://leanctx.com",
package/postinstall.js CHANGED
@@ -173,7 +173,17 @@ async function main() {
173
173
 
174
174
  console.log(`lean-ctx: installed to ${BINARY_PATH}`);
175
175
  console.log("");
176
- console.log("Next: run \x1b[1mlean-ctx setup\x1b[0m to configure your shell and editors automatically.");
176
+ console.log("\x1b[1m┌─────────────────────────────────────────────────────┐\x1b[0m");
177
+ console.log("\x1b[1m│\x1b[0m \x1b[32m\x1b[1m✓ lean-ctx installed successfully\x1b[0m \x1b[1m│\x1b[0m");
178
+ console.log("\x1b[1m│\x1b[0m \x1b[1m│\x1b[0m");
179
+ console.log("\x1b[1m│\x1b[0m \x1b[36m1.\x1b[0m Run: \x1b[1mlean-ctx setup\x1b[0m \x1b[1m│\x1b[0m");
180
+ console.log("\x1b[1m│\x1b[0m \x1b[2mConfigures shell, editors, and agent rules\x1b[0m \x1b[1m│\x1b[0m");
181
+ console.log("\x1b[1m│\x1b[0m \x1b[1m│\x1b[0m");
182
+ console.log("\x1b[1m│\x1b[0m \x1b[36m2.\x1b[0m \x1b[33m\x1b[1mRestart your IDE\x1b[0m (Cursor, VS Code, etc.) \x1b[1m│\x1b[0m");
183
+ console.log("\x1b[1m│\x1b[0m \x1b[2mSo the MCP connection picks up lean-ctx\x1b[0m \x1b[1m│\x1b[0m");
184
+ console.log("\x1b[1m│\x1b[0m \x1b[1m│\x1b[0m");
185
+ console.log("\x1b[1m│\x1b[0m \x1b[2mDocs: https://leanctx.com/docs\x1b[0m \x1b[1m│\x1b[0m");
186
+ console.log("\x1b[1m└─────────────────────────────────────────────────────┘\x1b[0m");
177
187
  } finally {
178
188
  fs.rmSync(tmpDir, { recursive: true, force: true });
179
189
  }