lean-ctx-bin 2.6.1 → 2.7.0

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 +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lean-ctx-bin",
3
- "version": "2.6.1",
3
+ "version": "2.7.0",
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
@@ -150,6 +150,8 @@ async function main() {
150
150
  }
151
151
 
152
152
  console.log(`lean-ctx: installed to ${BINARY_PATH}`);
153
+ console.log("");
154
+ console.log("Next: run \x1b[1mlean-ctx setup\x1b[0m to configure your shell and editors automatically.");
153
155
  } finally {
154
156
  fs.rmSync(tmpDir, { recursive: true, force: true });
155
157
  }