vexp-cli 1.2.14 → 1.2.15
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 +11 -12
- package/package.json +2 -17
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
|
|
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
|
|
|
@@ -38,6 +37,15 @@ vexp setup --dry-run # Preview what would be configured
|
|
|
38
37
|
|
|
39
38
|
Auto-detects and configures: Claude Code, Cursor, Windsurf, GitHub Copilot, Continue.dev, Zed, Codex, Opencode, Kilo Code, Kiro, Antigravity.
|
|
40
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
|
+
```
|
|
48
|
+
|
|
41
49
|
### `vexp index [dir]`
|
|
42
50
|
|
|
43
51
|
Index a directory for code intelligence.
|
|
@@ -129,22 +137,13 @@ vexp hooks check # Check hook status
|
|
|
129
137
|
vexp hooks remove # Remove hooks
|
|
130
138
|
```
|
|
131
139
|
|
|
132
|
-
### `vexp init [dir]`
|
|
133
|
-
|
|
134
|
-
Initialize vexp for a project (creates `.vexp/`, installs hooks).
|
|
135
|
-
|
|
136
|
-
```bash
|
|
137
|
-
vexp init
|
|
138
|
-
vexp init /path/to/project
|
|
139
|
-
```
|
|
140
|
-
|
|
141
140
|
### `vexp version`
|
|
142
141
|
|
|
143
142
|
Show version information.
|
|
144
143
|
|
|
145
144
|
```bash
|
|
146
145
|
vexp version
|
|
147
|
-
# vexp CLI: 1.2.
|
|
146
|
+
# vexp CLI: 1.2.15
|
|
148
147
|
# vexp core: 1.2.14
|
|
149
148
|
```
|
|
150
149
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vexp-cli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.15",
|
|
4
4
|
"description": "vexp CLI — AI context engine for developer tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -29,26 +29,11 @@
|
|
|
29
29
|
},
|
|
30
30
|
"author": "Vexp",
|
|
31
31
|
"license": "MIT",
|
|
32
|
-
"keywords": [
|
|
33
|
-
"vexp",
|
|
34
|
-
"ai",
|
|
35
|
-
"context",
|
|
36
|
-
"mcp",
|
|
37
|
-
"coding-agent",
|
|
38
|
-
"graph-rag",
|
|
39
|
-
"code-intelligence"
|
|
40
|
-
],
|
|
32
|
+
"keywords": ["vexp", "ai", "context", "mcp", "coding-agent", "graph-rag", "code-intelligence"],
|
|
41
33
|
"publishConfig": {
|
|
42
34
|
"access": "public"
|
|
43
35
|
},
|
|
44
36
|
"engines": {
|
|
45
37
|
"node": ">=20.0.0"
|
|
46
|
-
},
|
|
47
|
-
"optionalDependencies": {
|
|
48
|
-
"@vexp/core-linux-x64": "1.2.14",
|
|
49
|
-
"@vexp/core-linux-arm64": "1.2.14",
|
|
50
|
-
"@vexp/core-darwin-x64": "1.2.14",
|
|
51
|
-
"@vexp/core-darwin-arm64": "1.2.14",
|
|
52
|
-
"@vexp/core-win32-x64": "1.2.14"
|
|
53
38
|
}
|
|
54
39
|
}
|