ultra-dex 3.4.3 → 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 +357 -187
- 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 +131 -14
- 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 +198 -114
- package/lib/commands/audit.js +118 -32
- package/lib/commands/auth.js +119 -0
- package/lib/commands/auto-implement.js +54 -15
- package/lib/commands/autonomous.js +408 -0
- package/lib/commands/banner.js +15 -16
- package/lib/commands/batch.js +264 -0
- package/lib/commands/brain.js +169 -0
- package/lib/commands/build.js +11 -5
- 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 +3 -2
- 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 +147 -48
- package/lib/commands/estimate.js +268 -0
- package/lib/commands/exec.js +29 -4
- package/lib/commands/init.js +57 -77
- package/lib/commands/integrate.js +423 -0
- package/lib/commands/memory.js +165 -0
- package/lib/commands/monitoring.js +29 -0
- 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/run.js +91 -21
- package/lib/commands/scaffold-enhanced.js +827 -0
- package/lib/commands/search.js +78 -16
- package/lib/commands/serve.js +151 -17
- package/lib/commands/setup.js +245 -0
- package/lib/commands/state.js +38 -1
- package/lib/commands/suggest.js +128 -33
- package/lib/commands/swarm.js +107 -156
- package/lib/commands/sync-pm.js +374 -0
- 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 +25 -1
- 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/graph.js +275 -44
- package/lib/mcp/server.js +47 -31
- package/lib/mcp/tools.js +37 -55
- package/lib/mcp/websocket.js +171 -84
- 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/index.js +4 -2
- package/lib/providers/langgraph.js +98 -0
- package/lib/providers/ollama.js +54 -0
- package/lib/providers/openai-assistants.js +1 -1
- package/lib/providers/openai.js +28 -0
- package/lib/quality/automation.js +229 -0
- package/lib/quality/scanner.js +241 -3
- package/lib/repl/index.js +238 -0
- package/lib/swarm/tiers.js +16 -2
- package/lib/ui/diff.js +44 -0
- package/lib/ui/interactive.js +126 -0
- package/lib/ui/interface.js +3 -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/theme.js +27 -75
- package/lib/utils/agents.ts +42 -0
- 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/files.js +1 -1
- package/lib/utils/files.ts +70 -0
- 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/reconciler.js +92 -0
- 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.js +4 -0
- package/lib/utils/version.ts +13 -0
- package/lib/vision/scanner.js +151 -0
- package/package.json +16 -3
- 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,274 +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
|
|
|
7
|
-
|
|
8
|
-
```bash
|
|
9
|
-
# 🏪 Agent Marketplace - install community agents
|
|
10
|
-
npx ultra-dex agents list --marketplace
|
|
11
|
-
npx ultra-dex agents install security-auditor
|
|
12
|
-
npx ultra-dex agents create my-custom-agent
|
|
8
|
+
## 🚀 What's New in v3.5.0 (February 2026)
|
|
13
9
|
|
|
14
|
-
|
|
15
|
-
# See: cli/lib/providers/langchain.js
|
|
10
|
+
### ✨ Major Features
|
|
16
11
|
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
#### 🎯 VS Code Extension Sidebar
|
|
13
|
+
Full IDE integration with 4 sidebar views:
|
|
14
|
+
```bash
|
|
15
|
+
# Install from VSIX or marketplace
|
|
16
|
+
# Access: Agent Explorer, Swarm Status, Context Preview, Quick Actions
|
|
17
|
+
```
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
|
|
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
|
|
22
24
|
```
|
|
23
25
|
|
|
24
|
-
|
|
26
|
+
#### 🧠 Session Persistence & Memory
|
|
27
|
+
Never lose context:
|
|
25
28
|
```bash
|
|
26
|
-
|
|
27
|
-
npx ultra-dex
|
|
29
|
+
npx ultra-dex memory sessions # List all sessions
|
|
30
|
+
npx ultra-dex memory query "auth" # Search past decisions
|
|
31
|
+
```
|
|
28
32
|
|
|
29
|
-
|
|
30
|
-
npx ultra-dex exec "console.log('safe!')" --lang javascript
|
|
33
|
+
### 📦 New Commands
|
|
31
34
|
|
|
32
|
-
|
|
33
|
-
|
|
35
|
+
```bash
|
|
36
|
+
# 💰 Cost Estimation
|
|
37
|
+
npx ultra-dex estimate "Build login system"
|
|
38
|
+
npx ultra-dex estimate feature-impl --monthly 100
|
|
34
39
|
|
|
35
|
-
#
|
|
36
|
-
npx ultra-dex
|
|
37
|
-
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
|
|
38
43
|
|
|
39
|
-
#
|
|
40
|
-
npx ultra-dex
|
|
44
|
+
# 📋 Batch Execution
|
|
45
|
+
npx ultra-dex batch setup.json
|
|
46
|
+
npx ultra-dex batch deploy.txt --dry-run
|
|
41
47
|
|
|
42
|
-
# 🔄
|
|
43
|
-
npx ultra-dex
|
|
48
|
+
# 🔄 Command History
|
|
49
|
+
npx ultra-dex history list
|
|
50
|
+
npx ultra-dex history replay abc123
|
|
44
51
|
|
|
45
|
-
#
|
|
46
|
-
npx ultra-dex
|
|
47
|
-
npx ultra-dex
|
|
52
|
+
# ⚙️ Setup Wizard
|
|
53
|
+
npx ultra-dex setup # Interactive configuration
|
|
54
|
+
npx ultra-dex setup --quick # Fast defaults
|
|
48
55
|
```
|
|
49
56
|
|
|
50
|
-
|
|
57
|
+
### 🔧 Enhanced Features
|
|
51
58
|
|
|
52
59
|
```bash
|
|
53
|
-
#
|
|
54
|
-
|
|
55
|
-
npx ultra-dex
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
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
|
|
59
79
|
```
|
|
60
80
|
|
|
61
|
-
|
|
81
|
+
### 🔄 CI/CD Integration
|
|
62
82
|
|
|
63
|
-
```
|
|
64
|
-
#
|
|
65
|
-
|
|
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'
|
|
66
89
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
90
|
+
- uses: Srujan0798/ultra-dex-action/align@v1
|
|
91
|
+
with:
|
|
92
|
+
comment-on-pr: 'true'
|
|
70
93
|
```
|
|
71
94
|
|
|
72
|
-
|
|
95
|
+
### 📚 Example Repositories
|
|
73
96
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
npx ultra-dex scaffold --list
|
|
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)
|
|
79
101
|
|
|
80
|
-
|
|
81
|
-
npx ultra-dex scaffold next15-prisma-clerk
|
|
102
|
+
[View Examples](./examples/)
|
|
82
103
|
|
|
83
|
-
|
|
84
|
-
npx ultra-dex scaffold remix-supabase
|
|
104
|
+
---
|
|
85
105
|
|
|
86
|
-
|
|
87
|
-
npx ultra-dex scaffold sveltekit-drizzle
|
|
88
|
-
```
|
|
106
|
+
## 📊 By The Numbers
|
|
89
107
|
|
|
90
|
-
|
|
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**
|
|
91
115
|
|
|
92
|
-
|
|
116
|
+
---
|
|
93
117
|
|
|
94
|
-
|
|
118
|
+
## 🚀 Quick Start (30 seconds)
|
|
95
119
|
|
|
96
120
|
```bash
|
|
97
|
-
#
|
|
98
|
-
|
|
121
|
+
# Install globally
|
|
122
|
+
npm install -g ultra-dex
|
|
99
123
|
|
|
100
|
-
#
|
|
101
|
-
npx ultra-dex
|
|
124
|
+
# Or use npx (no install needed)
|
|
125
|
+
npx ultra-dex setup
|
|
126
|
+
|
|
127
|
+
# Initialize project
|
|
128
|
+
npx ultra-dex init
|
|
129
|
+
|
|
130
|
+
# Generate plan from idea
|
|
131
|
+
npx ultra-dex generate "Your amazing SaaS idea"
|
|
132
|
+
|
|
133
|
+
# Start dashboard
|
|
134
|
+
npx ultra-dex dashboard
|
|
102
135
|
```
|
|
103
136
|
|
|
104
|
-
|
|
137
|
+
---
|
|
105
138
|
|
|
106
|
-
|
|
139
|
+
## 📖 Core Commands
|
|
107
140
|
|
|
141
|
+
### Project Management
|
|
108
142
|
```bash
|
|
109
|
-
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
|
|
110
149
|
```
|
|
111
150
|
|
|
112
|
-
###
|
|
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
|
+
```
|
|
113
159
|
|
|
114
|
-
|
|
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
|
+
```
|
|
115
169
|
|
|
170
|
+
### Advanced
|
|
116
171
|
```bash
|
|
117
|
-
|
|
118
|
-
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
|
|
119
179
|
```
|
|
120
180
|
|
|
121
|
-
|
|
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
|
+
```
|
|
122
247
|
|
|
123
|
-
|
|
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
|
+
```
|
|
124
257
|
|
|
258
|
+
### Shell Completions
|
|
125
259
|
```bash
|
|
126
|
-
|
|
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
|
|
127
267
|
```
|
|
128
268
|
|
|
129
|
-
|
|
269
|
+
---
|
|
130
270
|
|
|
131
|
-
|
|
271
|
+
## 📚 Documentation
|
|
132
272
|
|
|
133
|
-
|
|
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)
|
|
134
279
|
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
## 🎓 Learning Path
|
|
283
|
+
|
|
284
|
+
### Beginner (Day 1)
|
|
135
285
|
```bash
|
|
136
|
-
#
|
|
137
|
-
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
|
+
```
|
|
138
290
|
|
|
139
|
-
|
|
140
|
-
|
|
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
|
|
141
296
|
```
|
|
142
297
|
|
|
143
|
-
###
|
|
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
|
+
```
|
|
144
304
|
|
|
145
|
-
|
|
305
|
+
---
|
|
146
306
|
|
|
147
|
-
|
|
148
|
-
# Interactive agent selection
|
|
149
|
-
npx ultra-dex build
|
|
307
|
+
## 🤝 VS Code Integration
|
|
150
308
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
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)
|
|
154
316
|
|
|
155
|
-
|
|
317
|
+
---
|
|
156
318
|
|
|
157
|
-
|
|
319
|
+
## 🔐 Environment Variables
|
|
158
320
|
|
|
159
321
|
```bash
|
|
160
|
-
|
|
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
|
|
161
331
|
```
|
|
162
332
|
|
|
163
|
-
|
|
333
|
+
---
|
|
164
334
|
|
|
165
|
-
|
|
335
|
+
## 📦 Project Structure
|
|
166
336
|
|
|
167
|
-
```bash
|
|
168
|
-
npx ultra-dex align
|
|
169
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
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
---
|
|
170
350
|
|
|
171
|
-
|
|
351
|
+
## 🐛 Troubleshooting
|
|
172
352
|
|
|
173
|
-
|
|
353
|
+
### Common Issues
|
|
174
354
|
|
|
355
|
+
**Command not found:**
|
|
175
356
|
```bash
|
|
176
|
-
|
|
357
|
+
npm install -g ultra-dex
|
|
358
|
+
# Or use: npx ultra-dex
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
**API key errors:**
|
|
362
|
+
```bash
|
|
363
|
+
npx ultra-dex setup # Configure keys
|
|
364
|
+
# Or set env var: export ANTHROPIC_API_KEY=...
|
|
177
365
|
```
|
|
178
366
|
|
|
179
|
-
|
|
367
|
+
**Port already in use:**
|
|
368
|
+
```bash
|
|
369
|
+
npx ultra-dex serve --port 3003 # Use different port
|
|
370
|
+
lsof -ti:3001 | xargs kill -9 # Kill process
|
|
371
|
+
```
|
|
180
372
|
|
|
373
|
+
**Need help:**
|
|
181
374
|
```bash
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
GOOGLE_AI_KEY=... # Gemini
|
|
185
|
-
OLLAMA_HOST=http://localhost:11434 # Ollama (local AI)
|
|
186
|
-
ULTRA_DEX_DEFAULT_PROVIDER=claude # Default AI provider
|
|
375
|
+
npx ultra-dex doctor # Diagnostics
|
|
376
|
+
npx ultra-dex <command> --help # Command help
|
|
187
377
|
```
|
|
188
378
|
|
|
189
|
-
|
|
379
|
+
---
|
|
190
380
|
|
|
191
|
-
Ultra-Dex
|
|
381
|
+
## 🌟 Why Ultra-Dex?
|
|
192
382
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
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
|
|
196
389
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
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
|
|
200
396
|
|
|
201
|
-
|
|
202
|
-
npx ultra-dex generate "Your idea" --provider ollama --model codellama
|
|
397
|
+
---
|
|
203
398
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
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.** 🚀
|
|
207
443
|
|
|
208
|
-
|
|
209
|
-
- `llama3.2` - General tasks
|
|
210
|
-
- `codellama` - Code generation (recommended)
|
|
211
|
-
- `mistral` - Fast, efficient
|
|
212
|
-
- `mixtral` - Best quality for local
|
|
213
|
-
- Any model available via `ollama list`
|
|
214
|
-
|
|
215
|
-
## All Commands (44+)
|
|
216
|
-
|
|
217
|
-
| Command | Description |
|
|
218
|
-
|---------|-------------|
|
|
219
|
-
| `init` | Initialize a new project |
|
|
220
|
-
| `scaffold` | **NEW** Generate production boilerplate |
|
|
221
|
-
| `generate` | Generate full SaaS plan from idea |
|
|
222
|
-
| `swarm` | Run autonomous agent pipeline |
|
|
223
|
-
| `auto-implement` | Autonomously implement a feature |
|
|
224
|
-
| `serve` | Start the Active Kernel (MCP + Dashboard) |
|
|
225
|
-
| `watch` | Auto-update state on file changes |
|
|
226
|
-
| `build` | Interactive AI agent development loop |
|
|
227
|
-
| `review` | Review code against plan |
|
|
228
|
-
| `align` | Quick alignment score |
|
|
229
|
-
| `audit` | Audit project for completeness |
|
|
230
|
-
| `validate` | Validate project against 21-step framework |
|
|
231
|
-
| `check` | Verify repository health |
|
|
232
|
-
| `doctor` | Diagnose project issues |
|
|
233
|
-
| `dashboard` | Start the local web dashboard |
|
|
234
|
-
| `sync` | Sync project state across devices |
|
|
235
|
-
| `fetch` | Download assets for offline use |
|
|
236
|
-
| `hooks` | Manage Git hooks |
|
|
237
|
-
| `export` | Export project context |
|
|
238
|
-
| `upgrade` | Check for CLI updates |
|
|
239
|
-
| `config` | Manage CLI and editor configuration |
|
|
240
|
-
| `agents` | List available AI agents |
|
|
241
|
-
| `agent` | Show specific agent prompt |
|
|
242
|
-
| `workflow` | Show specific production workflow |
|
|
243
|
-
| `suggest` | Get AI-powered task suggestions |
|
|
244
|
-
| `plan` | Generate or update implementation plan |
|
|
245
|
-
| `fix` | Automatically fix project issues |
|
|
246
|
-
| `team` | Team collaboration commands |
|
|
247
|
-
| `memory` | Manage long-term agent memory |
|
|
248
|
-
| `verify` | Run executable verification |
|
|
249
|
-
| `ci-monitor` | Self-healing CI/CD listener |
|
|
250
|
-
| `status` | Show project and kernel status |
|
|
251
|
-
| `pre-commit` | Run pre-commit checks |
|
|
252
|
-
| `state` | Manage machine-readable state |
|
|
253
|
-
| `examples` | Access reference workflows |
|
|
254
|
-
| `pack` | Bundle agents and rules |
|
|
255
|
-
| `run` | Execute agent task |
|
|
256
|
-
| `diff` | Compare plan vs implemented code |
|
|
257
|
-
| `exec` | **NEW** Execute code in Docker sandbox |
|
|
258
|
-
| `search` | **NEW** Semantic codebase search |
|
|
259
|
-
| `github` | **NEW** GitHub sync (issues, PRs) |
|
|
260
|
-
| `cloud` | **NEW** Team collaboration server |
|
|
261
|
-
| `metrics` | **NEW** Show CLI metrics |
|
|
262
|
-
| `health` | **NEW** System health check |
|
|
263
|
-
| `debug` | **NEW** Debug information |
|
|
264
|
-
|
|
265
|
-
## Links
|
|
266
|
-
|
|
267
|
-
- [Full Template](https://github.com/Srujan0798/Ultra-Dex/blob/main/@%20Ultra%20DeX/Saas%20plan/04-Imp-Template.md)
|
|
268
|
-
- [Examples](https://github.com/Srujan0798/Ultra-Dex/tree/main/@%20Ultra%20DeX/Saas%20plan/Examples)
|
|
269
|
-
- [Methodology](https://github.com/Srujan0798/Ultra-Dex/blob/main/@%20Ultra%20DeX/Saas%20plan/03-METHODOLOGY.md)
|
|
270
|
-
- [AI Agents](https://github.com/Srujan0798/Ultra-Dex/tree/main/agents)
|
|
271
|
-
|
|
272
|
-
## License
|
|
273
|
-
|
|
274
|
-
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
|
---
|