@senoldogann/context-manager 0.1.14 → 0.1.17

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 (3) hide show
  1. package/README.md +8 -6
  2. package/bin/ccm.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -21,8 +21,10 @@ The easiest way to get started. This will automatically add CCM to your Claude o
21
21
  npx @senoldogann/context-manager install
22
22
  ```
23
23
 
24
- ### 2. Index your Project
25
- Run the indexer in your project root:
24
+ ### 2. Index your Project (Automatic)
25
+ CCM now implements **Lazy Indexing**. You don't actually need to run this command; the MCP server will automatically index your project the first time you or your AI agent run a query.
26
+
27
+ If you still want to index manually:
26
28
  ```bash
27
29
  npx @senoldogann/context-manager index --path .
28
30
  ```
@@ -72,9 +74,9 @@ This package is a lightweight wrapper that:
72
74
 
73
75
  For more details, visit the [Main Repository](https://github.com/senoldogann/LLM-Context-Manager).
74
76
 
75
- ### 🆕 v0.1.8 Updates
76
- * **Multi-Language Support:** Full indexing for `.md`, `.json`, `.yaml`, `.toml` and more.
77
- * **Zero-Config:** Improved project root detection.
78
- * **Resilient Downloads:** Fixed binary download issues with atomic file creation.
77
+ ### 🆕 v0.1.15 Updates
78
+ * **Lazy Indexing:** Automatic project indexing on first query. No background hogging.
79
+ * **Universal Support:** Falls back to generic text indexing for ALL file types.
80
+ * **Zero-Config:** Improved project root detection and cross-platform binary handling.
79
81
 
80
82
  Built with ❤️ in **Rust**.
package/bin/ccm.js CHANGED
@@ -6,7 +6,7 @@ const fs = require('fs');
6
6
  const os = require('os');
7
7
  const https = require('https');
8
8
 
9
- const VERSION = "0.1.10";
9
+ const VERSION = "0.1.15";
10
10
  const REPO = 'senoldogann/LLM-Context-Manager';
11
11
  const BIN_DIR = path.join(os.homedir(), '.ccm', 'bin');
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@senoldogann/context-manager",
3
- "version": "0.1.14",
3
+ "version": "0.1.17",
4
4
  "description": "LLM Context Manager MCP Server & CLI wrapper using npx",
5
5
  "main": "bin/ccm.js",
6
6
  "bin": {