@senoldogann/context-manager 0.1.24 → 0.1.25
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 +38 -0
- package/bin/ccm.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,6 +31,20 @@ npx @senoldogann/context-manager index --path .
|
|
|
31
31
|
|
|
32
32
|
**That's it!** Restart your AI editor and start asking questions about your code.
|
|
33
33
|
|
|
34
|
+
### First-Run Verification
|
|
35
|
+
|
|
36
|
+
Use this quick smoke test after install:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
# Verify the CLI responds
|
|
40
|
+
npx @senoldogann/context-manager query --text "src/main.rs:1"
|
|
41
|
+
|
|
42
|
+
# Verify the MCP binary starts
|
|
43
|
+
npx @senoldogann/context-manager mcp
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
If the wrapper is healthy, the query command should return code context and the MCP process should stay open waiting for stdio messages.
|
|
47
|
+
|
|
34
48
|
---
|
|
35
49
|
|
|
36
50
|
## 📖 What is CCM?
|
|
@@ -55,6 +69,15 @@ The npm wrapper downloads pre-built binaries and passes commands through:
|
|
|
55
69
|
| `npx @senoldogann/context-manager mcp` | Run MCP server directly |
|
|
56
70
|
| `npx @senoldogann/context-manager eval --tasks <file>` | Run evaluation tasks |
|
|
57
71
|
|
|
72
|
+
### Supported Hosts
|
|
73
|
+
|
|
74
|
+
| Host | Status |
|
|
75
|
+
|------|--------|
|
|
76
|
+
| Codex | Supported |
|
|
77
|
+
| Cursor | Supported |
|
|
78
|
+
| Claude Desktop | Supported |
|
|
79
|
+
| Antigravity | Supported |
|
|
80
|
+
|
|
58
81
|
### Options
|
|
59
82
|
|
|
60
83
|
```bash
|
|
@@ -140,6 +163,15 @@ This package handles:
|
|
|
140
163
|
2. Binary download from GitHub Releases
|
|
141
164
|
3. Global persistence in `~/.ccm`
|
|
142
165
|
|
|
166
|
+
### ✅ Release Reliability
|
|
167
|
+
|
|
168
|
+
- GitHub Releases publish platform binaries plus `checksums.txt`
|
|
169
|
+
- The npm wrapper verifies checksums before using downloaded binaries
|
|
170
|
+
- Redirects are restricted to approved GitHub release hosts
|
|
171
|
+
- Release builds run for Linux, macOS, and Windows before assets are attached
|
|
172
|
+
- npm publishing uses GitHub Actions trusted publishing with OIDC
|
|
173
|
+
- The same smoke path is documented here and in the main repository README
|
|
174
|
+
|
|
143
175
|
### ✅ Binary Integrity
|
|
144
176
|
|
|
145
177
|
Downloads are verified against `checksums.txt` from the GitHub Release.
|
|
@@ -152,10 +184,16 @@ Enable `CCM_EMBED_DATA_FILES=1` to include them in semantic search.
|
|
|
152
184
|
|
|
153
185
|
**Source:** https://github.com/senoldogann/LLM-Context-Manager
|
|
154
186
|
|
|
187
|
+
**Docs:** [English README](https://github.com/senoldogann/LLM-Context-Manager/blob/main/README.md) | [Turkish README](https://github.com/senoldogann/LLM-Context-Manager/blob/main/README.tr.md)
|
|
188
|
+
|
|
155
189
|
---
|
|
156
190
|
|
|
157
191
|
## 📝 Changelog
|
|
158
192
|
|
|
193
|
+
### v0.1.25
|
|
194
|
+
- ✅ npm publish now uses GitHub Actions trusted publishing (OIDC)
|
|
195
|
+
- ✅ Clearer first-run verification and release reliability docs
|
|
196
|
+
|
|
159
197
|
### v0.1.24
|
|
160
198
|
- ✅ Native `protoc` installation in GitHub Actions release builds
|
|
161
199
|
- ✅ Updated release workflow actions for newer runner compatibility
|
package/bin/ccm.js
CHANGED
|
@@ -7,7 +7,7 @@ const os = require('os');
|
|
|
7
7
|
const https = require('https');
|
|
8
8
|
const crypto = require('crypto');
|
|
9
9
|
|
|
10
|
-
const VERSION = "0.1.
|
|
10
|
+
const VERSION = "0.1.25";
|
|
11
11
|
const REPO = 'senoldogann/LLM-Context-Manager';
|
|
12
12
|
const BIN_DIR = path.join(os.homedir(), '.ccm', 'bin');
|
|
13
13
|
const CHECKSUMS_FILE = 'checksums.txt';
|