ultra-dex 3.4.2 → 3.5.0
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 +362 -174
- package/assets/agents/0-orchestration/orchestrator.md +1 -1
- package/assets/cursor-rules/31-i18n.mdc +225 -0
- package/assets/cursor-rules/32-analytics.mdc +414 -0
- package/assets/cursor-rules/33-seo.mdc +529 -0
- package/assets/dashboard.html +652 -0
- package/assets/docs/QUICK-REFERENCE.md +3 -3
- package/assets/docs/README.md +6 -10
- package/assets/docs/ROADMAP.md +2 -2
- package/assets/docs/WORKFLOW-DIAGRAMS.md +1 -1
- package/assets/live-templates/ai-saas/package.json +40 -0
- package/assets/live-templates/next15-prisma-clerk/package.json +2 -0
- package/assets/live-templates/remix-supabase/package.json +2 -0
- package/assets/live-templates/sveltekit-drizzle/package.json +2 -0
- package/assets/playground.html +289 -0
- package/assets/templates/README.md +1 -1
- package/assets/templates/config/ledger.sample.jsonl +2 -0
- package/assets/templates/config/memory.sample.json +19 -0
- package/assets/templates/config/quality-gate.json +36 -0
- package/assets/templates/config/router.json +28 -0
- package/bin/demo-pro.js +41 -0
- package/bin/ultra-dex.js +137 -19
- package/lib/ai/hybrid-rag.js +501 -0
- package/lib/ai/model-router.js +588 -0
- package/lib/commands/advanced.js +97 -2
- package/lib/commands/agents.js +199 -115
- package/lib/commands/audit.js +118 -32
- package/lib/commands/auth.js +119 -0
- package/lib/commands/auto-implement.js +55 -16
- package/lib/commands/autonomous.js +408 -0
- package/lib/commands/banner.js +17 -17
- package/lib/commands/batch.js +264 -0
- package/lib/commands/brain.js +169 -0
- package/lib/commands/build.js +12 -6
- package/lib/commands/check-enhanced-v2.js +311 -0
- package/lib/commands/check-enhanced.js +278 -0
- package/lib/commands/ci-monitor.js +253 -30
- package/lib/commands/cloud.js +6 -6
- package/lib/commands/code-gen.js +673 -0
- package/lib/commands/dashboard-websocket-client.js +390 -0
- package/lib/commands/dashboard.js +290 -378
- package/lib/commands/deploy.js +663 -0
- package/lib/commands/diff.js +148 -48
- package/lib/commands/doctor.js +3 -3
- package/lib/commands/estimate.js +268 -0
- package/lib/commands/exec.js +29 -4
- package/lib/commands/export.js +1 -1
- package/lib/commands/github.js +1 -0
- package/lib/commands/init.js +57 -78
- package/lib/commands/integrate.js +423 -0
- package/lib/commands/memory.js +165 -0
- package/lib/commands/monitoring.js +39 -2
- package/lib/commands/pipeline.js +394 -0
- package/lib/commands/plan.js +251 -31
- package/lib/commands/playground.js +69 -0
- package/lib/commands/plugin.js +143 -0
- package/lib/commands/plugins.js +179 -0
- package/lib/commands/quality-enhanced.js +220 -0
- package/lib/commands/quality.js +460 -0
- package/lib/commands/review.js +4 -3
- package/lib/commands/run.js +99 -24
- package/lib/commands/scaffold-enhanced.js +827 -0
- package/lib/commands/search.js +78 -17
- package/lib/commands/serve.js +178 -25
- package/lib/commands/setup.js +245 -0
- package/lib/commands/state.js +90 -3
- package/lib/commands/suggest.js +128 -33
- package/lib/commands/swarm.js +122 -156
- package/lib/commands/sync-pm.js +374 -0
- package/lib/commands/sync.js +0 -1
- package/lib/commands/validate.js +1 -1
- package/lib/commands/verify.js +62 -4
- package/lib/commands/voice.js +147 -0
- package/lib/commands/watch.js +27 -3
- package/lib/commands/workflows.js +98 -19
- package/lib/commands/workspace.js +122 -0
- package/lib/kernel/agent.js +277 -0
- package/lib/kernel/context.js +107 -0
- package/lib/kernel/editor.js +90 -0
- package/lib/kernel/session.js +65 -0
- package/lib/kernel/tools.js +157 -0
- package/lib/mcp/client.js +2 -1
- package/lib/mcp/graph.js +275 -44
- package/lib/mcp/server.js +52 -17
- package/lib/mcp/tools.js +71 -85
- package/lib/mcp/websocket.js +272 -91
- package/lib/memory/multi-tier.js +457 -0
- package/lib/nlp/router.js +69 -0
- package/lib/plugin-system.js +246 -0
- package/lib/providers/base.js +3 -3
- package/lib/providers/index.js +12 -4
- package/lib/providers/langchain.js +2 -2
- package/lib/providers/langgraph.js +98 -0
- package/lib/providers/ollama.js +55 -1
- package/lib/providers/openai-assistants.js +4 -4
- package/lib/providers/openai.js +28 -0
- package/lib/quality/automation.js +229 -0
- package/lib/quality/scanner.js +242 -4
- package/lib/repl/index.js +238 -0
- package/lib/swarm/coordinator.js +0 -2
- package/lib/swarm/index.js +2 -4
- package/lib/swarm/protocol.js +1 -1
- package/lib/swarm/tiers.js +16 -2
- package/lib/themes/doomsday.js +4 -2
- package/lib/ui/diff.js +44 -0
- package/lib/ui/interactive.js +126 -0
- package/lib/ui/interface.js +5 -5
- package/lib/ui/layout.js +36 -0
- package/lib/ui/logger.js +68 -0
- package/lib/ui/renderer.js +207 -0
- package/lib/ui/spinners.js +1 -1
- package/lib/ui/theme.js +27 -75
- package/lib/utils/agents.ts +42 -0
- package/lib/utils/build-helpers.js +0 -3
- package/lib/utils/config-manager.js +24 -4
- package/lib/utils/config.js +11 -0
- package/lib/utils/contextual-help.js +265 -0
- package/lib/utils/dashboard-notifier.js +54 -0
- package/lib/utils/error-handler.js +291 -0
- package/lib/utils/error-recovery.js +1 -2
- package/lib/utils/files.js +1 -1
- package/lib/utils/files.ts +70 -0
- package/lib/utils/graph.js +1 -1
- package/lib/utils/history.js +306 -0
- package/lib/utils/messages.js +25 -17
- package/lib/utils/monitoring.js +45 -0
- package/lib/utils/performance.js +353 -0
- package/lib/utils/plugin-system.js +215 -0
- package/lib/utils/profiler.js +247 -0
- package/lib/utils/progress.js +4 -3
- package/lib/utils/reconciler.js +92 -0
- package/lib/utils/review-helpers.js +0 -1
- package/lib/utils/sessionPersistence.js +222 -0
- package/lib/utils/state-sync.js +93 -0
- package/lib/utils/theme-state.ts +22 -0
- package/lib/utils/validation.ts +54 -0
- package/lib/utils/version-display.js +2 -1
- package/lib/utils/version.js +17 -0
- package/lib/utils/version.ts +13 -0
- package/lib/vision/scanner.js +151 -0
- package/package.json +16 -3
- package/assets/docs/TUTORIAL.md +0 -182
- package/assets/docs/VERIFICATION.md +0 -108
- package/assets/saas-plan/04-Imp-Template.md +0 -5546
- package/lib/commands/agent-builder.js +0 -226
- package/lib/commands/placeholders.js +0 -11
package/README.md
CHANGED
|
@@ -1,256 +1,444 @@
|
|
|
1
|
-
# Ultra-Dex CLI
|
|
1
|
+
# Ultra-Dex CLI v3.5.0
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> **AI Orchestration Meta-Layer for SaaS Development** - The complete toolkit for AI-assisted software engineering.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[](https://www.npmjs.com/package/ultra-dex)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
7
|
|
|
8
|
+
## 🚀 What's New in v3.5.0 (February 2026)
|
|
9
|
+
|
|
10
|
+
### ✨ Major Features
|
|
11
|
+
|
|
12
|
+
#### 🎯 VS Code Extension Sidebar
|
|
13
|
+
Full IDE integration with 4 sidebar views:
|
|
7
14
|
```bash
|
|
8
|
-
#
|
|
9
|
-
|
|
15
|
+
# Install from VSIX or marketplace
|
|
16
|
+
# Access: Agent Explorer, Swarm Status, Context Preview, Quick Actions
|
|
17
|
+
```
|
|
10
18
|
|
|
11
|
-
|
|
12
|
-
|
|
19
|
+
#### ⚡ Real-Time WebSocket Dashboard
|
|
20
|
+
Instant updates, no polling:
|
|
21
|
+
```bash
|
|
22
|
+
npx ultra-dex dashboard # or: npx ultra-dex d
|
|
23
|
+
# Live agent status, auto-reconnect, connection indicators
|
|
24
|
+
```
|
|
13
25
|
|
|
14
|
-
|
|
15
|
-
|
|
26
|
+
#### 🧠 Session Persistence & Memory
|
|
27
|
+
Never lose context:
|
|
28
|
+
```bash
|
|
29
|
+
npx ultra-dex memory sessions # List all sessions
|
|
30
|
+
npx ultra-dex memory query "auth" # Search past decisions
|
|
31
|
+
```
|
|
16
32
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
33
|
+
### 📦 New Commands
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# 💰 Cost Estimation
|
|
37
|
+
npx ultra-dex estimate "Build login system"
|
|
38
|
+
npx ultra-dex estimate feature-impl --monthly 100
|
|
20
39
|
|
|
21
|
-
#
|
|
22
|
-
npx ultra-dex
|
|
40
|
+
# 🎤 Voice-to-Plan (Speech input)
|
|
41
|
+
npx ultra-dex voice "Create a task manager app"
|
|
42
|
+
npx ultra-dex voice --template full
|
|
23
43
|
|
|
24
|
-
#
|
|
25
|
-
npx ultra-dex
|
|
44
|
+
# 📋 Batch Execution
|
|
45
|
+
npx ultra-dex batch setup.json
|
|
46
|
+
npx ultra-dex batch deploy.txt --dry-run
|
|
26
47
|
|
|
27
|
-
#
|
|
28
|
-
npx ultra-dex
|
|
29
|
-
npx ultra-dex
|
|
48
|
+
# 🔄 Command History
|
|
49
|
+
npx ultra-dex history list
|
|
50
|
+
npx ultra-dex history replay abc123
|
|
51
|
+
|
|
52
|
+
# ⚙️ Setup Wizard
|
|
53
|
+
npx ultra-dex setup # Interactive configuration
|
|
54
|
+
npx ultra-dex setup --quick # Fast defaults
|
|
30
55
|
```
|
|
31
56
|
|
|
32
|
-
|
|
57
|
+
### 🔧 Enhanced Features
|
|
33
58
|
|
|
34
59
|
```bash
|
|
35
|
-
#
|
|
36
|
-
|
|
37
|
-
npx ultra-dex
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
npx ultra-dex
|
|
60
|
+
# Quick Aliases
|
|
61
|
+
npx ultra-dex s "task" # swarm
|
|
62
|
+
npx ultra-dex d # dashboard
|
|
63
|
+
npx ultra-dex v # verify
|
|
64
|
+
npx ultra-dex b # build
|
|
65
|
+
npx ultra-dex g "idea" # generate
|
|
66
|
+
npx ultra-dex i # init
|
|
67
|
+
npx ultra-dex st # status
|
|
68
|
+
npx ultra-dex m sessions # memory
|
|
69
|
+
|
|
70
|
+
# Shell Completions (Tab completion)
|
|
71
|
+
source <(ultra-dex completions bash) # Add to ~/.bashrc
|
|
72
|
+
source <(ultra-dex completions zsh) # Add to ~/.zshrc
|
|
73
|
+
|
|
74
|
+
# Smart Error Handling
|
|
75
|
+
# Auto-suggestions when commands fail
|
|
76
|
+
|
|
77
|
+
# Auto-Sync on File Save
|
|
78
|
+
npx ultra-dex watch --sync # Auto-runs sync --brain
|
|
41
79
|
```
|
|
42
80
|
|
|
43
|
-
|
|
81
|
+
### 🔄 CI/CD Integration
|
|
44
82
|
|
|
45
|
-
```
|
|
46
|
-
#
|
|
47
|
-
|
|
83
|
+
```yaml
|
|
84
|
+
# .github/workflows/ultra-dex.yml
|
|
85
|
+
- uses: Srujan0798/ultra-dex-action/verify@v1
|
|
86
|
+
with:
|
|
87
|
+
fail-on: 'incomplete-p0-sections'
|
|
88
|
+
min-alignment: '70'
|
|
48
89
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
90
|
+
- uses: Srujan0798/ultra-dex-action/align@v1
|
|
91
|
+
with:
|
|
92
|
+
comment-on-pr: 'true'
|
|
52
93
|
```
|
|
53
94
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
Generate production-ready boilerplate instantly:
|
|
95
|
+
### 📚 Example Repositories
|
|
57
96
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
97
|
+
Complete starter templates:
|
|
98
|
+
- **E-commerce** (Next.js + Stripe + PostgreSQL)
|
|
99
|
+
- **SaaS Analytics** (ClickHouse + Redis + Real-time)
|
|
100
|
+
- **Real-time Chat** (Socket.io + WebSocket)
|
|
61
101
|
|
|
62
|
-
|
|
63
|
-
npx ultra-dex scaffold next15-prisma-clerk
|
|
102
|
+
[View Examples](./examples/)
|
|
64
103
|
|
|
65
|
-
|
|
66
|
-
npx ultra-dex scaffold remix-supabase
|
|
104
|
+
---
|
|
67
105
|
|
|
68
|
-
|
|
69
|
-
npx ultra-dex scaffold sveltekit-drizzle
|
|
70
|
-
```
|
|
106
|
+
## 📊 By The Numbers
|
|
71
107
|
|
|
72
|
-
|
|
108
|
+
- **60 CLI Commands** (with 10 smart aliases)
|
|
109
|
+
- **34 Cursor Rules** for comprehensive guidance
|
|
110
|
+
- **4 VS Code Sidebar Views** for IDE integration
|
|
111
|
+
- **3 GitHub Actions** for CI/CD
|
|
112
|
+
- **3 Example Repositories** production-ready
|
|
113
|
+
- **26 Total Features** in v3.5.0
|
|
114
|
+
- **95/95 Tests Passing**
|
|
73
115
|
|
|
74
|
-
|
|
116
|
+
---
|
|
75
117
|
|
|
76
|
-
|
|
118
|
+
## 🚀 Quick Start (30 seconds)
|
|
77
119
|
|
|
78
120
|
```bash
|
|
79
|
-
#
|
|
80
|
-
|
|
121
|
+
# Install globally
|
|
122
|
+
npm install -g ultra-dex
|
|
123
|
+
|
|
124
|
+
# Or use npx (no install needed)
|
|
125
|
+
npx ultra-dex setup
|
|
126
|
+
|
|
127
|
+
# Initialize project
|
|
128
|
+
npx ultra-dex init
|
|
81
129
|
|
|
82
|
-
#
|
|
83
|
-
npx ultra-dex
|
|
130
|
+
# Generate plan from idea
|
|
131
|
+
npx ultra-dex generate "Your amazing SaaS idea"
|
|
132
|
+
|
|
133
|
+
# Start dashboard
|
|
134
|
+
npx ultra-dex dashboard
|
|
84
135
|
```
|
|
85
136
|
|
|
86
|
-
|
|
137
|
+
---
|
|
87
138
|
|
|
88
|
-
|
|
139
|
+
## 📖 Core Commands
|
|
89
140
|
|
|
141
|
+
### Project Management
|
|
90
142
|
```bash
|
|
91
|
-
npx ultra-dex
|
|
143
|
+
npx ultra-dex init # Initialize new project
|
|
144
|
+
npx ultra-dex generate "idea" # AI-generated implementation plan
|
|
145
|
+
npx ultra-dex swarm "objective" # Run autonomous agents
|
|
146
|
+
npx ultra-dex run <agent> # Run single agent
|
|
147
|
+
npx ultra-dex align # Check plan vs code alignment
|
|
148
|
+
npx ultra-dex verify # Verify implementation completeness
|
|
92
149
|
```
|
|
93
150
|
|
|
94
|
-
###
|
|
151
|
+
### Development
|
|
152
|
+
```bash
|
|
153
|
+
npx ultra-dex build # Build project
|
|
154
|
+
npx ultra-dex validate # Validate against standards
|
|
155
|
+
npx ultra-dex fix # Auto-fix issues
|
|
156
|
+
npx ultra-dex doctor # System diagnostics
|
|
157
|
+
npx ultra-dex exec "code" # Execute in sandbox
|
|
158
|
+
```
|
|
95
159
|
|
|
96
|
-
|
|
160
|
+
### Monitoring & Control
|
|
161
|
+
```bash
|
|
162
|
+
npx ultra-dex dashboard # Open God Mode dashboard
|
|
163
|
+
npx ultra-dex serve # Start MCP server
|
|
164
|
+
npx ultra-dex watch # Watch mode with auto-sync
|
|
165
|
+
npx ultra-dex status # Show project status
|
|
166
|
+
npx ultra-dex health # Health check
|
|
167
|
+
npx ultra-dex metrics # Show metrics
|
|
168
|
+
```
|
|
97
169
|
|
|
170
|
+
### Advanced
|
|
98
171
|
```bash
|
|
99
|
-
|
|
100
|
-
npx ultra-dex
|
|
172
|
+
npx ultra-dex sync --brain # Auto-sync CONTEXT.md
|
|
173
|
+
npx ultra-dex cloud # Cloud collaboration
|
|
174
|
+
npx ultra-dex github # GitHub integration
|
|
175
|
+
npx ultra-dex search "query" # Semantic search
|
|
176
|
+
npx ultra-dex memory # Persistent memory
|
|
177
|
+
npx ultra-dex batch file.json # Batch execution
|
|
178
|
+
npx ultra-dex history # Command history
|
|
101
179
|
```
|
|
102
180
|
|
|
103
|
-
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## 🎯 Key Features
|
|
184
|
+
|
|
185
|
+
### 1. 21-Step Verification Framework
|
|
186
|
+
Every task follows production-ready standards:
|
|
187
|
+
1. Understand requirement
|
|
188
|
+
2. List assumptions
|
|
189
|
+
3. Analyze logic flow
|
|
190
|
+
4. Decompose into steps
|
|
191
|
+
5. Prepare environment
|
|
192
|
+
6. Implement code
|
|
193
|
+
7. Document code
|
|
194
|
+
8. Write unit tests
|
|
195
|
+
9. Debug issues
|
|
196
|
+
10. Integrate systems
|
|
197
|
+
11. Validate output
|
|
198
|
+
12. UX check
|
|
199
|
+
13. Optimize performance
|
|
200
|
+
14. Security check
|
|
201
|
+
15. Refactor quality
|
|
202
|
+
16. Error handling
|
|
203
|
+
17. Document API
|
|
204
|
+
18. Version control
|
|
205
|
+
19. Build validation
|
|
206
|
+
20. Deploy ready
|
|
207
|
+
21. Final verify
|
|
208
|
+
|
|
209
|
+
### 2. 34 Cursor Rules
|
|
210
|
+
Production-grade coding standards:
|
|
211
|
+
- Core principles, TypeScript, React patterns
|
|
212
|
+
- Authentication, database, testing
|
|
213
|
+
- Security, performance, accessibility
|
|
214
|
+
- **NEW:** i18n, analytics, SEO
|
|
215
|
+
|
|
216
|
+
[View Rules](./cli/assets/cursor-rules/)
|
|
217
|
+
|
|
218
|
+
### 3. Agent Ecosystem
|
|
219
|
+
**17 Specialized Agents:**
|
|
220
|
+
- **Leadership:** @cto, @planner, @research
|
|
221
|
+
- **Development:** @backend, @frontend, @database
|
|
222
|
+
- **Security:** @auth, @security
|
|
223
|
+
- **DevOps:** @devops
|
|
224
|
+
- **Quality:** @debugger, @reviewer, @testing, @docs
|
|
225
|
+
- **Specialist:** @performance
|
|
226
|
+
- **Meta:** @orchestrator
|
|
227
|
+
|
|
228
|
+
### 4. Template System
|
|
229
|
+
**3 Template Variants:**
|
|
230
|
+
- **LITE** (12 sections) - Quick MVPs
|
|
231
|
+
- **FULL** (34 sections) - Complete projects
|
|
232
|
+
- **ENTERPRISE** (50+ sections) - Large-scale
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
## 🛠️ Installation & Setup
|
|
237
|
+
|
|
238
|
+
### Prerequisites
|
|
239
|
+
- Node.js 18+
|
|
240
|
+
- Git
|
|
241
|
+
- (Optional) Docker for sandbox execution
|
|
242
|
+
|
|
243
|
+
### Install
|
|
244
|
+
```bash
|
|
245
|
+
npm install -g ultra-dex
|
|
246
|
+
```
|
|
104
247
|
|
|
105
|
-
|
|
248
|
+
### First-Time Setup
|
|
249
|
+
```bash
|
|
250
|
+
npx ultra-dex setup
|
|
251
|
+
# Interactive wizard configures:
|
|
252
|
+
# - AI provider (Anthropic, OpenAI, Google, Ollama)
|
|
253
|
+
# - API keys
|
|
254
|
+
# - Default template
|
|
255
|
+
# - Shell completions
|
|
256
|
+
```
|
|
106
257
|
|
|
258
|
+
### Shell Completions
|
|
107
259
|
```bash
|
|
108
|
-
|
|
260
|
+
# Bash
|
|
261
|
+
source <(ultra-dex completions bash)
|
|
262
|
+
# Add to ~/.bashrc for persistence
|
|
263
|
+
|
|
264
|
+
# Zsh
|
|
265
|
+
source <(ultra-dex completions zsh)
|
|
266
|
+
# Add to ~/.zshrc for persistence
|
|
109
267
|
```
|
|
110
268
|
|
|
111
|
-
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
## 📚 Documentation
|
|
112
272
|
|
|
113
|
-
|
|
273
|
+
- **Quick Start:** `npx ultra-dex setup`
|
|
274
|
+
- **Help:** `npx ultra-dex --help`
|
|
275
|
+
- **Command Help:** `npx ultra-dex <command> --help`
|
|
276
|
+
- **Full Guide:** [MEGA-IMPLEMENTATION-FINAL.md](./MEGA-IMPLEMENTATION-FINAL.md)
|
|
277
|
+
- **Examples:** [examples/](./examples/)
|
|
278
|
+
- **Release Notes:** [RELEASE-v3.5.0.md](./RELEASE-v3.5.0.md)
|
|
114
279
|
|
|
115
|
-
|
|
280
|
+
---
|
|
116
281
|
|
|
282
|
+
## 🎓 Learning Path
|
|
283
|
+
|
|
284
|
+
### Beginner (Day 1)
|
|
117
285
|
```bash
|
|
118
|
-
#
|
|
119
|
-
npx ultra-dex generate "
|
|
286
|
+
npx ultra-dex init # Create project
|
|
287
|
+
npx ultra-dex generate "Todo app" # Generate plan
|
|
288
|
+
npx ultra-dex align # Check alignment
|
|
289
|
+
```
|
|
120
290
|
|
|
121
|
-
|
|
122
|
-
|
|
291
|
+
### Intermediate (Week 1)
|
|
292
|
+
```bash
|
|
293
|
+
npx ultra-dex swarm "Feature X" # Run agents
|
|
294
|
+
npx ultra-dex dashboard # Monitor progress
|
|
295
|
+
npx ultra-dex verify # Verify completion
|
|
123
296
|
```
|
|
124
297
|
|
|
125
|
-
###
|
|
298
|
+
### Advanced (Month 1)
|
|
299
|
+
```bash
|
|
300
|
+
npx ultra-dex voice "Complex system" # Voice input
|
|
301
|
+
npx ultra-dex sync --brain # Auto-sync
|
|
302
|
+
npx ultra-dex cloud # Team collaboration
|
|
303
|
+
```
|
|
126
304
|
|
|
127
|
-
|
|
305
|
+
---
|
|
128
306
|
|
|
129
|
-
|
|
130
|
-
# Interactive agent selection
|
|
131
|
-
npx ultra-dex build
|
|
307
|
+
## 🤝 VS Code Integration
|
|
132
308
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
309
|
+
1. Install extension: `ultra-dex-vscode-3.5.0.vsix`
|
|
310
|
+
2. Click Ultra-Dex icon in sidebar
|
|
311
|
+
3. Access:
|
|
312
|
+
- Agent Explorer (browse all agents)
|
|
313
|
+
- Swarm Status (real-time progress)
|
|
314
|
+
- Context Preview (tech stack, focus)
|
|
315
|
+
- Quick Actions (one-click commands)
|
|
136
316
|
|
|
137
|
-
|
|
317
|
+
---
|
|
138
318
|
|
|
139
|
-
|
|
319
|
+
## 🔐 Environment Variables
|
|
140
320
|
|
|
141
321
|
```bash
|
|
142
|
-
|
|
322
|
+
# AI Providers (at least one required)
|
|
323
|
+
export ANTHROPIC_API_KEY=sk-ant-...
|
|
324
|
+
export OPENAI_API_KEY=sk-...
|
|
325
|
+
export GOOGLE_API_KEY=...
|
|
326
|
+
|
|
327
|
+
# Optional
|
|
328
|
+
export GITHUB_TOKEN=GITHUB_TOKEN_HERE # GitHub integration
|
|
329
|
+
export LINEAR_API_KEY=... # Linear sync
|
|
330
|
+
export SLACK_WEBHOOK_URL=... # Notifications
|
|
143
331
|
```
|
|
144
332
|
|
|
145
|
-
|
|
333
|
+
---
|
|
146
334
|
|
|
147
|
-
|
|
335
|
+
## 📦 Project Structure
|
|
148
336
|
|
|
149
|
-
```
|
|
150
|
-
|
|
337
|
+
```
|
|
338
|
+
my-project/
|
|
339
|
+
├── IMPLEMENTATION-PLAN.md # Auto-generated plan
|
|
340
|
+
├── CONTEXT.md # Project context (synced)
|
|
341
|
+
├── .ultra/
|
|
342
|
+
│ ├── state.json # Project state
|
|
343
|
+
│ ├── memory/ # Persistent memory
|
|
344
|
+
│ │ └── sessions.db # SQLite database
|
|
345
|
+
│ └── config.json # Local config
|
|
346
|
+
└── src/ # Your code
|
|
151
347
|
```
|
|
152
348
|
|
|
153
|
-
|
|
349
|
+
---
|
|
154
350
|
|
|
155
|
-
|
|
351
|
+
## 🐛 Troubleshooting
|
|
156
352
|
|
|
353
|
+
### Common Issues
|
|
354
|
+
|
|
355
|
+
**Command not found:**
|
|
157
356
|
```bash
|
|
158
|
-
|
|
357
|
+
npm install -g ultra-dex
|
|
358
|
+
# Or use: npx ultra-dex
|
|
159
359
|
```
|
|
160
360
|
|
|
161
|
-
|
|
361
|
+
**API key errors:**
|
|
362
|
+
```bash
|
|
363
|
+
npx ultra-dex setup # Configure keys
|
|
364
|
+
# Or set env var: export ANTHROPIC_API_KEY=...
|
|
365
|
+
```
|
|
162
366
|
|
|
367
|
+
**Port already in use:**
|
|
163
368
|
```bash
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
GOOGLE_AI_KEY=... # Gemini
|
|
167
|
-
OLLAMA_HOST=http://localhost:11434 # Ollama (local AI)
|
|
168
|
-
ULTRA_DEX_DEFAULT_PROVIDER=claude # Default AI provider
|
|
369
|
+
npx ultra-dex serve --port 3003 # Use different port
|
|
370
|
+
lsof -ti:3001 | xargs kill -9 # Kill process
|
|
169
371
|
```
|
|
170
372
|
|
|
171
|
-
|
|
373
|
+
**Need help:**
|
|
374
|
+
```bash
|
|
375
|
+
npx ultra-dex doctor # Diagnostics
|
|
376
|
+
npx ultra-dex <command> --help # Command help
|
|
377
|
+
```
|
|
172
378
|
|
|
173
|
-
|
|
379
|
+
---
|
|
174
380
|
|
|
175
|
-
|
|
176
|
-
# 1. Install Ollama (https://ollama.ai)
|
|
177
|
-
curl -fsSL https://ollama.ai/install.sh | sh
|
|
381
|
+
## 🌟 Why Ultra-Dex?
|
|
178
382
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
383
|
+
### Before Ultra-Dex
|
|
384
|
+
- ❌ AI agents forget context between sessions
|
|
385
|
+
- ❌ No standard for AI-assisted development
|
|
386
|
+
- ❌ Manual coordination between tools
|
|
387
|
+
- ❌ Plans drift from implementation
|
|
388
|
+
- ❌ No verification framework
|
|
182
389
|
|
|
183
|
-
|
|
184
|
-
|
|
390
|
+
### With Ultra-Dex
|
|
391
|
+
- ✅ Persistent memory across sessions
|
|
392
|
+
- ✅ 21-step production-ready framework
|
|
393
|
+
- ✅ Coordinated agent swarms
|
|
394
|
+
- ✅ Real-time alignment tracking
|
|
395
|
+
- ✅ Automated verification
|
|
185
396
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
397
|
+
---
|
|
398
|
+
|
|
399
|
+
## 📈 Roadmap
|
|
400
|
+
|
|
401
|
+
### v3.6.0 (March 2026)
|
|
402
|
+
- Deep Graph RAG (FalkorDB/Neo4j)
|
|
403
|
+
- Enterprise Auth (SSO/SAML)
|
|
404
|
+
- LangGraph Integration
|
|
405
|
+
|
|
406
|
+
### v4.0.0 (Q2 2026)
|
|
407
|
+
- AI Agent Protocol SDK
|
|
408
|
+
- JetBrains/Neovim plugins
|
|
409
|
+
- Agent Marketplace
|
|
410
|
+
|
|
411
|
+
---
|
|
412
|
+
|
|
413
|
+
## 🤝 Contributing
|
|
414
|
+
|
|
415
|
+
We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md)
|
|
416
|
+
|
|
417
|
+
### Ways to Contribute
|
|
418
|
+
- Report bugs
|
|
419
|
+
- Suggest features
|
|
420
|
+
- Add cursor rules
|
|
421
|
+
- Create examples
|
|
422
|
+
- Improve docs
|
|
423
|
+
|
|
424
|
+
---
|
|
425
|
+
|
|
426
|
+
## 📄 License
|
|
427
|
+
|
|
428
|
+
MIT License - see [LICENSE](./LICENSE)
|
|
429
|
+
|
|
430
|
+
---
|
|
431
|
+
|
|
432
|
+
## 🙏 Acknowledgments
|
|
433
|
+
|
|
434
|
+
- 8 comprehensive code reviews incorporated
|
|
435
|
+
- Community feedback integrated
|
|
436
|
+
- Real-world testing validated
|
|
437
|
+
|
|
438
|
+
---
|
|
439
|
+
|
|
440
|
+
**Ultra-Dex v3.5.0** - *The most complete AI orchestration platform for developers.*
|
|
441
|
+
|
|
442
|
+
🚀 **Ready for production. Ready for you.** 🚀
|
|
189
443
|
|
|
190
|
-
|
|
191
|
-
- `llama3.2` - General tasks
|
|
192
|
-
- `codellama` - Code generation (recommended)
|
|
193
|
-
- `mistral` - Fast, efficient
|
|
194
|
-
- `mixtral` - Best quality for local
|
|
195
|
-
- Any model available via `ollama list`
|
|
196
|
-
|
|
197
|
-
## All Commands (44+)
|
|
198
|
-
|
|
199
|
-
| Command | Description |
|
|
200
|
-
|---------|-------------|
|
|
201
|
-
| `init` | Initialize a new project |
|
|
202
|
-
| `scaffold` | **NEW** Generate production boilerplate |
|
|
203
|
-
| `generate` | Generate full SaaS plan from idea |
|
|
204
|
-
| `swarm` | Run autonomous agent pipeline |
|
|
205
|
-
| `auto-implement` | Autonomously implement a feature |
|
|
206
|
-
| `serve` | Start the Active Kernel (MCP + Dashboard) |
|
|
207
|
-
| `watch` | Auto-update state on file changes |
|
|
208
|
-
| `build` | Interactive AI agent development loop |
|
|
209
|
-
| `review` | Review code against plan |
|
|
210
|
-
| `align` | Quick alignment score |
|
|
211
|
-
| `audit` | Audit project for completeness |
|
|
212
|
-
| `validate` | Validate project against 21-step framework |
|
|
213
|
-
| `check` | Verify repository health |
|
|
214
|
-
| `doctor` | Diagnose project issues |
|
|
215
|
-
| `dashboard` | Start the local web dashboard |
|
|
216
|
-
| `sync` | Sync project state across devices |
|
|
217
|
-
| `fetch` | Download assets for offline use |
|
|
218
|
-
| `hooks` | Manage Git hooks |
|
|
219
|
-
| `export` | Export project context |
|
|
220
|
-
| `upgrade` | Check for CLI updates |
|
|
221
|
-
| `config` | Manage CLI and editor configuration |
|
|
222
|
-
| `agents` | List available AI agents |
|
|
223
|
-
| `agent` | Show specific agent prompt |
|
|
224
|
-
| `workflow` | Show specific production workflow |
|
|
225
|
-
| `suggest` | Get AI-powered task suggestions |
|
|
226
|
-
| `plan` | Generate or update implementation plan |
|
|
227
|
-
| `fix` | Automatically fix project issues |
|
|
228
|
-
| `team` | Team collaboration commands |
|
|
229
|
-
| `memory` | Manage long-term agent memory |
|
|
230
|
-
| `verify` | Run executable verification |
|
|
231
|
-
| `ci-monitor` | Self-healing CI/CD listener |
|
|
232
|
-
| `status` | Show project and kernel status |
|
|
233
|
-
| `pre-commit` | Run pre-commit checks |
|
|
234
|
-
| `state` | Manage machine-readable state |
|
|
235
|
-
| `examples` | Access reference workflows |
|
|
236
|
-
| `pack` | Bundle agents and rules |
|
|
237
|
-
| `run` | Execute agent task |
|
|
238
|
-
| `diff` | Compare plan vs implemented code |
|
|
239
|
-
| `exec` | **NEW** Execute code in Docker sandbox |
|
|
240
|
-
| `search` | **NEW** Semantic codebase search |
|
|
241
|
-
| `github` | **NEW** GitHub sync (issues, PRs) |
|
|
242
|
-
| `cloud` | **NEW** Team collaboration server |
|
|
243
|
-
| `metrics` | **NEW** Show CLI metrics |
|
|
244
|
-
| `health` | **NEW** System health check |
|
|
245
|
-
| `debug` | **NEW** Debug information |
|
|
246
|
-
|
|
247
|
-
## Links
|
|
248
|
-
|
|
249
|
-
- [Full Template](https://github.com/Srujan0798/Ultra-Dex/blob/main/@%20Ultra%20DeX/Saas%20plan/04-Imp-Template.md)
|
|
250
|
-
- [Examples](https://github.com/Srujan0798/Ultra-Dex/tree/main/@%20Ultra%20DeX/Saas%20plan/Examples)
|
|
251
|
-
- [Methodology](https://github.com/Srujan0798/Ultra-Dex/blob/main/@%20Ultra%20DeX/Saas%20plan/03-METHODOLOGY.md)
|
|
252
|
-
- [AI Agents](https://github.com/Srujan0798/Ultra-Dex/tree/main/agents)
|
|
253
|
-
|
|
254
|
-
## License
|
|
255
|
-
|
|
256
|
-
MIT
|
|
444
|
+
[Get Started →](#quick-start-30-seconds)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @Orchestrator - Meta Agent
|
|
2
2
|
|
|
3
|
-
> **Role**: Coordinate all
|
|
3
|
+
> **Role**: Coordinate all 17 agents for complete feature implementation
|
|
4
4
|
> **When to Use**: Building a complete feature that spans architecture, implementation, security, testing, and deployment
|
|
5
5
|
|
|
6
6
|
---
|