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.
Files changed (125) hide show
  1. package/README.md +357 -187
  2. package/assets/agents/0-orchestration/orchestrator.md +1 -1
  3. package/assets/cursor-rules/31-i18n.mdc +225 -0
  4. package/assets/cursor-rules/32-analytics.mdc +414 -0
  5. package/assets/cursor-rules/33-seo.mdc +529 -0
  6. package/assets/dashboard.html +652 -0
  7. package/assets/docs/QUICK-REFERENCE.md +3 -3
  8. package/assets/docs/README.md +6 -10
  9. package/assets/docs/ROADMAP.md +2 -2
  10. package/assets/docs/WORKFLOW-DIAGRAMS.md +1 -1
  11. package/assets/live-templates/ai-saas/package.json +40 -0
  12. package/assets/live-templates/next15-prisma-clerk/package.json +2 -0
  13. package/assets/live-templates/remix-supabase/package.json +2 -0
  14. package/assets/live-templates/sveltekit-drizzle/package.json +2 -0
  15. package/assets/playground.html +289 -0
  16. package/assets/templates/README.md +1 -1
  17. package/assets/templates/config/ledger.sample.jsonl +2 -0
  18. package/assets/templates/config/memory.sample.json +19 -0
  19. package/assets/templates/config/quality-gate.json +36 -0
  20. package/assets/templates/config/router.json +28 -0
  21. package/bin/demo-pro.js +41 -0
  22. package/bin/ultra-dex.js +131 -14
  23. package/lib/ai/hybrid-rag.js +501 -0
  24. package/lib/ai/model-router.js +588 -0
  25. package/lib/commands/advanced.js +97 -2
  26. package/lib/commands/agents.js +198 -114
  27. package/lib/commands/audit.js +118 -32
  28. package/lib/commands/auth.js +119 -0
  29. package/lib/commands/auto-implement.js +54 -15
  30. package/lib/commands/autonomous.js +408 -0
  31. package/lib/commands/banner.js +15 -16
  32. package/lib/commands/batch.js +264 -0
  33. package/lib/commands/brain.js +169 -0
  34. package/lib/commands/build.js +11 -5
  35. package/lib/commands/check-enhanced-v2.js +311 -0
  36. package/lib/commands/check-enhanced.js +278 -0
  37. package/lib/commands/ci-monitor.js +253 -30
  38. package/lib/commands/cloud.js +3 -2
  39. package/lib/commands/code-gen.js +673 -0
  40. package/lib/commands/dashboard-websocket-client.js +390 -0
  41. package/lib/commands/dashboard.js +290 -378
  42. package/lib/commands/deploy.js +663 -0
  43. package/lib/commands/diff.js +147 -48
  44. package/lib/commands/estimate.js +268 -0
  45. package/lib/commands/exec.js +29 -4
  46. package/lib/commands/init.js +57 -77
  47. package/lib/commands/integrate.js +423 -0
  48. package/lib/commands/memory.js +165 -0
  49. package/lib/commands/monitoring.js +29 -0
  50. package/lib/commands/pipeline.js +394 -0
  51. package/lib/commands/plan.js +251 -31
  52. package/lib/commands/playground.js +69 -0
  53. package/lib/commands/plugin.js +143 -0
  54. package/lib/commands/plugins.js +179 -0
  55. package/lib/commands/quality-enhanced.js +220 -0
  56. package/lib/commands/quality.js +460 -0
  57. package/lib/commands/run.js +91 -21
  58. package/lib/commands/scaffold-enhanced.js +827 -0
  59. package/lib/commands/search.js +78 -16
  60. package/lib/commands/serve.js +151 -17
  61. package/lib/commands/setup.js +245 -0
  62. package/lib/commands/state.js +38 -1
  63. package/lib/commands/suggest.js +128 -33
  64. package/lib/commands/swarm.js +107 -156
  65. package/lib/commands/sync-pm.js +374 -0
  66. package/lib/commands/validate.js +1 -1
  67. package/lib/commands/verify.js +62 -4
  68. package/lib/commands/voice.js +147 -0
  69. package/lib/commands/watch.js +25 -1
  70. package/lib/commands/workflows.js +98 -19
  71. package/lib/commands/workspace.js +122 -0
  72. package/lib/kernel/agent.js +277 -0
  73. package/lib/kernel/context.js +107 -0
  74. package/lib/kernel/editor.js +90 -0
  75. package/lib/kernel/session.js +65 -0
  76. package/lib/kernel/tools.js +157 -0
  77. package/lib/mcp/graph.js +275 -44
  78. package/lib/mcp/server.js +47 -31
  79. package/lib/mcp/tools.js +37 -55
  80. package/lib/mcp/websocket.js +171 -84
  81. package/lib/memory/multi-tier.js +457 -0
  82. package/lib/nlp/router.js +69 -0
  83. package/lib/plugin-system.js +246 -0
  84. package/lib/providers/index.js +4 -2
  85. package/lib/providers/langgraph.js +98 -0
  86. package/lib/providers/ollama.js +54 -0
  87. package/lib/providers/openai-assistants.js +1 -1
  88. package/lib/providers/openai.js +28 -0
  89. package/lib/quality/automation.js +229 -0
  90. package/lib/quality/scanner.js +241 -3
  91. package/lib/repl/index.js +238 -0
  92. package/lib/swarm/tiers.js +16 -2
  93. package/lib/ui/diff.js +44 -0
  94. package/lib/ui/interactive.js +126 -0
  95. package/lib/ui/interface.js +3 -5
  96. package/lib/ui/layout.js +36 -0
  97. package/lib/ui/logger.js +68 -0
  98. package/lib/ui/renderer.js +207 -0
  99. package/lib/ui/theme.js +27 -75
  100. package/lib/utils/agents.ts +42 -0
  101. package/lib/utils/config-manager.js +24 -4
  102. package/lib/utils/config.js +11 -0
  103. package/lib/utils/contextual-help.js +265 -0
  104. package/lib/utils/dashboard-notifier.js +54 -0
  105. package/lib/utils/error-handler.js +291 -0
  106. package/lib/utils/files.js +1 -1
  107. package/lib/utils/files.ts +70 -0
  108. package/lib/utils/history.js +306 -0
  109. package/lib/utils/messages.js +25 -17
  110. package/lib/utils/monitoring.js +45 -0
  111. package/lib/utils/performance.js +353 -0
  112. package/lib/utils/plugin-system.js +215 -0
  113. package/lib/utils/profiler.js +247 -0
  114. package/lib/utils/reconciler.js +92 -0
  115. package/lib/utils/sessionPersistence.js +222 -0
  116. package/lib/utils/state-sync.js +93 -0
  117. package/lib/utils/theme-state.ts +22 -0
  118. package/lib/utils/validation.ts +54 -0
  119. package/lib/utils/version.js +4 -0
  120. package/lib/utils/version.ts +13 -0
  121. package/lib/vision/scanner.js +151 -0
  122. package/package.json +16 -3
  123. package/assets/saas-plan/04-Imp-Template.md +0 -5546
  124. package/lib/commands/agent-builder.js +0 -226
  125. 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
