vexp-cli 1.2.14 → 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
@@ -17,8 +17,7 @@ Requires Node.js >= 20. The platform-specific binary is installed automatically
17
17
  vexp setup
18
18
 
19
19
  # Or step by step:
20
- vexp init # Initialize vexp in your project
21
- vexp index # Index the codebase
20
+ vexp init # Initialize and index your project
22
21
  vexp setup --no-index # Configure agents only (skip indexing)
23
22
  ```
24
23
 
@@ -36,7 +35,16 @@ vexp setup --agents claude,cursor # Configure specific agents only
36
35
  vexp setup --dry-run # Preview what would be configured
37
36
  ```
38
37
 
39
- 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
+
40
+ ### `vexp init [dir]`
41
+
42
+ Initialize vexp for a project (index, create `.vexp/`, install hooks).
43
+
44
+ ```bash
45
+ vexp init
46
+ vexp init /path/to/project
47
+ ```
40
48
 
41
49
  ### `vexp index [dir]`
42
50
 
@@ -121,21 +129,45 @@ vexp daemon-cmd logs --follow
121
129
 
122
130
  ### `vexp hooks <action>`
123
131
 
124
- 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.).
125
133
 
126
134
  ```bash
127
- vexp hooks install # Install git hooks
135
+ vexp hooks install # Install git hooks (appends to existing hooks)
128
136
  vexp hooks check # Check hook status
129
- vexp hooks remove # Remove hooks
137
+ vexp hooks remove # Remove hooks (only vexp section, preserves your hooks)
130
138
  ```
131
139
 
132
- ### `vexp init [dir]`
140
+ ### `vexp activate [key]`
133
141
 
134
- Initialize vexp for a project (creates `.vexp/`, installs hooks).
142
+ Activate a Pro or Team license key. The license is shared with the VS Code extension via `~/.vexp/license.jwt`.
135
143
 
136
144
  ```bash
137
- vexp init
138
- vexp init /path/to/project
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
139
171
  ```
140
172
 
141
173
  ### `vexp version`
@@ -144,8 +176,8 @@ Show version information.
144
176
 
145
177
  ```bash
146
178
  vexp version
147
- # vexp CLI: 1.2.14
148
- # vexp core: 1.2.14
179
+ # vexp CLI: 1.2.16
180
+ # vexp core: 1.2.16
149
181
  ```
150
182
 
151
183
  ## MCP Integration
@@ -154,7 +186,8 @@ vexp provides context to AI coding agents via MCP. After running `vexp setup`, y
154
186
 
155
187
  | Tool | Description |
156
188
  |------|-------------|
157
- | `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 |
158
191
  | `get_impact_graph` | What breaks if you change a symbol |
159
192
  | `search_logic_flow` | Execution paths between functions |
160
193
  | `get_skeleton` | Token-efficient file structure |
@@ -163,11 +196,13 @@ vexp provides context to AI coding agents via MCP. After running `vexp setup`, y
163
196
  | `search_memory` | Cross-session search for past decisions |
164
197
  | `save_observation` | Persist insights with code symbol linking |
165
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
+
166
201
  ### Manual MCP Configuration
167
202
 
168
203
  If you prefer to configure MCP manually instead of using `vexp setup`:
169
204
 
170
- **Claude Code** (`~/.claude.json`):
205
+ **Claude Code** (`~/.claude/settings.json`):
171
206
  ```json
172
207
  {
173
208
  "mcpServers": {