@senoldogann/context-manager 0.1.11 → 0.1.13

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 +24 -3
  2. package/bin/ccm.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -36,6 +36,25 @@ If you prefer to configure your AI editor manually without the `install` command
36
36
  }
37
37
  ```
38
38
 
39
+ ## 💡 Pro-Tip: Enforcing CCM Usage
40
+ To ensure your AI agent (Claude, Cursor, etc.) always uses CCM for deep analysis, add this to your **Custom Instructions** or **System Prompt**:
41
+
42
+ > "You are an expert architect. For any question about the codebase, DO NOT guess. Use the `context-manager` tools to explore the Graph and Vector store. Always prioritize `search_code` to find entry points and `read_graph` to navigate dependencies before proposing any code changes."
43
+
44
+ ---
45
+
46
+ ## 🇹🇷 Türkçe Özet
47
+
48
+ Bu paket, **Cognitive Codebase Matrix (CCM)** için Node.js wrapper'ıdır. Rust kurulumuna gerek kalmadan CCM araçlarını kullanmanızı sağlar.
49
+
50
+ **Hızlı Kurulum:**
51
+ ```bash
52
+ npx @senoldogann/context-manager install
53
+ npx @senoldogann/context-manager index --path .
54
+ ```
55
+
56
+ ---
57
+
39
58
  ## 📦 What this package does
40
59
  This package is a lightweight wrapper that:
41
60
  1. Detects your OS and CPU architecture.
@@ -44,7 +63,9 @@ This package is a lightweight wrapper that:
44
63
 
45
64
  For more details, visit the [Main Repository](https://github.com/senoldogann/LLM-Context-Manager).
46
65
 
47
- ### 🆕 v0.1.7 Updates
48
- * **Zero-Config:** Automatically detects project root.
49
- * **Fixes:** Resolved context retrieval issues with absolute paths.
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.
50
70
 
71
+ 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.8';
9
+ const VERSION = '0.1.9';
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.11",
3
+ "version": "0.1.13",
4
4
  "description": "LLM Context Manager MCP Server & CLI wrapper using npx",
5
5
  "main": "bin/ccm.js",
6
6
  "bin": {