vexp-cli 1.2.15 → 1.2.16

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 CHANGED
@@ -35,7 +35,7 @@ vexp setup --agents claude,cursor # Configure specific agents only
35
35
  vexp setup --dry-run # Preview what would be configured
36
36
  ```
37
37
 
38
- Auto-detects and configures: Claude Code, Cursor, Windsurf, GitHub Copilot, Continue.dev, Zed, Codex, Opencode, Kilo Code, Kiro, Antigravity.
38
+ Auto-detects and configures: Claude Code, Cursor, Windsurf, GitHub Copilot, Continue.dev, Augment, Zed, Codex, Opencode, Kilo Code, Kiro, Antigravity.
39
39
 
40
40
  ### `vexp init [dir]`
41
41
 
@@ -129,12 +129,45 @@ vexp daemon-cmd logs --follow
129
129
 
130
130
  ### `vexp hooks <action>`
131
131
 
132
- Manage git hooks for automatic index updates.
132
+ Manage git hooks for automatic index updates. Hooks use marker-delimited sections (`# --- vexp start/end ---`) that coexist with existing hooks (husky, lint-staged, etc.).
133
133
 
134
134
  ```bash
135
- vexp hooks install # Install git hooks
135
+ vexp hooks install # Install git hooks (appends to existing hooks)
136
136
  vexp hooks check # Check hook status
137
- vexp hooks remove # Remove hooks
137
+ vexp hooks remove # Remove hooks (only vexp section, preserves your hooks)
138
+ ```
139
+
140
+ ### `vexp activate [key]`
141
+
142
+ Activate a Pro or Team license key. The license is shared with the VS Code extension via `~/.vexp/license.jwt`.
143
+
144
+ ```bash
145
+ vexp activate <license-key>
146
+ # ✓ License activated!
147
+ # Plan: pro
148
+ # Email: you@example.com
149
+ # Expires: 2027-02-28
150
+ ```
151
+
152
+ ### `vexp deactivate`
153
+
154
+ Remove the current license and revert to Free plan limits.
155
+
156
+ ```bash
157
+ vexp deactivate
158
+ # License removed. Free plan limits are now active.
159
+ ```
160
+
161
+ ### `vexp license`
162
+
163
+ Show current license status and active limits.
164
+
165
+ ```bash
166
+ vexp license
167
+ # Plan: pro
168
+ # Max nodes: 50,000
169
+ # Max repos: 3
170
+ # All tools: yes
138
171
  ```
139
172
 
140
173
  ### `vexp version`
@@ -143,8 +176,8 @@ Show version information.
143
176
 
144
177
  ```bash
145
178
  vexp version
146
- # vexp CLI: 1.2.15
147
- # vexp core: 1.2.14
179
+ # vexp CLI: 1.2.16
180
+ # vexp core: 1.2.16
148
181
  ```
149
182
 
150
183
  ## MCP Integration
@@ -153,7 +186,8 @@ vexp provides context to AI coding agents via MCP. After running `vexp setup`, y
153
186
 
154
187
  | Tool | Description |
155
188
  |------|-------------|
156
- | `get_context_capsule` | Most relevant code for your task (semantic + graph search) |
189
+ | `run_pipeline` | **Primary tool.** Context + impact + memory in one call. Auto-detects intent. |
190
+ | `get_context_capsule` | Lightweight context search for quick lookups |
157
191
  | `get_impact_graph` | What breaks if you change a symbol |
158
192
  | `search_logic_flow` | Execution paths between functions |
159
193
  | `get_skeleton` | Token-efficient file structure |
@@ -162,11 +196,13 @@ vexp provides context to AI coding agents via MCP. After running `vexp setup`, y
162
196
  | `search_memory` | Cross-session search for past decisions |
163
197
  | `save_observation` | Persist insights with code symbol linking |
164
198
 
199
+ > The CLI enforces the same Free/Pro/Team limits as the VS Code extension. Free plan: `run_pipeline` runs without impact/flow steps. Pro/Team: full pipeline.
200
+
165
201
  ### Manual MCP Configuration
166
202
 
167
203
  If you prefer to configure MCP manually instead of using `vexp setup`:
168
204
 
169
- **Claude Code** (`~/.claude.json`):
205
+ **Claude Code** (`~/.claude/settings.json`):
170
206
  ```json
171
207
  {
172
208
  "mcpServers": {