@tastehub/ckb-linux-arm64 7.1.0 → 7.2.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 +20 -1
- package/bin/ckb +0 -0
- package/package.json +1 -1
package/bin/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# CKB — Code Knowledge Backend
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@tastehub/ckb)
|
|
4
|
+
[](https://github.com/SimplyLiz/CodeMCP/wiki)
|
|
5
|
+
|
|
3
6
|
**The missing link between your codebase and AI assistants.**
|
|
4
7
|
|
|
5
8
|
CKB gives AI assistants deep understanding of your code. Instead of grepping through files, your AI can now *navigate* code like a senior engineer—with knowledge of who owns what, what's risky to change, and how everything connects.
|
|
@@ -164,8 +167,21 @@ Now Claude can answer questions like:
|
|
|
164
167
|
### Zero-Friction UX (v7.0)
|
|
165
168
|
- **npm Distribution** — `npm install -g @tastehub/ckb` or `npx @tastehub/ckb`
|
|
166
169
|
- **Auto-Setup** — `ckb setup` configures Claude Code integration automatically
|
|
170
|
+
|
|
171
|
+
### Zero-Index Operation (v7.1)
|
|
172
|
+
- **Tree-sitter Fallback** — Symbol search works without SCIP index (8 languages)
|
|
167
173
|
- **Auto-Index** — `ckb index` detects language and runs the right SCIP indexer
|
|
168
|
-
- **
|
|
174
|
+
- **Install Guidance** — Shows indexer install commands when missing
|
|
175
|
+
- **Universal MCP Docs** — Setup for Claude Code, Cursor, Windsurf, VS Code, OpenCode, Claude Desktop
|
|
176
|
+
|
|
177
|
+
### Smart Indexing & Explicit Tiers (v7.2)
|
|
178
|
+
- **Skip-if-Fresh** — `ckb index` automatically skips if index is current with HEAD
|
|
179
|
+
- **Freshness Tracking** — Tracks commits behind HEAD + uncommitted changes
|
|
180
|
+
- **Index Status** — `ckb status` shows index freshness with commit hash
|
|
181
|
+
- **Watch Mode** — `ckb mcp --watch` polls every 30s and auto-reindexes when stale
|
|
182
|
+
- **Lock File** — Prevents concurrent indexing with flock-based locking
|
|
183
|
+
- **Explicit Tiers** — Control analysis mode: `--tier=fast|standard|full` or `CKB_TIER` env var
|
|
184
|
+
- **Tier Diagnostics** — `ckb doctor --tier enhanced` shows exactly what's missing and how to fix it
|
|
169
185
|
|
|
170
186
|
## MCP Tools (58 Available)
|
|
171
187
|
|
|
@@ -286,6 +302,9 @@ ckb decisions
|
|
|
286
302
|
# Run diagnostics
|
|
287
303
|
ckb doctor
|
|
288
304
|
|
|
305
|
+
# Check tier-specific requirements
|
|
306
|
+
ckb doctor --tier enhanced
|
|
307
|
+
|
|
289
308
|
# Start MCP server for AI assistants
|
|
290
309
|
ckb mcp
|
|
291
310
|
```
|
package/bin/ckb
CHANGED
|
Binary file
|