vexp-cli 2.0.33 → 2.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.
- package/dist/license.js +4 -0
- package/package.json +6 -6
package/dist/license.js
CHANGED
|
@@ -319,6 +319,10 @@ function claimsToLimits(claims) {
|
|
|
319
319
|
return { maxNodes: 100_000, maxRepos: 0, allTools: true, plan: "tier3", email: claims.sub, renewsAt };
|
|
320
320
|
case "tier4":
|
|
321
321
|
return { maxNodes: 0, maxRepos: 0, allTools: true, plan: "tier4", email: claims.sub, renewsAt };
|
|
322
|
+
// WS-H H5 forward-compat: capacity plans (ent_500/ent_2000/ent_unlimited)
|
|
323
|
+
// are SERVER-ONLY (the self-hosted SDK gateway). A capacity JWT presented to
|
|
324
|
+
// the cli/vscode falls through here and fails-closed to FREE — never crashes,
|
|
325
|
+
// never grants entitlements meant for the server.
|
|
322
326
|
default:
|
|
323
327
|
return FREE_LIMITS;
|
|
324
328
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vexp-cli",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Vexp — Context Engine for AI Coding Agents. Pre-indexes your codebase into a dependency graph and delivers ranked context to any MCP-compatible agent. 58% lower cost per task, 90% fewer tool calls (SWE-bench Verified). Works with Claude Code, Cursor, Copilot, Windsurf, Codex, Cline, Aider, and 12+ agents. Local-first. Your code never leaves your machine.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -100,10 +100,10 @@
|
|
|
100
100
|
"node": ">=20.0.0"
|
|
101
101
|
},
|
|
102
102
|
"optionalDependencies": {
|
|
103
|
-
"@vexp/core-linux-x64": "2.0
|
|
104
|
-
"@vexp/core-linux-arm64": "2.0
|
|
105
|
-
"@vexp/core-darwin-x64": "2.0
|
|
106
|
-
"@vexp/core-darwin-arm64": "2.0
|
|
107
|
-
"@vexp/core-win32-x64": "2.0
|
|
103
|
+
"@vexp/core-linux-x64": "2.1.0",
|
|
104
|
+
"@vexp/core-linux-arm64": "2.1.0",
|
|
105
|
+
"@vexp/core-darwin-x64": "2.1.0",
|
|
106
|
+
"@vexp/core-darwin-arm64": "2.1.0",
|
|
107
|
+
"@vexp/core-win32-x64": "2.1.0"
|
|
108
108
|
}
|
|
109
109
|
}
|