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.
Files changed (146) hide show
  1. package/README.md +362 -174
  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 +137 -19
  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 +199 -115
  27. package/lib/commands/audit.js +118 -32
  28. package/lib/commands/auth.js +119 -0
  29. package/lib/commands/auto-implement.js +55 -16
  30. package/lib/commands/autonomous.js +408 -0
  31. package/lib/commands/banner.js +17 -17
  32. package/lib/commands/batch.js +264 -0
  33. package/lib/commands/brain.js +169 -0
  34. package/lib/commands/build.js +12 -6
  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 +6 -6
  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 +148 -48
  44. package/lib/commands/doctor.js +3 -3
  45. package/lib/commands/estimate.js +268 -0
  46. package/lib/commands/exec.js +29 -4
  47. package/lib/commands/export.js +1 -1
  48. package/lib/commands/github.js +1 -0
  49. package/lib/commands/init.js +57 -78
  50. package/lib/commands/integrate.js +423 -0
  51. package/lib/commands/memory.js +165 -0
  52. package/lib/commands/monitoring.js +39 -2
  53. package/lib/commands/pipeline.js +394 -0
  54. package/lib/commands/plan.js +251 -31
  55. package/lib/commands/playground.js +69 -0
  56. package/lib/commands/plugin.js +143 -0
  57. package/lib/commands/plugins.js +179 -0
  58. package/lib/commands/quality-enhanced.js +220 -0
  59. package/lib/commands/quality.js +460 -0
  60. package/lib/commands/review.js +4 -3
  61. package/lib/commands/run.js +99 -24
  62. package/lib/commands/scaffold-enhanced.js +827 -0
  63. package/lib/commands/search.js +78 -17
  64. package/lib/commands/serve.js +178 -25
  65. package/lib/commands/setup.js +245 -0
  66. package/lib/commands/state.js +90 -3
  67. package/lib/commands/suggest.js +128 -33
  68. package/lib/commands/swarm.js +122 -156
  69. package/lib/commands/sync-pm.js +374 -0
  70. package/lib/commands/sync.js +0 -1
  71. package/lib/commands/validate.js +1 -1
  72. package/lib/commands/verify.js +62 -4
  73. package/lib/commands/voice.js +147 -0
  74. package/lib/commands/watch.js +27 -3
  75. package/lib/commands/workflows.js +98 -19
  76. package/lib/commands/workspace.js +122 -0
  77. package/lib/kernel/agent.js +277 -0
  78. package/lib/kernel/context.js +107 -0
  79. package/lib/kernel/editor.js +90 -0
  80. package/lib/kernel/session.js +65 -0
  81. package/lib/kernel/tools.js +157 -0
  82. package/lib/mcp/client.js +2 -1
  83. package/lib/mcp/graph.js +275 -44
  84. package/lib/mcp/server.js +52 -17
  85. package/lib/mcp/tools.js +71 -85
  86. package/lib/mcp/websocket.js +272 -91
  87. package/lib/memory/multi-tier.js +457 -0
  88. package/lib/nlp/router.js +69 -0
  89. package/lib/plugin-system.js +246 -0
  90. package/lib/providers/base.js +3 -3
  91. package/lib/providers/index.js +12 -4
  92. package/lib/providers/langchain.js +2 -2
  93. package/lib/providers/langgraph.js +98 -0
  94. package/lib/providers/ollama.js +55 -1
  95. package/lib/providers/openai-assistants.js +4 -4
  96. package/lib/providers/openai.js +28 -0
  97. package/lib/quality/automation.js +229 -0
  98. package/lib/quality/scanner.js +242 -4
  99. package/lib/repl/index.js +238 -0
  100. package/lib/swarm/coordinator.js +0 -2
  101. package/lib/swarm/index.js +2 -4
  102. package/lib/swarm/protocol.js +1 -1
  103. package/lib/swarm/tiers.js +16 -2
  104. package/lib/themes/doomsday.js +4 -2
  105. package/lib/ui/diff.js +44 -0
  106. package/lib/ui/interactive.js +126 -0
  107. package/lib/ui/interface.js +5 -5
  108. package/lib/ui/layout.js +36 -0
  109. package/lib/ui/logger.js +68 -0
  110. package/lib/ui/renderer.js +207 -0
  111. package/lib/ui/spinners.js +1 -1
  112. package/lib/ui/theme.js +27 -75
  113. package/lib/utils/agents.ts +42 -0
  114. package/lib/utils/build-helpers.js +0 -3
  115. package/lib/utils/config-manager.js +24 -4
  116. package/lib/utils/config.js +11 -0
  117. package/lib/utils/contextual-help.js +265 -0
  118. package/lib/utils/dashboard-notifier.js +54 -0
  119. package/lib/utils/error-handler.js +291 -0
  120. package/lib/utils/error-recovery.js +1 -2
  121. package/lib/utils/files.js +1 -1
  122. package/lib/utils/files.ts +70 -0
  123. package/lib/utils/graph.js +1 -1
  124. package/lib/utils/history.js +306 -0
  125. package/lib/utils/messages.js +25 -17
  126. package/lib/utils/monitoring.js +45 -0
  127. package/lib/utils/performance.js +353 -0
  128. package/lib/utils/plugin-system.js +215 -0
  129. package/lib/utils/profiler.js +247 -0
  130. package/lib/utils/progress.js +4 -3
  131. package/lib/utils/reconciler.js +92 -0
  132. package/lib/utils/review-helpers.js +0 -1
  133. package/lib/utils/sessionPersistence.js +222 -0
  134. package/lib/utils/state-sync.js +93 -0
  135. package/lib/utils/theme-state.ts +22 -0
  136. package/lib/utils/validation.ts +54 -0
  137. package/lib/utils/version-display.js +2 -1
  138. package/lib/utils/version.js +17 -0
  139. package/lib/utils/version.ts +13 -0
  140. package/lib/vision/scanner.js +151 -0
  141. package/package.json +16 -3
  142. package/assets/docs/TUTORIAL.md +0 -182
  143. package/assets/docs/VERIFICATION.md +0 -108
  144. package/assets/saas-plan/04-Imp-Template.md +0 -5546
  145. package/lib/commands/agent-builder.js +0 -226
  146. 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
