@senoldogann/context-manager 0.1.29 → 0.1.31
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 +14 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,13 +104,14 @@ CCM uses a **Local-First** architecture:
|
|
|
104
104
|
|
|
105
105
|
### Environment Variables
|
|
106
106
|
|
|
107
|
-
Create `~/.ccm/.env
|
|
107
|
+
Create `~/.ccm/.env` (or start from the repository's `.env.example`):
|
|
108
108
|
|
|
109
109
|
```ini
|
|
110
110
|
# Local (Recommended)
|
|
111
111
|
EMBEDDING_PROVIDER=ollama
|
|
112
112
|
EMBEDDING_HOST=http://127.0.0.1:11434
|
|
113
113
|
EMBEDDING_MODEL=mxbai-embed-large
|
|
114
|
+
EMBEDDING_API_KEY=ollama
|
|
114
115
|
|
|
115
116
|
# Cloud (Optional)
|
|
116
117
|
EMBEDDING_PROVIDER=openai
|
|
@@ -139,6 +140,12 @@ CCM_EMBED_DATA_FILES=0
|
|
|
139
140
|
CCM_ALLOW_UNVERIFIED_BINARIES=0
|
|
140
141
|
```
|
|
141
142
|
|
|
143
|
+
Advanced overrides:
|
|
144
|
+
- `CCM_PROJECT_ROOT` pins the default project root used by the wrapper and MCP fallback engine.
|
|
145
|
+
- `CCM_DB_PATH` overrides the default MCP vector DB location.
|
|
146
|
+
- `.env.example` in the repository contains chunking, batch-size, hybrid-weight, and compatibility-alias settings such as `OPENAI_API_KEY`, `CCM_SKIP_CHECKSUM`, `CCM_MCP_REQUIRE_ALLOWED_ROOTS`, `CCM_EMBED_DATA`, and `EMBEDDING_DISABLED`.
|
|
147
|
+
- Hybrid scoring defaults and tuning notes live in [`docs/hybrid-ranking.md`](https://github.com/senoldogann/LLM-Context-Manager/blob/main/docs/hybrid-ranking.md).
|
|
148
|
+
|
|
142
149
|
**Production Tip:** Set `CCM_ALLOWED_ROOTS` and enable `CCM_REQUIRE_ALLOWED_ROOTS=1` to restrict MCP access.
|
|
143
150
|
|
|
144
151
|
---
|
|
@@ -169,7 +176,7 @@ This package handles:
|
|
|
169
176
|
- The npm wrapper verifies checksums before using downloaded binaries
|
|
170
177
|
- Redirects are restricted to approved GitHub release hosts
|
|
171
178
|
- Release builds run for Linux, macOS, and Windows before assets are attached
|
|
172
|
-
- npm
|
|
179
|
+
- npm publication is a manual step from `npm/` after the GitHub Release assets are attached
|
|
173
180
|
- The same smoke path is documented here and in the main repository README
|
|
174
181
|
|
|
175
182
|
### ✅ Binary Integrity
|
|
@@ -190,6 +197,11 @@ Enable `CCM_EMBED_DATA_FILES=1` to include them in semantic search.
|
|
|
190
197
|
|
|
191
198
|
## 📝 Changelog
|
|
192
199
|
|
|
200
|
+
### v0.1.31
|
|
201
|
+
- ✅ `index_project` is idempotent again and ignores CCM's own generated index files
|
|
202
|
+
- ✅ `search_code` falls back cleanly when embeddings are disabled
|
|
203
|
+
- ✅ Added a real-world Guardian MCP end-to-end test for all 9 tools
|
|
204
|
+
|
|
193
205
|
### v0.1.27
|
|
194
206
|
- ✅ `search_code` now returns node IDs and location metadata, with configurable limits
|
|
195
207
|
- ✅ New `find_nodes` MCP tool for graph node discovery before `read_graph`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@senoldogann/context-manager",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.31",
|
|
4
4
|
"description": "LLM Context Manager MCP Server & CLI wrapper using npx",
|
|
5
5
|
"repository": "https://github.com/senoldogann/LLM-Context-Manager",
|
|
6
6
|
"homepage": "https://github.com/senoldogann/LLM-Context-Manager",
|