- > Scaffold Ultra-Dex projects from the command line, now with **AI-powered plan generation** and **God Mode** autonomous agents.
3
+ > **AI Orchestration Meta-Layer for SaaS Development** - The complete toolkit for AI-assisted software engineering.
4
4
 
5
- ## What's New in v3.4.2 (Ecosystem Mode)
5
+ [![npm version](https://img.shields.io/npm/v/ultra-dex.svg)](https://www.npmjs.com/package/ultra-dex)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
7
 
7
- ### 🆕 v3.4.2 Features
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
- # 🔗 LangChain Integration - use any LangChain agent
15
- # See: cli/lib/providers/langchain.js
10
+ ### Major Features
16
11
 
17
- # 🤖 OpenAI Assistants Sync - persistent threads
18
- # See: cli/lib/providers/openai-assistants.js
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
- # 🎬 Streaming AI responses
21
- npx ultra-dex run backend -t "Build API" --stream
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
- ### v3.3.0 Features (Included)
26
+ #### 🧠 Session Persistence & Memory
27
+ Never lose context:
25
28
  ```bash
26
- # 🧠 Auto-sync CONTEXT.md from codebase
27
- npx ultra-dex sync --brain
29
+ npx ultra-dex memory sessions # List all sessions
30
+ npx ultra-dex memory query "auth" # Search past decisions
31
+ ```
28
32
 
29
- # 🐳 Execute code in Docker sandbox
30
- npx ultra-dex exec "console.log('safe!')" --lang javascript
33
+ ### 📦 New Commands
31
34
 
32
- # 🔍 Semantic search with vector embeddings
33
- npx ultra-dex search "user authentication" --index
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
- # 🐙 GitHub integration (issues → tasks, auto-PR)
36
- npx ultra-dex github sync
37
- npx ultra-dex github pr --from-swarm
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
- # 🤖 Autonomous agent swarms with parallel execution
40
- npx ultra-dex swarm "Build user authentication" --parallel
44
+ # 📋 Batch Execution
45
+ npx ultra-dex batch setup.json
46
+ npx ultra-dex batch deploy.txt --dry-run
41
47
 
42
- # 🔄 Start the Active Kernel (MCP + WebSocket + Dashboard)
43
- npx ultra-dex serve
48
+ # 🔄 Command History
49
+ npx ultra-dex history list
50
+ npx ultra-dex history replay abc123
44
51
 
45
- # 📊 Health monitoring and metrics
46
- npx ultra-dex health
47
- npx ultra-dex metrics
52
+ # ⚙️ Setup Wizard
53
+ npx ultra-dex setup # Interactive configuration
54
+ npx ultra-dex setup --quick # Fast defaults
48
55
  ```
49
56
 
50
- ## First 10 Minutes
57
+ ### 🔧 Enhanced Features
51
58
 
52
59
  ```bash
53
- # Option 1: AI-Generated Plan (Recommended)
54
- export ANTHROPIC_API_KEY=your-key # or OPENAI_API_KEY or GOOGLE_AI_KEY
55
- npx ultra-dex generate "Your SaaS idea here"
56
-
57
- # Option 2: Manual Setup
58
- npx ultra-dex init
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
- ## Installation
81
+ ### 🔄 CI/CD Integration
62
82
 
63
- ```bash
64
- # Run directly with npx (no installation needed)
65
- npx ultra-dex generate "Your idea"
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
- # Or install globally
68
- npm install -g ultra-dex
69
- ultra-dex generate "Your idea"
90
+ - uses: Srujan0798/ultra-dex-action/align@v1
91
+ with:
92
+ comment-on-pr: 'true'
70
93
  ```
71
94
 
72
- ## Scaffold Command (NEW)
95
+ ### 📚 Example Repositories
73
96
 
74
- Generate production-ready boilerplate instantly:
75
-
76
- ```bash
77
- # List available templates
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
- # Generate Next.js 15 + Prisma + Clerk project
81
- npx ultra-dex scaffold next15-prisma-clerk
102
+ [View Examples](./examples/)
82
103
 
83
- # Generate Remix + Supabase project
84
- npx ultra-dex scaffold remix-supabase
104
+ ---
85
105
 
86
- # Generate SvelteKit + Drizzle project
87
- npx ultra-dex scaffold sveltekit-drizzle
88
- ```
106
+ ## 📊 By The Numbers
89
107
 
90
- ## AI Commands (God Mode)
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
- ### `swarm` - Autonomous Agent Pipeline
116
+ ---
93
117
 
94
- Run complex task pipelines with multiple agents:
118
+ ## 🚀 Quick Start (30 seconds)
95
119
 
96
120
  ```bash
97
- # Build a feature with a swarm of agents
98
- npx ultra-dex swarm "Implement Stripe subscriptions" --parallel
121
+ # Install globally
122
+ npm install -g ultra-dex
99
123
 
100
- # Dry run to see the plan
101
- npx ultra-dex swarm "Migrate to Tailwind" --dry-run
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
- ### `serve` - Active Kernel
137
+ ---
105
138
 
106
- Start the MCP-compatible server for IDE integration and dashboard:
139
+ ## 📖 Core Commands
107
140
 
141
+ ### Project Management
108
142
  ```bash
109
- npx ultra-dex serve
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
- ### `auto-implement` - Autonomous Engineer
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
- Fully autonomous feature implementation loop:
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
- # Implement a feature from scratch
118
- npx ultra-dex auto-implement "Create a user profile page with Avatar upload"
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
- ### `watch` - Real-time Daemon
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
- Keep the project state and Code Property Graph updated as you code:
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
- npx ultra-dex watch --interval 1000
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
- ## Core Commands
269
+ ---
130
270
 
131
- ### `generate` - AI Plan Generation
271
+ ## 📚 Documentation
132
272
 
133
- Generate a complete implementation plan using AI:
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
- # Basic usage
137
- npx ultra-dex generate "A booking platform for dog groomers"
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
- # With options
140
- npx ultra-dex generate "idea" --provider openai --output ./my-project
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
- ### `build` - AI-Assisted Development
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
- Start development with AI agents (Interactive Mode):
305
+ ---
146
306
 
147
- ```bash
148
- # Interactive agent selection
149
- npx ultra-dex build
307
+ ## 🤝 VS Code Integration
150
308
 
151
- # Specific agent
152
- npx ultra-dex run backend --task "Create user API endpoints"
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
- ### `review` - Graph-Aware Code Review
317
+ ---
156
318
 
157
- Audit code against the plan using structural graph analysis:
319
+ ## 🔐 Environment Variables
158
320
 
159
321
  ```bash
160
- npx ultra-dex review
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
- ### `align` - Quick Score
333
+ ---
164
334
 
165
- Get alignment score (Files + Plan + Graph Integrity):
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
- ### `check` - System Health
351
+ ## 🐛 Troubleshooting
172
352
 
173
- Verify repository health and graph consistency:
353
+ ### Common Issues
174
354
 
355
+ **Command not found:**
175
356
  ```bash
176
- npx ultra-dex check
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
- ## Environment Variables
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
- ANTHROPIC_API_KEY=sk-ant-... # Claude (recommended for complex tasks)
183
- OPENAI_API_KEY=sk-... # OpenAI
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
- ## Local AI with Ollama
379
+ ---
190
380
 
191
- Ultra-Dex supports Ollama for fully local, private AI operations:
381
+ ## 🌟 Why Ultra-Dex?
192
382
 
193
- ```bash
194
- # 1. Install Ollama (https://ollama.ai)
195
- curl -fsSL https://ollama.ai/install.sh | sh
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
- # 2. Pull a model
198
- ollama pull llama3.2
199
- ollama pull codellama
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
- # 3. Use with Ultra-Dex
202
- npx ultra-dex generate "Your idea" --provider ollama --model codellama
397
+ ---
203
398
 
204
- # For agent swarms with local AI
205
- npx ultra-dex swarm "Build user auth" --provider ollama
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
- **Supported Ollama Models:**
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 16 agents for complete feature implementation
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
  ---