@tastehub/ckb-darwin-arm64 8.3.0 → 9.1.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.
Files changed (3) hide show
  1. package/bin/README.md +12 -2
  2. package/bin/ckb +0 -0
  3. package/package.json +1 -1
package/bin/README.md CHANGED
@@ -5,6 +5,8 @@
5
5
  [![npm version](https://img.shields.io/npm/v/@tastehub/ckb.svg)](https://www.npmjs.com/package/@tastehub/ckb)
6
6
  [![Website](https://img.shields.io/badge/website-codeknowledge.dev-teal.svg)](https://codeknowledge.dev)
7
7
  [![Documentation](https://img.shields.io/badge/docs-codeknowledge.dev-blue.svg)](https://codeknowledge.dev/docs)
8
+ [![LIP](https://img.shields.io/crates/v/lip-cli.svg?label=LIP&color=orange)](https://crates.io/crates/lip-cli)
9
+ [![LIP docs](https://img.shields.io/badge/LIP-docs-blue.svg)](https://lip-sigma.vercel.app/docs)
8
10
 
9
11
  CKB transforms your codebase into a queryable knowledge base. Ask questions, understand impact, find owners, detect dead code—all through CLI, API, or AI assistants.
10
12
 
@@ -142,7 +144,7 @@ claude mcp add --transport stdio ckb -- npx @tastehub/ckb mcp
142
144
 
143
145
  **Token efficiency shown at startup:**
144
146
  ```
145
- CKB MCP Server v8.0.0
147
+ CKB MCP Server v9.0.0
146
148
  Active tools: 14 / 76 (18%)
147
149
  Estimated context: ~1k tokens
148
150
  Preset: core
@@ -299,7 +301,7 @@ ckb ownership # File/path ownership
299
301
  ckb mcp # Start MCP server
300
302
  ```
301
303
 
302
- **v8.0 Compound Operations (via MCP):**
304
+ **v9.0 Compound Operations (via MCP):**
303
305
  ```bash
304
306
  # These tools combine multiple queries into single calls
305
307
  explore # Area exploration: symbols, dependencies, hotspots
@@ -572,9 +574,12 @@ CKB orchestrates multiple code intelligence backends:
572
574
  - **SCIP** — Precise, pre-indexed symbol data (fastest)
573
575
  - **LSP** — Real-time language server queries
574
576
  - **Git** — Blame, history, churn analysis, ownership
577
+ - **LIP** — Semantic embedding daemon for nearest-neighbour search and re-ranking (optional, recommended)
575
578
 
576
579
  Results are merged intelligently and compressed for LLM context limits.
577
580
 
581
+ > **LIP enhances semantic search, PR novelty detection, test discovery, file boundary analysis, and architecture coupling signals.** When LIP is running alongside CKB, search quality improves significantly — especially for natural-language queries that don't match symbol names literally. See [Hybrid Retrieval](https://github.com/SimplyLiz/CodeMCP/wiki/Hybrid-Retrieval) for details, or the [LIP documentation](https://lip-sigma.vercel.app/docs).
582
+
578
583
  Persistent knowledge survives across sessions:
579
584
  - **Module Registry** — Boundaries, responsibilities, tags
580
585
  - **Ownership Registry** — CODEOWNERS + git-blame with time decay
@@ -642,6 +647,11 @@ See the **[Full Documentation Wiki](https://github.com/SimplyLiz/CodeMCP/wiki)**
642
647
 
643
648
  **Optional (for enhanced analysis):**
644
649
  - SCIP indexer for your language (scip-go, scip-typescript, etc.) — run `ckb index` to auto-install
650
+ - [LIP v2.0](https://lip-sigma.vercel.app) semantic embedding daemon (requires Rust/cargo) — strongly recommended for best search quality ([docs](https://lip-sigma.vercel.app/docs), [crates.io](https://crates.io/crates/lip-cli)):
651
+ ```bash
652
+ cargo install lip-cli
653
+ lip daemon --socket ~/.local/share/lip/lip.sock
654
+ ```
645
655
 
646
656
  ## License
647
657
 
package/bin/ckb CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tastehub/ckb-darwin-arm64",
3
- "version": "8.3.0",
3
+ "version": "9.1.0",
4
4
  "description": "CKB binary for darwin-arm64",
5
5
  "os": ["darwin"],
6
6
  "cpu": ["arm64"],