- > 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.0 (Survival 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
 
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
- # 🧠 Auto-sync CONTEXT.md from codebase (eliminates manual updates)
9
- npx ultra-dex sync --brain
15
+ # Install from VSIX or marketplace
16
+ # Access: Agent Explorer, Swarm Status, Context Preview, Quick Actions
17
+ ```
10
18
 
11
- # 🐳 Execute code in Docker sandbox
12
- npx ultra-dex exec "console.log('safe!')" --lang javascript
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
- # 🔍 Semantic search with vector embeddings
15
- npx ultra-dex search "user authentication" --index
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
- # 🐙 GitHub integration (issues → tasks, auto-PR)
18
- npx ultra-dex github sync
19
- npx ultra-dex github pr --from-swarm
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
- # 🤖 Autonomous agent swarms with parallel execution
22
- npx ultra-dex swarm "Build user authentication" --parallel
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
- # 🔄 Start the Active Kernel (MCP + WebSocket + Dashboard)
25
- npx ultra-dex serve
44
+ # 📋 Batch Execution
45
+ npx ultra-dex batch setup.json
46
+ npx ultra-dex batch deploy.txt --dry-run
26
47
 
27
- # 📊 Health monitoring and metrics
28
- npx ultra-dex health
29
- npx ultra-dex metrics
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
- ## First 10 Minutes
57
+ ### 🔧 Enhanced Features
33
58
 
34
59
  ```bash
35
- # Option 1: AI-Generated Plan (Recommended)
36
- export ANTHROPIC_API_KEY=your-key # or OPENAI_API_KEY or GOOGLE_AI_KEY
37
- npx ultra-dex generate "Your SaaS idea here"
38
-
39
- # Option 2: Manual Setup
40
- 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
41
79
  ```
42
80
 
43
- ## Installation
81
+ ### 🔄 CI/CD Integration
44
82
 
45
- ```bash
46
- # Run directly with npx (no installation needed)
47
- 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'
48
89
 
49
- # Or install globally
50
- npm install -g ultra-dex
51
- ultra-dex generate "Your idea"
90
+ - uses: Srujan0798/ultra-dex-action/align@v1
91
+ with:
92
+ comment-on-pr: 'true'
52
93
  ```
53
94
 
54
- ## Scaffold Command (NEW)
55
-
56
- Generate production-ready boilerplate instantly:
95
+ ### 📚 Example Repositories
57
96
 
58
- ```bash
59
- # List available templates
60
- 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)
61
101
 
62
- # Generate Next.js 15 + Prisma + Clerk project
63
- npx ultra-dex scaffold next15-prisma-clerk
102
+ [View Examples](./examples/)
64
103
 
