ctxloom-pro 1.0.5 → 1.0.6
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/LICENSE +1 -0
- package/README.md +53 -3
- package/dist/VectorStore-G6RNAVQC.js +8 -0
- package/dist/chunk-KPNCYRWW.js +8409 -0
- package/dist/{chunk-ZYDVY7VZ.js → chunk-MZRK5LFU.js} +35 -30
- package/dist/{chunk-XNKTZGDX.js → chunk-NC4L5MCD.js} +32 -13
- package/dist/{chunk-IHXVD5SO.js → chunk-YXMXRVFH.js} +3 -4
- package/dist/{embedder-RECRKXTB.js → embedder-MUH5U4NC.js} +3 -3
- package/dist/index.js +456 -4820
- package/dist/logger-SVRJYSFC.js +7 -0
- package/dist/src-GYVQEDV5.js +163 -0
- package/dist/workers/indexerWorker.js +8 -5
- package/package.json +7 -4
- package/dist/ASTParser-3QJ637L6.js +0 -8
- package/dist/DependencyGraph-FGTNORTW.js +0 -10
- package/dist/VectorStore-UQNBYPBV.js +0 -8
- package/dist/chunk-5CJIMX6D.js +0 -1599
- package/dist/chunk-PSLPRDPL.js +0 -139
- package/dist/chunk-RE2V3FRF.js +0 -1052
- package/dist/logger-2FVN3AGZ.js +0 -7
- package/dist/rules-OMDOX7IJ.js +0 -15
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -2,12 +2,16 @@
|
|
|
2
2
|
|
|
3
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 92% token reduction.
|
|
4
4
|
|
|
5
|
-
No
|
|
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
|
+
|
|
9
|
+
## Getting Started
|
|
8
10
|
|
|
9
11
|
**Prerequisites:** Node.js 20+ and an MCP-compatible AI tool (Claude Code, Cursor, Windsurf, etc.)
|
|
10
12
|
|
|
13
|
+
### 1 — Install
|
|
14
|
+
|
|
11
15
|
```bash
|
|
12
16
|
# 1. Install globally
|
|
13
17
|
npm install -g ctxloom-pro
|
|
@@ -20,7 +24,51 @@ cd /path/to/your/project
|
|
|
20
24
|
ctxloom index
|
|
21
25
|
```
|
|
22
26
|
|
|
23
|
-
###
|
|
27
|
+
### 2 — Start your free trial
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
ctxloom trial
|
|
31
|
+
# Enter your email — a checkout link opens in your browser.
|
|
32
|
+
# No credit card. After checkout, Polar emails you a license key.
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Already have a key?
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
ctxloom activate ctxl_pro_<your-key>
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### 3 — Auto-configure your AI tools
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
ctxloom setup # detects Claude Code, Cursor, Windsurf, etc.
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### 4 — Index your project
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
cd /path/to/your/project
|
|
51
|
+
ctxloom index # builds vector + graph + git overlay
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Your AI assistant now has full structural context. Ask it anything about the codebase.
|
|
55
|
+
|
|
56
|
+
### License commands
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
ctxloom status # show tier, expiry, last validation
|
|
60
|
+
ctxloom deactivate # release this machine's seat (to move to a new machine)
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### CI / headless environments
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
CTXLOOM_LICENSE_KEY=ctxl_pro_<key> ctxloom index
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Set `CTXLOOM_LICENSE_KEY` in your CI secrets. The key is validated on every run — no local state written to the runner.
|
|
70
|
+
|
|
71
|
+
### Manual MCP Configuration
|
|
24
72
|
|
|
25
73
|
```jsonc
|
|
26
74
|
// ~/.claude/claude_desktop_config.json (or equivalent)
|
|
@@ -35,6 +83,8 @@ ctxloom index
|
|
|
35
83
|
```
|
|
36
84
|
|
|
37
85
|
> If installed globally: `"command": "ctxloom"` with `"args": []`.
|
|
86
|
+
>
|
|
87
|
+
> Pricing: **Pro** €9.90/mo or €99/yr (1 machine) · **Team** €19.90/mo or €199/yr (3 machines) · [ctxloom.com/pricing](https://ctxloom.com/pricing)
|
|
38
88
|
|
|
39
89
|
---
|
|
40
90
|
|