vexp-cli 3.2.4 → 3.3.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/README.md +4 -4
- package/dist/agent-config.js +415 -70
- package/dist/agent-consent.js +244 -0
- package/dist/cli.js +197 -95
- package/dist/codex-trust.js +608 -0
- package/dist/doctor.js +1112 -112
- package/dist/forget.js +7 -3
- package/dist/hook-template.js +78 -23
- package/dist/license-activate.js +90 -0
- package/dist/license.js +577 -125
- package/dist/serve.js +3 -2
- package/dist/socket-path.js +25 -1
- package/mcp/mcp-server.cjs +48 -48
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Give your AI coding agent the right context, then verify its work — 100% on your machine.**
|
|
4
4
|
|
|
5
|
-
`vexp-cli` is a local-first [MCP server](https://modelcontextprotocol.io) that pre-indexes your codebase into a dependency graph and feeds any AI coding agent only the code that matters for the task
|
|
5
|
+
`vexp-cli` is a local-first [MCP server](https://modelcontextprotocol.io) that pre-indexes your codebase into a dependency graph and feeds any AI coding agent only the code that matters for the task, so it stops spending tokens rediscovering your repo before every change. New in 2.5: it also checks the agent's work mechanically when it says it's done, and scans your code for PII and secrets before any model reads them. Your source never leaves your laptop.
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npm install -g vexp-cli
|
|
@@ -20,8 +20,8 @@ vexp index # builds the local graph — no login, no API key
|
|
|
20
20
|
|
|
21
21
|
Your AI agent burns most of its budget exploring your repo before writing a line of code. It reads entire files, floods its context window, and still misses the one function that mattered. vexp fixes the input **and** the output:
|
|
22
22
|
|
|
23
|
-
- **📉
|
|
24
|
-
- **⚡
|
|
23
|
+
- **📉 Fable-5-level results from Opus 5. At half the token price.** On the SWE-bench Pro public set, Claude Code running Claude Opus 5 with vexp resolved **81.7% (597/731)**. Anthropic reports 80.3% for Claude Fable 5 and 79.2% for Opus 5. $1.52 per task, 95% CI 78.7-84.3, every session published at [vexp.dev/benchmark](https://vexp.dev/benchmark).
|
|
24
|
+
- **⚡ One call, not a repo crawl.** vexp returns ranked pivot files with exact line ranges and blast radius instead of whole files, and since 3.0 the turn-zero orientation carries up to 3x more evidence, so your agent stops rediscovering the codebase before every change. Everything that could add a turn to your session is opt-in (`vexp setup --interventions`): by default vexp only subtracts.
|
|
25
25
|
- **🔍 Verifies the work (new in 2.5).** When your agent declares a task done, `verify_done` reports what's provably broken or missing — broken imports, parse errors, dependents never updated — each with file and line. No model grades anything; it's git + tree-sitter + the code graph.
|
|
26
26
|
- **🛡️ Shield scan (new in 2.5).** `vexp shield scan` shows the emails, API keys, tokens and private keys sitting in your comments and strings that every AI agent currently reads. Local, deterministic, masked.
|
|
27
27
|
- **🔒 100% local.** Zero network calls, zero cloud indexing, no account, no API key. Your code stays yours.
|
|
@@ -32,7 +32,7 @@ Your AI agent burns most of its budget exploring your repo before writing a line
|
|
|
32
32
|
vexp parses **34 languages** with tree-sitter into a local SQLite dependency graph, then serves your agent through the Model Context Protocol:
|
|
33
33
|
|
|
34
34
|
- `run_pipeline` — ranked pivot files + line ranges + blast radius, in one call
|
|
35
|
-
- `get_skeleton` — file structure
|
|
35
|
+
- `get_skeleton` — file structure (signatures, no bodies)
|
|
36
36
|
- `verify_done` — mechanical completion check
|
|
37
37
|
- `expand_vexp_ref` — full symbol bodies on demand
|
|
38
38
|
|