65
- # Generate Remix + Supabase project
66
- npx ultra-dex scaffold remix-supabase
104
+ ---
67
105
 
68
- # Generate SvelteKit + Drizzle project
69
- npx ultra-dex scaffold sveltekit-drizzle
70
- ```
106
+ ## 📊 By The Numbers
71
107
 
72
- ## 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**
73
115
 
74
- ### `swarm` - Autonomous Agent Pipeline
116
+ ---
75
117
 
76
- Run complex task pipelines with multiple agents:
118
+ ## 🚀 Quick Start (30 seconds)
77
119
 
78
120
  ```bash
79
- # Build a feature with a swarm of agents
80
- npx ultra-dex swarm "Implement Stripe subscriptions" --parallel
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
- # Dry run to see the plan
83
- npx ultra-dex swarm "Migrate to Tailwind" --dry-run
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
- ### `serve` - Active Kernel
137
+ ---
87
138
 
88
- Start the MCP-compatible server for IDE integration and dashboard:
139
+ ## 📖 Core Commands
89
140
 
141
+ ### Project Management
90
142
  ```bash
91
- 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
92
149
  ```
93
150
 
94
- ### `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
+ ```
95
159
 
96
- 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
+ ```
97
169
 
170
+ ### Advanced
98
171
  ```bash
99
- # Implement a feature from scratch
100
- 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
101
179
  ```
102
180
 
103
- ### `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
+ ```
104
247
 
105
- 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
+ ```
106
257
 
258
+ ### Shell Completions
107
259
  ```bash
108
- 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
109
267
  ```
110
268
 
111
- ## Core Commands
269
+ ---
270
+
271
+ ## 📚 Documentation
112
272
 
113
- ### `generate` - AI Plan Generation
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
- Generate a complete implementation plan using AI:
280
+ ---
116
281
 
282
+ ## 🎓 Learning Path
283
+
284
+ ### Beginner (Day 1)
117
285
  ```bash
118
- # Basic usage
119
- 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
+ ```
120
290
 
121
- # With options
122
- 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
123
296
  ```
124
297
 
125
- ### `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
+ ```
126
304
 
127
- Start development with AI agents (Interactive Mode):
305
+ ---
128
306
 
129
- ```bash
130
- # Interactive agent selection
131
- npx ultra-dex build
307
+ ## 🤝 VS Code Integration
132
308
 
133
- # Specific agent
134
- npx ultra-dex run backend --task "Create user API endpoints"
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
- ### `review` - Graph-Aware Code Review
317
+ ---
138
318
 
139
- Audit code against the plan using structural graph analysis:
319
+ ## 🔐 Environment Variables
140
320
 
141
321
  ```bash
142
- 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
143
331
  ```
144
332
 
145
- ### `align` - Quick Score
333
+ ---
146
334
 
147
- Get alignment score (Files + Plan + Graph Integrity):
335
+ ## 📦 Project Structure
148
336
 
149
- ```bash
150
- npx ultra-dex align
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
- ### `check` - System Health
349
+ ---
154
350
 
155
- Verify repository health and graph consistency:
351
+ ## 🐛 Troubleshooting
156
352
 
353
+ ### Common Issues
354
+
355
+ **Command not found:**
157
356
  ```bash
158
- npx ultra-dex check
357
+ npm install -g ultra-dex
358
+ # Or use: npx ultra-dex
159
359
  ```
160
360
 
161
- ## Environment Variables
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
- ANTHROPIC_API_KEY=sk-ant-... # Claude (recommended for complex tasks)
165
- OPENAI_API_KEY=sk-... # OpenAI
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
- ## Local AI with Ollama
373
+ **Need help:**
374
+ ```bash
375
+ npx ultra-dex doctor # Diagnostics
376
+ npx ultra-dex <command> --help # Command help
377
+ ```
172
378
 
173
- Ultra-Dex supports Ollama for fully local, private AI operations:
379
+ ---
174
380
 
175
- ```bash
176
- # 1. Install Ollama (https://ollama.ai)
177
- curl -fsSL https://ollama.ai/install.sh | sh
381
+ ## 🌟 Why Ultra-Dex?
178
382
 
179
- # 2. Pull a model
180
- ollama pull llama3.2
181
- ollama pull codellama
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
- # 3. Use with Ultra-Dex
184
- npx ultra-dex generate "Your idea" --provider ollama --model 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
185
396
 
186
- # For agent swarms with local AI
187
- npx ultra-dex swarm "Build user auth" --provider ollama
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
- **Supported Ollama Models:**
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 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
  ---