@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.
- package/README.md +24 -3
- package/bin/ccm.js +1 -1
- 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.
|
|
48
|
-
* **
|
|
49
|
-
* **
|
|
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