@tastehub/ckb-linux-arm64 7.3.0 → 7.4.0
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/bin/README.md +45 -1
- package/bin/ckb +0 -0
- package/package.json +1 -1
package/bin/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# CKB — Code Knowledge Backend
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@tastehub/ckb)
|
|
4
|
+
[](https://codecov.io/gh/SimplyLiz/CodeMCP)
|
|
4
5
|
[](https://github.com/SimplyLiz/CodeMCP/wiki)
|
|
5
6
|
|
|
6
7
|
**The missing link between your codebase and AI assistants.**
|
|
@@ -161,9 +162,10 @@ Now Claude can answer questions like:
|
|
|
161
162
|
|
|
162
163
|
📋 **[Full Changelog](https://github.com/SimplyLiz/CodeMCP/blob/main/CHANGELOG.md)** — Detailed version history from v5.1 to current
|
|
163
164
|
|
|
164
|
-
### Zero-Friction UX (v7.0)
|
|
165
|
+
### Zero-Friction UX (v7.0+)
|
|
165
166
|
- **npm Distribution** — `npm install -g @tastehub/ckb` or `npx @tastehub/ckb`
|
|
166
167
|
- **Auto-Setup** — `ckb setup` configures Claude Code integration automatically
|
|
168
|
+
- **Update Notifications** — Automatic update check for npm installs (disable with `CKB_NO_UPDATE_CHECK=1`)
|
|
167
169
|
|
|
168
170
|
### Zero-Index Operation (v7.1)
|
|
169
171
|
- **Tree-sitter Fallback** — Symbol search works without SCIP index (8 languages)
|
|
@@ -188,6 +190,13 @@ Now Claude can answer questions like:
|
|
|
188
190
|
- **Rename Awareness** — Suggest new names when documented symbols are renamed
|
|
189
191
|
- **CI Enforcement** — `--fail-under` flag for documentation coverage thresholds
|
|
190
192
|
|
|
193
|
+
### Standardized Response Envelope (v7.4)
|
|
194
|
+
- **Unified Metadata** — All 76 MCP tool responses now include structured metadata
|
|
195
|
+
- **Confidence Tiers** — High/Medium/Low/Speculative tiers based on data freshness and source
|
|
196
|
+
- **Provenance Tracking** — Know which backends (SCIP, Git, LSP) contributed to results
|
|
197
|
+
- **Truncation Awareness** — Metadata shows when results are truncated and total counts
|
|
198
|
+
- **Suggested Next Calls** — Structured drilldown suggestions for follow-up queries
|
|
199
|
+
|
|
191
200
|
### Production Hardening (v7.3)
|
|
192
201
|
- **Delta Artifacts** — CI-generated diffs for O(delta) ingestion instead of O(N)
|
|
193
202
|
- **FTS5 Search** — SQLite FTS5 for instant search (replaces LIKE scans)
|
|
@@ -598,6 +607,41 @@ Use `cmd /c` wrapper in any config above:
|
|
|
598
607
|
|
|
599
608
|
</details>
|
|
600
609
|
|
|
610
|
+
<details>
|
|
611
|
+
<summary><strong>Presets (Token Optimization)</strong></summary>
|
|
612
|
+
|
|
613
|
+
CKB exposes 76 tools, but most sessions only need a subset. Use presets to reduce token overhead by up to 83%:
|
|
614
|
+
|
|
615
|
+
```bash
|
|
616
|
+
# Default: core preset (14 essential tools)
|
|
617
|
+
ckb mcp
|
|
618
|
+
|
|
619
|
+
# Workflow-specific presets
|
|
620
|
+
ckb mcp --preset=core # 14 tools - search, explain, impact (default)
|
|
621
|
+
ckb mcp --preset=review # 19 tools - core + diff, ownership
|
|
622
|
+
ckb mcp --preset=refactor # 19 tools - core + coupling, dead code
|
|
623
|
+
ckb mcp --preset=federation # 28 tools - core + cross-repo
|
|
624
|
+
ckb mcp --preset=docs # 20 tools - core + doc-symbol linking
|
|
625
|
+
ckb mcp --preset=ops # 25 tools - core + jobs, webhooks, metrics
|
|
626
|
+
ckb mcp --preset=full # 76 tools - all tools (legacy)
|
|
627
|
+
```
|
|
628
|
+
|
|
629
|
+
In MCP config:
|
|
630
|
+
```json
|
|
631
|
+
{
|
|
632
|
+
"mcpServers": {
|
|
633
|
+
"ckb": {
|
|
634
|
+
"command": "npx",
|
|
635
|
+
"args": ["@tastehub/ckb", "mcp", "--preset=review"]
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
```
|
|
640
|
+
|
|
641
|
+
The AI can dynamically expand the toolset mid-session using the `expandToolset` tool.
|
|
642
|
+
|
|
643
|
+
</details>
|
|
644
|
+
|
|
601
645
|
## Under the Hood
|
|
602
646
|
|
|
603
647
|
CKB orchestrates multiple code intelligence backends:
|
package/bin/ckb
CHANGED
|
Binary file
|