@voria/cli 0.0.4 → 0.0.5
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 +75 -380
- package/bin/voria +625 -486
- package/docs/CHANGELOG.md +19 -0
- package/docs/USER_GUIDE.md +34 -5
- package/package.json +1 -1
- package/python/voria/__init__.py +1 -1
- package/python/voria/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/voria/__pycache__/engine.cpython-312.pyc +0 -0
- package/python/voria/core/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/voria/core/__pycache__/setup.cpython-312.pyc +0 -0
- package/python/voria/core/agent/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/voria/core/agent/__pycache__/loop.cpython-312.pyc +0 -0
- package/python/voria/core/executor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/voria/core/executor/__pycache__/executor.cpython-312.pyc +0 -0
- package/python/voria/core/executor/executor.py +5 -0
- package/python/voria/core/github/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/voria/core/github/__pycache__/client.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__init__.py +16 -0
- package/python/voria/core/llm/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/base.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/claude_provider.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/deepseek_provider.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/gemini_provider.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/kimi_provider.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/minimax_provider.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/modal_provider.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/model_discovery.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/openai_provider.cpython-312.pyc +0 -0
- package/python/voria/core/llm/__pycache__/siliconflow_provider.cpython-312.pyc +0 -0
- package/python/voria/core/llm/base.py +12 -0
- package/python/voria/core/llm/claude_provider.py +46 -0
- package/python/voria/core/llm/deepseek_provider.py +109 -0
- package/python/voria/core/llm/gemini_provider.py +44 -0
- package/python/voria/core/llm/kimi_provider.py +109 -0
- package/python/voria/core/llm/minimax_provider.py +187 -0
- package/python/voria/core/llm/modal_provider.py +33 -0
- package/python/voria/core/llm/model_discovery.py +58 -16
- package/python/voria/core/llm/openai_provider.py +33 -0
- package/python/voria/core/llm/siliconflow_provider.py +109 -0
- package/python/voria/core/patcher/__pycache__/__init__.cpython-312.pyc +0 -0
- package/python/voria/core/patcher/__pycache__/patcher.cpython-312.pyc +0 -0
- package/python/voria/core/setup.py +4 -1
- package/python/voria/core/testing/__pycache__/definitions.cpython-312.pyc +0 -0
- package/python/voria/core/testing/__pycache__/runner.cpython-312.pyc +0 -0
- package/python/voria/core/testing/definitions.py +87 -0
- package/python/voria/core/testing/runner.py +324 -0
- package/python/voria/engine.py +736 -232
package/README.md
CHANGED
|
@@ -1,439 +1,134 @@
|
|
|
1
|
-
# voria
|
|
1
|
+
# voria v0.0.5
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**AI-Powered Security, Reliability & Bug-Fixing Engine**
|
|
4
4
|
|
|
5
|
-
voria is a CLI tool that
|
|
5
|
+
voria is a next-generation CLI tool that combines advanced AI code analysis with automated security pentesting and production reliability audits. Whether you're fixing a logic bug, generating a pull request, or performing a full security audit, voria handles the heavy lifting with precision and speed.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 🚀 Key Features in v0.0.5
|
|
8
10
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
- **Extensible** - Custom plugins for languages, VCS, CI/CD systems
|
|
11
|
+
- **⚡ Streaming Output** - Real-time LLM response streaming (token-by-token) for instant feedback.
|
|
12
|
+
- **🛡️ Full Security Scan (`voria scan`)** - Run 25+ security audits (SQLi, XSS, SSRF, etc.) in parallel.
|
|
13
|
+
- **👁️ Watch Mode (`voria watch`)** - Continuous codebase monitoring with automatic security re-validation.
|
|
14
|
+
- **🔥 Performance Benchmarking (`voria benchmark`)** - Real-world HTTP load testing with p95/p99 latency analysis.
|
|
15
|
+
- **🖇️ CI/CD Integration (`voria ci`)** - Export SARIF reports directly to GitHub Security dashboard.
|
|
16
|
+
- **🛠️ Auto-Fix (`voria fix --auto`)** - AI generation and automatic patch application in one command.
|
|
17
|
+
- **🔷 Premium Blue Theme** - Professional, high-contrast CLI interface with rich formatting.
|
|
18
|
+
- **🏗️ Hybrid Architecture** - Blazing fast Rust CLI paired with a flexible Python AI engine.
|
|
18
19
|
|
|
19
|
-
|
|
20
|
+
---
|
|
20
21
|
|
|
21
|
-
|
|
22
|
+
## 📦 Installation
|
|
22
23
|
|
|
23
24
|
```bash
|
|
24
25
|
npm install -g @voria/cli
|
|
25
26
|
```
|
|
26
27
|
|
|
27
|
-
###
|
|
28
|
-
|
|
28
|
+
### Initial Setup
|
|
29
29
|
```bash
|
|
30
|
-
cd your-project
|
|
31
30
|
voria --init
|
|
32
31
|
```
|
|
32
|
+
Follow the interactive wizard to configure your LLM provider (OpenAI, Claude, Gemini, Modal, DeepSeek, Kimi, MiniMax, or SiliconFlow), set your security budget, and select your test framework.
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
1. Choose LLM provider (OpenAI, Claude, Gemini, Modal, Kimi)
|
|
36
|
-
2. Enter API key
|
|
37
|
-
3. Set daily budget
|
|
38
|
-
4. Select test framework
|
|
39
|
-
|
|
40
|
-
### Set Up GitHub Token
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
voria --set-github-token
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
This stores your GitHub Personal Access Token to access repositories.
|
|
47
|
-
|
|
48
|
-
## Quick Start Workflow
|
|
34
|
+
---
|
|
49
35
|
|
|
50
|
-
|
|
36
|
+
## 🛡️ Pentesting & Security
|
|
51
37
|
|
|
52
|
-
|
|
53
|
-
- **Modal** (FREE): Get your token from [modal.com](https://modal.com)
|
|
54
|
-
- **OpenAI** (paid): Get your token from [openai.com](https://openai.com)
|
|
55
|
-
- **Gemini** (paid): Get your token from [google.com/ai/gemini](https://google.com/ai/gemini)
|
|
56
|
-
- **Claude** (paid): Get your token from [anthropic.com](https://anthropic.com)
|
|
38
|
+
voria is now a first-class security tool. It analyzes your code and infrastructure to find and optionally fix vulnerabilities.
|
|
57
39
|
|
|
40
|
+
### Full Project Scan
|
|
58
41
|
```bash
|
|
59
|
-
|
|
60
|
-
voria setup-modal YOUR_MODAL_API_KEY
|
|
61
|
-
|
|
62
|
-
# Or use interactively (will prompt for token)
|
|
63
|
-
voria setup-modal
|
|
42
|
+
voria scan all
|
|
64
43
|
```
|
|
44
|
+
Performs a deep audit of your entire project, reporting on SQL Injection, Cross-Site Scripting, Insecure Direct Object References, and more.
|
|
65
45
|
|
|
66
|
-
###
|
|
67
|
-
|
|
68
|
-
Configure your GitHub Personal Access Token to access your repositories:
|
|
69
|
-
|
|
46
|
+
### Security Diff
|
|
47
|
+
Compare two branches or commits to ensure no new vulnerabilities were introduced.
|
|
70
48
|
```bash
|
|
71
|
-
voria
|
|
49
|
+
voria diff main feature-br
|
|
72
50
|
```
|
|
73
51
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
- Fetch issue details
|
|
77
|
-
- Create pull requests with fixes
|
|
78
|
-
|
|
79
|
-
### Step 3: List Issues from a Repository
|
|
80
|
-
|
|
81
|
-
See all open issues in any of your repositories:
|
|
82
|
-
|
|
52
|
+
### Watch Mode
|
|
53
|
+
Keep voria running while you code. It will detect file changes and instantly re-run relevant security checks.
|
|
83
54
|
```bash
|
|
84
|
-
|
|
85
|
-
voria list-issues https://github.com/owner/repo
|
|
86
|
-
|
|
87
|
-
# Or use owner/repo format
|
|
88
|
-
voria list-issues owner/repo
|
|
89
|
-
|
|
90
|
-
# Or provide interactively
|
|
91
|
-
voria list-issues # Will prompt for repo URL
|
|
55
|
+
voria watch sql_injection,xss
|
|
92
56
|
```
|
|
93
57
|
|
|
94
|
-
|
|
95
|
-
- Issue number
|
|
96
|
-
- Title
|
|
97
|
-
- Labels
|
|
98
|
-
- Status
|
|
99
|
-
- Link to issue
|
|
58
|
+
---
|
|
100
59
|
|
|
101
|
-
|
|
60
|
+
## ⚡ Reliability & Performance
|
|
102
61
|
|
|
103
|
-
|
|
62
|
+
Ensure your production code can handle the heat.
|
|
104
63
|
|
|
64
|
+
### HTTP Benchmarking
|
|
105
65
|
```bash
|
|
106
|
-
|
|
107
|
-
voria fix 42 https://github.com/owner/repo
|
|
108
|
-
|
|
109
|
-
# Or use owner/repo format
|
|
110
|
-
voria fix 42 owner/repo
|
|
111
|
-
|
|
112
|
-
# Or provide the repo interactively
|
|
113
|
-
voria fix 42 # Will prompt for repo URL
|
|
66
|
+
voria benchmark https://api.myapp.com --requests 1000 --concurrency 50
|
|
114
67
|
```
|
|
68
|
+
Generates professional reports with latency distribution (Min, Max, P50, P95, P99) and status code counts.
|
|
115
69
|
|
|
116
|
-
|
|
117
|
-
1. Fetch the issue details from GitHub
|
|
118
|
-
2. Analyze the issue description
|
|
119
|
-
3. Use Modal LLM to generate a fix
|
|
120
|
-
4. Show you the proposed patch
|
|
121
|
-
5. You can then apply, test, and create a PR
|
|
122
|
-
|
|
123
|
-
## Complete Example Workflow
|
|
124
|
-
|
|
70
|
+
### Resilience Testing
|
|
125
71
|
```bash
|
|
126
|
-
|
|
127
|
-
voria
|
|
128
|
-
|
|
129
|
-
# 2. Setup GitHub once
|
|
130
|
-
voria set-github-token
|
|
131
|
-
|
|
132
|
-
# 3. List issues in your repo
|
|
133
|
-
voria list-issues owner/my-project
|
|
134
|
-
|
|
135
|
-
# 4. Fix issue #5
|
|
136
|
-
voria fix 5 owner/my-project
|
|
137
|
-
|
|
138
|
-
# 5. Fix issue #10 from different repo
|
|
139
|
-
voria fix 10 owner/another-project
|
|
140
|
-
|
|
141
|
-
# 6. Fix issue #3 with interactive prompts
|
|
142
|
-
voria fix 3
|
|
143
|
-
# Will ask for repo URL
|
|
72
|
+
voria test cpu_stress
|
|
73
|
+
voria test mem_stress
|
|
74
|
+
voria test network_latency
|
|
144
75
|
```
|
|
145
76
|
|
|
146
|
-
|
|
77
|
+
---
|
|
147
78
|
|
|
148
|
-
##
|
|
79
|
+
## 🤖 AI Bug Fixing
|
|
149
80
|
|
|
150
|
-
|
|
81
|
+
The core voria engine for automated issue resolution.
|
|
151
82
|
|
|
83
|
+
### Fix from GitHub Issue
|
|
152
84
|
```bash
|
|
153
|
-
|
|
154
|
-
voria setup-modal [TOKEN]
|
|
155
|
-
# Interactive mode if no token provided
|
|
156
|
-
|
|
157
|
-
# Setup GitHub Personal Access Token
|
|
158
|
-
voria set-github-token
|
|
159
|
-
# Required for accessing repositories
|
|
160
|
-
|
|
161
|
-
# List all issues in a repository
|
|
162
|
-
voria list-issues [REPO_URL_OR_OWNER/REPO]
|
|
163
|
-
# Shows all open issues with details
|
|
164
|
-
|
|
165
|
-
# Fix a specific Github issue
|
|
166
|
-
voria fix <ISSUE_NUMBER> [REPO_URL_OR_OWNER/REPO]
|
|
167
|
-
# Uses AI to generate a fix for the issue
|
|
168
|
-
|
|
169
|
-
# Plan how to fix a GitHub issue
|
|
170
|
-
voria plan <ISSUE_ID>
|
|
171
|
-
# Analyzes issue and proposes solution
|
|
172
|
-
|
|
173
|
-
# Apply an existing patch
|
|
174
|
-
voria apply <PLAN>
|
|
175
|
-
# Applies previously generated patch
|
|
85
|
+
voria fix 123 ansh/voria --auto
|
|
176
86
|
```
|
|
87
|
+
Fetches issue #123, analyzes the code, generates a patch, applies it, and verified the fix.
|
|
177
88
|
|
|
178
|
-
###
|
|
179
|
-
|
|
89
|
+
### Interactive Planning
|
|
180
90
|
```bash
|
|
181
|
-
|
|
182
|
-
voria setup-modal YOUR_API_KEY
|
|
183
|
-
voria set-github-token
|
|
184
|
-
|
|
185
|
-
# List issues from different repo formats
|
|
186
|
-
voria list-issues ansh/voria
|
|
187
|
-
voria list-issues https://github.com/ansh/voria
|
|
188
|
-
voria list-issues # Interactive mode
|
|
189
|
-
|
|
190
|
-
# Fix issues
|
|
191
|
-
voria fix 42 ansh/voria # With repo specified
|
|
192
|
-
voria fix 42 # Interactive mode prompts for repo
|
|
193
|
-
|
|
194
|
-
# Plan out a fix
|
|
195
|
-
voria plan 123
|
|
91
|
+
voria plan "Implement JWT authentication in the auth module"
|
|
196
92
|
```
|
|
197
93
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
### For Users
|
|
201
|
-
- **[Quick Start](docs/QUICKSTART.md)** - Get running in 5 minutes
|
|
202
|
-
- **[User Guide](docs/USER_GUIDE.md)** - Complete usage reference
|
|
203
|
-
- **[Examples](docs/EXAMPLES.md)** - 14 real-world usage scenarios
|
|
204
|
-
- **[Troubleshooting](docs/TROUBLESHOOTING.md)** - Common issues & solutions
|
|
205
|
-
|
|
206
|
-
### For Developers
|
|
207
|
-
- **[Architecture](docs/ARCHITECTURE.md)** - System design & data flows
|
|
208
|
-
- **[Design Decisions](docs/DESIGN_DECISIONS.md)** - Why we built it this way
|
|
209
|
-
- **[Modules](docs/MODULES.md)** - Python & Rust API reference
|
|
210
|
-
- **[IPC Protocol](docs/IPC_PROTOCOL.md)** - Inter-process communication spec
|
|
211
|
-
|
|
212
|
-
### For Contributors
|
|
213
|
-
- **[Contributing](docs/CONTRIBUTING.md)** - How to contribute
|
|
214
|
-
- **[Development](docs/DEVELOPMENT.md)** - Development setup & workflow
|
|
215
|
-
- **[Plugins](docs/PLUGINS.md)** - Custom plugins guide
|
|
216
|
-
- **[LLM Integration](docs/LLM_INTEGRATION.md)** - Add new LLM providers
|
|
217
|
-
|
|
218
|
-
### Operations & Advanced
|
|
219
|
-
- **[Performance Guide](docs/PERFORMANCE.md)** - Optimization strategies
|
|
220
|
-
- **[Security Best Practices](docs/SECURITY.md)** - Keep your setup secure
|
|
221
|
-
- **[Roadmap](docs/ROADMAP.md)** - Future features & timeline- **[Changelog](docs/CHANGELOG.md)** - Version history & releases
|
|
222
|
-
## Architecture
|
|
223
|
-
|
|
224
|
-
voria uses a **hybrid Rust + Python** architecture for performance and flexibility:
|
|
225
|
-
|
|
226
|
-
- **Node.js CLI** - Global command-line interface (distributed via npm)
|
|
227
|
-
- **Python Engine** - AI logic, LLM integration, code analysis
|
|
228
|
-
- **Rust Components** - Fast CLI binaries, system operations (planned)
|
|
229
|
-
|
|
230
|
-
**→ [Full Architecture Details](docs/ARCHITECTURE.md)**
|
|
231
|
-
|
|
232
|
-
1. **Analyze** - Read issue description and relevant code
|
|
233
|
-
2. **Generate** - AI creates a fix using your chosen LLM
|
|
234
|
-
3. **Test** - Runs your test suite to validate the fix
|
|
235
|
-
4. **Iterate** - If tests fail, refine and retry (up to 5 times)
|
|
236
|
-
5. **Create PR** - Submits pull request when tests pass
|
|
237
|
-
|
|
238
|
-
```mermaid
|
|
239
|
-
graph LR
|
|
240
|
-
A[Issue] -->|Read| B[Code Analysis]
|
|
241
|
-
B -->|Generate| C[AI Patch]
|
|
242
|
-
C -->|Apply| D[Test Suite]
|
|
243
|
-
D -->|✅ Pass| E[Create PR]
|
|
244
|
-
D -->|❌ Fail| F[Analyze Failure]
|
|
245
|
-
F -->|Refine| C
|
|
246
|
-
```
|
|
247
|
-
|
|
248
|
-
## Cost Estimates
|
|
249
|
-
|
|
250
|
-
| Provider | Monthly Cost | Speed | Quality |
|
|
251
|
-
|----------|-------------|-------|---------|
|
|
252
|
-
| Gemini | $1-5 | Fast | Good |
|
|
253
|
-
| Claude | $5-15 | Medium | Excellent |
|
|
254
|
-
| GPT-4 Mini | $10-20 | Medium | Very Good |
|
|
255
|
-
| GPT-4 Turbo | $30-50 | Slow | Best |
|
|
256
|
-
|
|
257
|
-
**Typical single fix: $0.50 - $3.00**
|
|
258
|
-
|
|
259
|
-
## Supported Frameworks
|
|
260
|
-
|
|
261
|
-
**Languages:** Python, JavaScript, Java, Go, Rust, Ruby, PHP, C++, C#
|
|
262
|
-
**Test Frameworks:** pytest, Jest, JUnit, Go testing, RSpec, Minitest, Mocha
|
|
263
|
-
**VCS:** GitHub, GitLab, Gitea
|
|
264
|
-
**CI/CD:** GitHub Actions, GitLab CI, Jenkins
|
|
265
|
-
|
|
266
|
-
See [Plugins documentation](docs/PLUGINS.md) for extending to more frameworks.
|
|
267
|
-
|
|
268
|
-
## Security
|
|
269
|
-
|
|
270
|
-
- API keys stored securely in `~/.voria/`
|
|
271
|
-
- Never logs credentials
|
|
272
|
-
- Automatic file backups before modifications
|
|
273
|
-
- Restricted code execution environments
|
|
274
|
-
- HTTPS-only LLM communication
|
|
275
|
-
|
|
276
|
-
**→ [Security Best Practices](docs/SECURITY.md)**
|
|
277
|
-
|
|
278
|
-
## Example Usage
|
|
94
|
+
---
|
|
279
95
|
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
96
|
+
## 🛠️ Commands Reference
|
|
97
|
+
|
|
98
|
+
| Command | Action |
|
|
99
|
+
|---------|--------|
|
|
100
|
+
| `voria --init` | Interactive configuration wizard |
|
|
101
|
+
| `voria scan <cat>` | Run full security audit (e.g., `all`, `owasp`, `logic`) |
|
|
102
|
+
| `voria test <id>` | Run a specific test case (e.g., `sql_injection`, `deadlock`) |
|
|
103
|
+
| `voria fix <id>` | AI-power fix for a GitHub issue |
|
|
104
|
+
| `voria fix --auto` | Generate and apply fix immediately |
|
|
105
|
+
| `voria watch` | Monitor files and re-run tests on change |
|
|
106
|
+
| `voria benchmark` | High-performance HTTP load testing |
|
|
107
|
+
| `voria diff <a..b>` | Compare security posture between refs |
|
|
108
|
+
| `voria ci` | Generate SARIF report for CI pipelines |
|
|
109
|
+
| `voria --graph` | Visualize security health distribution |
|
|
284
110
|
|
|
285
|
-
|
|
286
|
-
```bash
|
|
287
|
-
voria --list-issues owner/repo
|
|
288
|
-
voria issue owner/repo 42
|
|
289
|
-
```
|
|
111
|
+
---
|
|
290
112
|
|
|
291
|
-
|
|
292
|
-
```bash
|
|
293
|
-
voria plan "Add type hints to utils.py" --dry-run
|
|
294
|
-
voria plan "Add type hints to utils.py" # Apply after review
|
|
295
|
-
```
|
|
113
|
+
## 📖 Documentation
|
|
296
114
|
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
```
|
|
115
|
+
- **[Installation Guide](docs/INSTALL.md)**
|
|
116
|
+
- **[Full Security Suite](docs/SECURITY_TESTS.md)**
|
|
117
|
+
- **[Architecture Deep-Dive](docs/ARCHITECTURE.md)**
|
|
118
|
+
- **[CI/CD Integration Guide](docs/CICD.md)**
|
|
302
119
|
|
|
303
|
-
|
|
304
|
-
```bash
|
|
305
|
-
voria issue owner/repo 40
|
|
306
|
-
voria issue owner/repo 41
|
|
307
|
-
voria issue owner/repo 42
|
|
308
|
-
```
|
|
120
|
+
---
|
|
309
121
|
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
## Contributing
|
|
313
|
-
|
|
314
|
-
We welcome contributions! See [Contributing Guide](docs/CONTRIBUTING.md) for:
|
|
315
|
-
- Setting up development environment
|
|
316
|
-
- Code style guidelines
|
|
317
|
-
- Testing procedures
|
|
318
|
-
- Pull request process
|
|
319
|
-
|
|
320
|
-
**Popular contribution areas:**
|
|
321
|
-
- Add new LLM provider support
|
|
322
|
-
- Add language/framework support
|
|
323
|
-
- Improve documentation
|
|
324
|
-
- Report and fix bugs
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
## Getting Help
|
|
328
|
-
|
|
329
|
-
- **[WhatsApp Support Group](https://chat.whatsapp.com/IWude2099NAJmLTs8kgEuE?mode=gi_t)** - Fastest support
|
|
330
|
-
- **[GitHub Discussions](https://github.com/Srizdebnath/voria/discussions)** - Ask questions
|
|
331
|
-
- **[GitHub Issues](https://github.com/Srizdebnath/voria/issues)** - Report bugs
|
|
332
|
-
- **[Troubleshooting Guide](docs/TROUBLESHOOTING.md)** - Common issues
|
|
333
|
-
|
|
334
|
-
## Roadmap
|
|
335
|
-
|
|
336
|
-
**Phase 1: Core CLI Architecture** ✅ COMPLETE
|
|
337
|
-
- ✅ Rust CLI base structure
|
|
338
|
-
- ✅ Python engine with NDJSON IPC
|
|
339
|
-
- ✅ Process management and communication
|
|
340
|
-
|
|
341
|
-
**Phase 2: Global CLI Distribution** ✅ COMPLETE
|
|
342
|
-
- ✅ npm package (@voria/cli)
|
|
343
|
-
- ✅ Global installation support
|
|
344
|
-
- ✅ Auto-discovery in PATH
|
|
345
|
-
- ✅ Version management
|
|
346
|
-
|
|
347
|
-
**Phase 3: Configuration & Setup** ✅ COMPLETE
|
|
348
|
-
- ✅ Interactive setup wizard (`voria --init`)
|
|
349
|
-
- ✅ LLM provider selection
|
|
350
|
-
- ✅ API key management
|
|
351
|
-
- ✅ Budget configuration
|
|
352
|
-
- ✅ Test framework detection
|
|
353
|
-
- ✅ Configuration management (`voria --config`)
|
|
354
|
-
- ✅ Per-project settings (`.voria.json`)
|
|
355
|
-
- ✅ Global settings (`~/.voria/config.json`)
|
|
356
|
-
|
|
357
|
-
**Phase 4: LLM Integration** ✅ COMPLETE
|
|
358
|
-
- ✅ Python LLM modules created
|
|
359
|
-
- ✅ Support for: OpenAI, Claude, Gemini, Modal, Kimi
|
|
360
|
-
- ✅ Token tracking and budget management
|
|
361
|
-
- ✅ CLI integration with `voria plan/issue` commands
|
|
362
|
-
- ✅ Model discovery and selection
|
|
363
|
-
|
|
364
|
-
**Phase 5: GitHub Integration** ✅ COMPLETE
|
|
365
|
-
- ✅ GitHub issue fetching via API
|
|
366
|
-
- ✅ PR auto-creation
|
|
367
|
-
- ✅ Commit management
|
|
368
|
-
- ✅ Branch handling
|
|
369
|
-
|
|
370
|
-
**Phase 6: Code Analysis & Patching** ✅ COMPLETE
|
|
371
|
-
- ✅ Multi-language parsing
|
|
372
|
-
- ✅ Code generation with LLMs
|
|
373
|
-
- ✅ Unified diff generation
|
|
374
|
-
- ✅ Safe patch application with rollback
|
|
375
|
-
|
|
376
|
-
**Phase 7: Testing & Validation** ✅ COMPLETE
|
|
377
|
-
- ✅ Multi-framework test execution (pytest, jest, go test)
|
|
378
|
-
- ✅ Failure analysis
|
|
379
|
-
- ✅ Iterative refinement (up to 5 iterations)
|
|
380
|
-
- ✅ Test result integration
|
|
381
|
-
|
|
382
|
-
**Phase 8: Agent Loop & Orchestration** ✅ COMPLETE
|
|
383
|
-
- ✅ Full workflow coordination
|
|
384
|
-
- ✅ Plan → Patch → Apply → Test → Analyze → Iterate
|
|
385
|
-
- ✅ Intelligent iteration and refinement
|
|
386
|
-
- ✅ Error recovery and fallbacks
|
|
387
|
-
|
|
388
|
-
**Phase 9: Enterprise Features** 📋 PLANNED
|
|
389
|
-
- ⏳ Team management
|
|
390
|
-
- ⏳ Approval workflows
|
|
391
|
-
- ⏳ Audit logging
|
|
392
|
-
- ⏳ Usage analytics
|
|
393
|
-
|
|
394
|
-
→ [Full Roadmap Details](docs/ROADMAP.md)
|
|
395
|
-
|
|
396
|
-
## Why voria?
|
|
397
|
-
|
|
398
|
-
- **Saves Time** - Fixes bugs in seconds instead of hours
|
|
399
|
-
- **Reduces Errors** - Tests validate every change
|
|
400
|
-
- **Scales Across Repos** - Works with any language/framework
|
|
401
|
-
- **Affordable** - $5-20/month typical cost
|
|
402
|
-
- **Extensible** - Add custom LLMs, languages, and workflows
|
|
403
|
-
- **Open Source** - Transparent, community-driven
|
|
404
|
-
|
|
405
|
-
## Stats
|
|
406
|
-
|
|
407
|
-
- Fixes issues automatically
|
|
408
|
-
- Tests every patch
|
|
409
|
-
- Iterates up to 5 times
|
|
410
|
-
- Cost-controlled with budgets
|
|
411
|
-
- Multi-language support
|
|
412
|
-
- Pluggable architecture
|
|
413
|
-
|
|
414
|
-
## What's Next
|
|
415
|
-
|
|
416
|
-
**Current Status:** All core features complete and production-ready!
|
|
417
|
-
|
|
418
|
-
**Now Available in v0.0.3:**
|
|
419
|
-
- ✅ Advanced code dependency analysis (`voria --graph`)
|
|
420
|
-
- ✅ Risk scoring for patches & codebase
|
|
421
|
-
- ✅ Expanded Chinese model support (Kimi, Minimax, DeepSeek)
|
|
422
|
-
- ✅ Enhanced hierarchical structural visualization
|
|
423
|
-
|
|
424
|
-
**Get involved:** [Contributing Guide](docs/CONTRIBUTING.md)
|
|
122
|
+
## 🤝 Community & Support
|
|
425
123
|
|
|
426
|
-
|
|
124
|
+
- **[WhatsApp Support](https://chat.whatsapp.com/IWude2099NAJmLTs8kgEuE)**
|
|
125
|
+
- **[GitHub Discussions](https://github.com/Srizdebnath/voria/discussions)**
|
|
126
|
+
- **[Bug Reports](https://github.com/Srizdebnath/voria/issues)**
|
|
427
127
|
|
|
428
|
-
|
|
429
|
-
→ [Installation Guide](docs/INSTALL.md)
|
|
128
|
+
License: MIT | Version: 0.0.5
|
|
430
129
|
|
|
431
130
|
**Want to contribute?**
|
|
432
131
|
→ [Contributor Guide](docs/CONTRIBUTING.md)
|
|
433
132
|
|
|
434
133
|
**Curious how it works?**
|
|
435
134
|
→ [Architecture Guide](docs/ARCHITECTURE.md)
|
|
436
|
-
|
|
437
|
-
---
|
|
438
|
-
|
|
439
|
-
|