@vortex-ai/cli 0.1.45 → 0.1.50
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/.turbo/turbo-build.log +7 -7
- package/README.md +7 -2
- package/dist/index.js +13640 -1141
- package/dist/index.mjs +13635 -1136
- package/package.json +1 -1
- package/src/commands/config.ts +4 -2
- package/src/commands/init.ts +33 -18
- package/src/commands/review.ts +32 -47
- package/src/commands/search.ts +1 -1
- package/src/commands/solve.ts +147 -48
- package/src/index.ts +24 -51
- package/.vortex-bm25.json +0 -1
- package/.vortex.db +0 -0
- package/src/commands/analyze.ts +0 -74
- package/src/commands/fix-nitbits.ts +0 -63
- package/src/commands/suggest.ts +0 -54
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @vortex-ai/cli@0.1.
|
|
3
|
+
> @vortex-ai/cli@0.1.45 build /home/divyanshu/OSS/Personal_Projects/vortex/packages/cli
|
|
4
4
|
> tsup src/index.ts --format cjs,esm --external @xenova/transformers && cp ../db/prisma/schema.prisma ./schema.prisma
|
|
5
5
|
|
|
6
6
|
CLI Building entry: src/index.ts
|
|
@@ -9,12 +9,12 @@ CLI tsup v8.5.1
|
|
|
9
9
|
CLI Target: es2022
|
|
10
10
|
CJS Build start
|
|
11
11
|
ESM Build start
|
|
12
|
-
CJS dist/index.js
|
|
13
|
-
CJS ⚡️ Build success in
|
|
12
|
+
CJS dist/index.js 10.14 MB
|
|
13
|
+
CJS ⚡️ Build success in 552ms
|
|
14
|
+
ESM dist/dist-QRHQQQC6.mjs 117.00 B
|
|
15
|
+
ESM dist/chunk-QY5F34UD.mjs 4.88 KB
|
|
14
16
|
ESM dist/dist-DADLXJO5.mjs 117.00 B
|
|
15
17
|
ESM dist/chunk-74T65LPR.mjs 3.73 KB
|
|
16
|
-
ESM dist/chunk-QY5F34UD.mjs 4.88 KB
|
|
17
|
-
ESM dist/dist-QRHQQQC6.mjs 117.00 B
|
|
18
18
|
ESM dist/chunk-6DZX6EAA.mjs 1.70 KB
|
|
19
|
-
ESM dist/index.mjs
|
|
20
|
-
ESM ⚡️ Build success in
|
|
19
|
+
ESM dist/index.mjs 10.13 MB
|
|
20
|
+
ESM ⚡️ Build success in 554ms
|
package/README.md
CHANGED
|
@@ -28,6 +28,9 @@ vortex config set gemini "your_gemini_key_here"
|
|
|
28
28
|
# Add your Groq API key
|
|
29
29
|
vortex config set groq "your_groq_key_here"
|
|
30
30
|
|
|
31
|
+
# Add your OpenRouter API key (fallback provider)
|
|
32
|
+
vortex config set openrouter "your_openrouter_key_here"
|
|
33
|
+
|
|
31
34
|
# View your active configuration
|
|
32
35
|
vortex config list
|
|
33
36
|
```
|
|
@@ -57,7 +60,9 @@ vortex review --pr 42
|
|
|
57
60
|
- **`vortex search -q <query>`**: Semantic, natural language code search backed by AI explanations.
|
|
58
61
|
- **`vortex issue --id <id>`**: Analyzes GitHub issues and proposes step-by-step local code fixes.
|
|
59
62
|
- **`vortex graph`**: Automatically generates Mermaid dependency graphs of your files or entire project.
|
|
60
|
-
|
|
63
|
+
|
|
64
|
+
*Note: The CLI is deeply optimized for performance. We recently pruned obsolete commands to focus purely on autonomous intelligence.*
|
|
65
|
+
|
|
61
66
|
|
|
62
67
|
*Note: Most read-only analysis commands automatically cache LLM requests to speed up subsequent runs and save API costs.*
|
|
63
68
|
|
|
@@ -93,7 +98,7 @@ Instead of passing code blindly to an LLM, Vortex uses specialized agents:
|
|
|
93
98
|
- **Security Agent**: Scans for vulnerabilities and insecure patterns.
|
|
94
99
|
- **Architecture Agent**: Checks code for design consistency against your repo's existing patterns.
|
|
95
100
|
- **Synthesizer Agent**: Combines outputs into an actionable, unified review.
|
|
96
|
-
- **Base Agent (ReAct Loop)**: An autonomous loop that can execute file system tools, read code, and run terminal commands to iteratively solve tasks.
|
|
101
|
+
- **Base Agent (ReAct Loop)**: An autonomous loop that can execute file system tools, read code, search the web for missing library schemas, and run terminal commands to iteratively solve tasks.
|
|
97
102
|
|
|
98
103
|
### Memory & Retrieval
|
|
99
104
|
Vortex utilizes a multi-layered memory architecture to maintain context without exceeding token limits or sacrificing privacy.
|