@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.
Files changed (3) hide show
  1. package/README.md +18 -7
  2. package/bin/ccm.js +1 -1
  3. 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
- ### 1. Auto-Configure your Editor
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
- 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:
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.8 Updates
67
- * **Multi-Language Support:** Full indexing for `.md`, `.json`, `.yaml`, `.toml` and more.
68
- * **Zero-Config:** Improved project root detection.
69
- * **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.
70
81
 
71
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.9';
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.13",
3
+ "version": "0.1.16",
4
4
  "description": "LLM Context Manager MCP Server & CLI wrapper using npx",
5
5
  "main": "bin/ccm.js",
6
6
  "bin": {