@senoldogann/context-manager 0.1.12 → 0.1.14

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 +10 -1
  2. package/bin/ccm.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,16 @@ 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
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.8';
9
+ const VERSION = "0.1.10";
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.12",
3
+ "version": "0.1.14",
4
4
  "description": "LLM Context Manager MCP Server & CLI wrapper using npx",
5
5
  "main": "bin/ccm.js",
6
6
  "bin": {