@senoldogann/context-manager 0.1.14 → 0.1.16
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/README.md +8 -6
- package/bin/ccm.js +1 -1
- 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
|
-
|
|
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.
|
|
76
|
-
* **
|
|
77
|
-
* **
|
|
78
|
-
* **
|
|
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