@senoldogann/context-manager 0.1.5 → 0.1.7
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 +16 -7
- package/bin/ccm.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,16 +18,20 @@ Run the indexer in your project root:
|
|
|
18
18
|
npx @senoldogann/context-manager index --path .
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
##
|
|
21
|
+
## ⚒️ Manual Configuration (Alternative)
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
If you prefer to configure your AI editor manually without the `install` command, add this to your `mcp_config.json`:
|
|
24
24
|
|
|
25
25
|
```json
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
26
|
+
{
|
|
27
|
+
"mcpServers": {
|
|
28
|
+
"context-manager": {
|
|
29
|
+
"command": "npx",
|
|
30
|
+
"args": ["-y", "@senoldogann/context-manager", "mcp"],
|
|
31
|
+
"env": {
|
|
32
|
+
"RUST_LOG": "info"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
31
35
|
}
|
|
32
36
|
}
|
|
33
37
|
```
|
|
@@ -39,3 +43,8 @@ This package is a lightweight wrapper that:
|
|
|
39
43
|
3. Automatically manages your global index and persistence in `~/.ccm`.
|
|
40
44
|
|
|
41
45
|
For more details, visit the [Main Repository](https://github.com/senoldogann/LLM-Context-Manager).
|
|
46
|
+
|
|
47
|
+
### 🆕 v0.1.7 Updates
|
|
48
|
+
* **Zero-Config:** Automatically detects project root.
|
|
49
|
+
* **Fixes:** Resolved context retrieval issues with absolute paths.
|
|
50
|
+
|
package/bin/ccm.js
CHANGED