vexp-cli 3.1.2 → 3.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/README.md +1 -1
- package/dist/agent-config.js +213 -1
- package/dist/cli.js +11 -2
- package/dist/doctor.js +307 -12
- package/dist/mcp-supervisor.js +36 -1
- package/dist/serve.js +8 -0
- package/dist/slow-mount.js +81 -0
- package/dist/socket-path.js +24 -0
- package/mcp/mcp-server.cjs +6 -6
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vexp-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Local-first context engine for AI coding agents. Pre-indexes your codebase into a dependency graph and feeds any MCP agent only the code that matters — 87% fewer tokens per call. New in 2.5: mechanical work verification and a PII/secret scanner. Works with Claude Code, Cursor, Codex, Copilot, Windsurf, Cline, Aider and 14 agents. Your code never leaves your machine.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -105,10 +105,10 @@
|
|
|
105
105
|
},
|
|
106
106
|
"homepage": "https://vexp.dev",
|
|
107
107
|
"optionalDependencies": {
|
|
108
|
-
"@vexp/core-linux-x64": "3.
|
|
109
|
-
"@vexp/core-linux-arm64": "3.
|
|
110
|
-
"@vexp/core-darwin-x64": "3.
|
|
111
|
-
"@vexp/core-darwin-arm64": "3.
|
|
112
|
-
"@vexp/core-win32-x64": "3.
|
|
108
|
+
"@vexp/core-linux-x64": "3.2.0",
|
|
109
|
+
"@vexp/core-linux-arm64": "3.2.0",
|
|
110
|
+
"@vexp/core-darwin-x64": "3.2.0",
|
|
111
|
+
"@vexp/core-darwin-arm64": "3.2.0",
|
|
112
|
+
"@vexp/core-win32-x64": "3.2.0"
|
|
113
113
|
}
|
|
114
114
|
}
|