@senoldogann/context-manager 0.1.13 → 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 +18 -7
- package/bin/ccm.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,14 +6,25 @@ This is the Node.js wrapper for the **Cognitive Codebase Matrix (CCM)**. It allo
|
|
|
6
6
|
|
|
7
7
|
## 🚀 Quick Start
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
> [!IMPORTANT]
|
|
10
|
+
> **Prerequisite:** This tool relies on local AI models. You must have **[Ollama](https://ollama.com)** installed and running.
|
|
11
|
+
> CCM will **automatically pull** the required embedding model (`nomic-embed-text`) if missing, but the Ollama engine itself is required.
|
|
12
|
+
|
|
13
|
+
### 🔒 Privacy by Default
|
|
14
|
+
CCM uses a **Local-First** architecture by default. This means:
|
|
15
|
+
* Your code is **never** sent to 3rd party servers (OpenAI, Anthropic, etc.).
|
|
16
|
+
* All vector operations (Embedding) happen on your local machine.
|
|
17
|
+
* You can safely use it for internal or confidential projects.
|
|
18
|
+
|
|
10
19
|
The easiest way to get started. This will automatically add CCM to your Claude or Antigravity configuration:
|
|
11
20
|
```bash
|
|
12
21
|
npx @senoldogann/context-manager install
|
|
13
22
|
```
|
|
14
23
|
|
|
15
|
-
### 2. Index your Project
|
|
16
|
-
|
|
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:
|
|
17
28
|
```bash
|
|
18
29
|
npx @senoldogann/context-manager index --path .
|
|
19
30
|
```
|
|
@@ -63,9 +74,9 @@ This package is a lightweight wrapper that:
|
|
|
63
74
|
|
|
64
75
|
For more details, visit the [Main Repository](https://github.com/senoldogann/LLM-Context-Manager).
|
|
65
76
|
|
|
66
|
-
### 🆕 v0.1.
|
|
67
|
-
* **
|
|
68
|
-
* **
|
|
69
|
-
* **
|
|
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.
|
|
70
81
|
|
|
71
82
|
Built with ❤️ in **Rust**.
|
package/bin/ccm.js
CHANGED