ctxloom-pro 1.5.6 → 1.7.1
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 +25 -3
- package/apps/dashboard/dist/server/index.js +544 -26
- package/apps/dashboard/package.json +2 -2
- package/dist/VectorStore-WDL3H7QT.js +9 -0
- package/dist/chunk-6FGTNOCP.js +397 -0
- package/dist/{chunk-FPMNXF4D.js → chunk-6W4DFPP2.js} +685 -43
- package/dist/{chunk-JULFFD7O.js → chunk-7S2ELKNU.js} +123 -3
- package/dist/{chunk-II2DPYRJ.js → chunk-YHLMQVBV.js} +200 -10
- package/dist/embedder-2JWDJUE2.js +26 -0
- package/dist/index.js +11 -11
- package/dist/setup/postinstall.js +1 -1
- package/dist/{src-DL44T55H.js → src-FQQOURSD.js} +6 -4
- package/dist/workers/indexerWorker.js +2 -2
- package/package.json +1 -1
- package/dist/VectorStore-2LVECRTY.js +0 -8
- package/dist/chunk-WDX4PJGL.js +0 -214
- package/dist/embedder-3AE4CSR7.js +0 -14
package/README.md
CHANGED
|
@@ -1,11 +1,33 @@
|
|
|
1
1
|
# ctxloom — The Universal Code Context Engine
|
|
2
2
|
|
|
3
|
-
A local-first MCP server that gives AI coding assistants deep structural understanding of your codebase through hybrid **Vector + AST + Graph** search, with **Skeletonization** for
|
|
3
|
+
A local-first MCP server that gives AI coding assistants deep structural understanding of your codebase through hybrid **Vector + AST + Graph** search, with **Skeletonization** for ~96% token reduction.
|
|
4
4
|
|
|
5
5
|
No cloud indexing. No Python. Everything runs on your machine.
|
|
6
6
|
|
|
7
7
|
> **ctxloom requires a license.** Start a free 7-day trial — no credit card required.
|
|
8
8
|
|
|
9
|
+
## v1.7.0 — what we can defend with numbers
|
|
10
|
+
|
|
11
|
+
Measured on a **5-repo × 3-PR external-oracle benchmark** (15 merged PRs from expressjs/express, tiangolo/fastapi, pallets/flask, gin-gonic/gin, encode/httpx — ground truth = the human-authored diff from GitHub, **not** the graph's own traversal):
|
|
12
|
+
|
|
13
|
+
| Metric | Value | What it means |
|
|
14
|
+
|-------------------------|----------:|---------------|
|
|
15
|
+
| **Graph reachability** | **0.94** | 94% of source-file ground truth is reachable from the entry point via BFS |
|
|
16
|
+
| **Source recall** | **0.61** | 61% of indexable PR files surfaced by the prediction algorithm |
|
|
17
|
+
| **Avg F1** | **0.42** | Honest. We report it instead of cherry-picking a prettier number. |
|
|
18
|
+
| **Symbol coverage** | **1.00** | Every AST-declared function/class/method/interface is in the symbol index |
|
|
19
|
+
| **Import coverage** | **1.00** | Every AST-found relative import resolves to a graph edge |
|
|
20
|
+
| **Token reduction** | **24.6×** | Naive baseline (full files + 1-hop imports) vs skeleton view — same production code path |
|
|
21
|
+
|
|
22
|
+
Plus:
|
|
23
|
+
|
|
24
|
+
- **18 languages** with import resolution + symbol indexing (TS/JS/Py/Go/Rust/Java/C#/Ruby/Kotlin/Swift/PHP/Dart/Vue/Jupyter/C/C++/Scala/Lua/Elixir/Zig)
|
|
25
|
+
- **17 MCP host adapters** with corrected paths for Continue, Codex, OpenCode (three hosts whose vendor docs had drifted)
|
|
26
|
+
- **Monorepo support** — streaming file walk + batched LanceDB upserts; 50k+ file repos no longer stall
|
|
27
|
+
- **Code-specific embedding upgrade** (opt-in via `CTXLOOM_EMBEDDING_MODEL=jina-code`) — +72.5% better discrimination on code-semantic queries
|
|
28
|
+
|
|
29
|
+
**Reproduce every number**: `npm run bench:full`. Full methodology in [`evaluate/methodology.md`](evaluate/methodology.md). Release notes in [`docs/v1.7.0-release-notes.md`](docs/v1.7.0-release-notes.md). Long-form rationale in [`blog/v1.7.0-the-honest-numbers-post.md`](blog/v1.7.0-the-honest-numbers-post.md).
|
|
30
|
+
|
|
9
31
|
## Multi-Project Support (v1.1.0)
|
|
10
32
|
|
|
11
33
|
ctxloom now supports analyzing multiple projects in a single MCP session. Every tool accepts an optional `project_root` parameter (alias or absolute path).
|
|
@@ -47,7 +69,7 @@ The full first-run flow is **one install + one trial + one init per project.** E
|
|
|
47
69
|
npm install -g ctxloom-pro
|
|
48
70
|
```
|
|
49
71
|
|
|
50
|
-
> **For local trial / dev use the unpinned command above is fine.** For unattended CI usage, pin to the exact version (`ctxloom-pro@1.
|
|
72
|
+
> **For local trial / dev use the unpinned command above is fine.** For unattended CI usage, pin to the exact version (`ctxloom-pro@1.7.1`) so future CLI releases don't silently desync your agent-spec coverage — see the workflow example below.
|
|
51
73
|
|
|
52
74
|
### 2 — Start your free trial (once per email)
|
|
53
75
|
|
|
@@ -361,7 +383,7 @@ jobs:
|
|
|
361
383
|
# Exact pin (not `@^1`) so future CLI releases that add/remove MCP
|
|
362
384
|
# tools don't silently desync your reviewer-agent specs. Bump on
|
|
363
385
|
# every release; see CHANGELOG.md for the live version table.
|
|
364
|
-
- run: npm install -g ctxloom-pro@1.
|
|
386
|
+
- run: npm install -g ctxloom-pro@1.7.1
|
|
365
387
|
- run: ctxloom index
|
|
366
388
|
- run: ctxloom rules check --json
|
|
367
389
|
```
|