ultra-dex 2.2.0 → 2.2.1
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 +12 -6
- package/assets/agents/0-orchestration/orchestrator.md +2 -2
- package/assets/docs/QUICK-REFERENCE.md +3 -3
- package/assets/docs/ROADMAP.md +5 -5
- package/assets/docs/WORKFLOW-DIAGRAMS.md +1 -1
- package/assets/templates/README.md +1 -1
- package/bin/ultra-dex.js +1 -2095
- package/lib/commands/agents.js +3 -6
- package/lib/commands/init.js +3 -5
- package/lib/commands/serve.js +128 -11
- package/lib/commands/sync.js +35 -0
- package/lib/templates/context.js +2 -2
- package/lib/utils/fallback.js +4 -2
- package/lib/utils/files.js +0 -41
- package/lib/utils/sync.js +216 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -136,6 +136,15 @@ npx ultra-dex init --live --stack next15-prisma-clerk
|
|
|
136
136
|
|
|
137
137
|
Presets: `next15-prisma-clerk`, `remix-supabase`, `sveltekit-drizzle`.
|
|
138
138
|
|
|
139
|
+
**Options (init):**
|
|
140
|
+
| Option | Description |
|
|
141
|
+
|--------|-------------|
|
|
142
|
+
| `-n, --name <name>` | Project name (skips prompt) |
|
|
143
|
+
| `-d, --dir <directory>` | Output directory (default: current) |
|
|
144
|
+
| `--preview` | Preview files without creating them |
|
|
145
|
+
| `--live` | Generate a runnable scaffold |
|
|
146
|
+
| `--stack <preset>` | Preset: next15-prisma-clerk, remix-supabase, sveltekit-drizzle |
|
|
147
|
+
|
|
139
148
|
### `audit`
|
|
140
149
|
|
|
141
150
|
Check project completeness:
|
|
@@ -151,7 +160,6 @@ List and use AI agent prompts:
|
|
|
151
160
|
```bash
|
|
152
161
|
npx ultra-dex agents # List all agents
|
|
153
162
|
npx ultra-dex agent backend # Show specific agent
|
|
154
|
-
npx ultra-dex pack backend # Package context + agent
|
|
155
163
|
```
|
|
156
164
|
|
|
157
165
|
### `fetch`
|
|
@@ -163,12 +171,12 @@ npx ultra-dex fetch
|
|
|
163
171
|
npx ultra-dex fetch --agents --rules
|
|
164
172
|
```
|
|
165
173
|
|
|
166
|
-
### `
|
|
174
|
+
### `serve`
|
|
167
175
|
|
|
168
|
-
|
|
176
|
+
Serve context (MCP-compatible):
|
|
169
177
|
|
|
170
178
|
```bash
|
|
171
|
-
npx ultra-dex
|
|
179
|
+
npx ultra-dex serve --port 3001
|
|
172
180
|
```
|
|
173
181
|
|
|
174
182
|
### Other Commands
|
|
@@ -182,11 +190,9 @@ npx ultra-dex sync
|
|
|
182
190
|
| `examples` | List available examples |
|
|
183
191
|
| `agents` | List AI agents |
|
|
184
192
|
| `agent <name>` | Show specific agent prompt |
|
|
185
|
-
| `pack <agent>` | Package context + agent |
|
|
186
193
|
| `hooks` | Set up git pre-commit hooks |
|
|
187
194
|
| `fetch` | Download assets for offline |
|
|
188
195
|
| `serve` | Serve context over HTTP |
|
|
189
|
-
| `sync` | Auto-sync CONTEXT.md |
|
|
190
196
|
| `validate` | Validate project structure |
|
|
191
197
|
| `workflow <feature>` | Show workflow for a feature |
|
|
192
198
|
| `suggest` | Get AI agent suggestions |
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# @Orchestrator - Meta Agent
|
|
2
2
|
|
|
3
|
-
> **Role**: Coordinate all
|
|
3
|
+
> **Role**: Coordinate all 16 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
|
---
|
|
7
7
|
|
|
8
8
|
## System Prompt
|
|
9
9
|
|
|
10
|
-
You are the **Ultra-Dex Orchestrator**, a meta-agent that coordinates all
|
|
10
|
+
You are the **Ultra-Dex Orchestrator**, a meta-agent that coordinates all 16 specialized agents to build complete, production-ready features. Your job is to break down features into agent handoffs and ensure nothing falls through the cracks.
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
@@ -10,7 +10,7 @@ One-page cheatsheet for AI-driven SaaS development.
|
|
|
10
10
|
# Initialize Ultra-Dex in your project
|
|
11
11
|
npx ultra-dex init
|
|
12
12
|
|
|
13
|
-
# List all
|
|
13
|
+
# List all 16 agents
|
|
14
14
|
npx ultra-dex agents
|
|
15
15
|
|
|
16
16
|
# Show specific agent
|
|
@@ -139,7 +139,7 @@ npx ultra-dex init # Interactive setup
|
|
|
139
139
|
npx ultra-dex init --yes # Use defaults
|
|
140
140
|
|
|
141
141
|
# Agents
|
|
142
|
-
npx ultra-dex agents # List all
|
|
142
|
+
npx ultra-dex agents # List all 16 agents
|
|
143
143
|
npx ultra-dex agent backend # Show backend agent
|
|
144
144
|
npx ultra-dex agent cto # Show CTO agent
|
|
145
145
|
|
|
@@ -216,7 +216,7 @@ Use different AI tools for different tasks:
|
|
|
216
216
|
|
|
217
217
|
**Core:**
|
|
218
218
|
- [Main README](./README.md) - Project overview
|
|
219
|
-
- [Agent Index](./agents/00-AGENT_INDEX.md) - All
|
|
219
|
+
- [Agent Index](./agents/00-AGENT_INDEX.md) - All 16 agents
|
|
220
220
|
- [Guide Directory](./guides/README.md) - All guides
|
|
221
221
|
- [CHANGELOG](./CHANGELOG.md) - Version history
|
|
222
222
|
|
package/assets/docs/ROADMAP.md
CHANGED
|
@@ -12,7 +12,7 @@ By 2027, developers should think: "Building a SaaS? Use Ultra-Dex + AI agents."
|
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
-
## Current State (
|
|
15
|
+
## Current State (v2.1.0) ✅
|
|
16
16
|
|
|
17
17
|
**Released: January 26, 2026**
|
|
18
18
|
|
|
@@ -339,7 +339,7 @@ Integrate Ultra-Dex directly into development platforms.
|
|
|
339
339
|
|
|
340
340
|
| Tier | Price | What You Get |
|
|
341
341
|
|------|-------|--------------|
|
|
342
|
-
| **Core** | Free | Full framework,
|
|
342
|
+
| **Core** | Free | Full framework, 16 agents, CLI, templates, community support |
|
|
343
343
|
| **Pro Playbooks** | $49-149 | Industry-specific playbooks (Healthcare SaaS, Fintech, E-commerce) with compliance guidance |
|
|
344
344
|
| **Team License** | $29/user/mo | Shared configs, audit logs, priority support, custom agent builder |
|
|
345
345
|
| **Enterprise** | Custom | Self-hosted, SSO, dedicated support, SLA, custom integrations |
|
|
@@ -357,7 +357,7 @@ Integrate Ultra-Dex directly into development platforms.
|
|
|
357
357
|
- **Enterprise** - When demand justifies (target: 10+ inbound requests)
|
|
358
358
|
|
|
359
359
|
### What Will NEVER Be Paid
|
|
360
|
-
- Core
|
|
360
|
+
- Core 16 agents
|
|
361
361
|
- CLI tool
|
|
362
362
|
- All existing templates and guides
|
|
363
363
|
- Community support (GitHub, Discord)
|
|
@@ -471,10 +471,10 @@ Integrate Ultra-Dex directly into development platforms.
|
|
|
471
471
|
|
|
472
472
|
*This roadmap is a living document and will evolve based on community feedback and real-world usage.*
|
|
473
473
|
|
|
474
|
-
*Last updated: January 26, 2026 -
|
|
474
|
+
*Last updated: January 26, 2026 - v2.1.0 released, offline mode added*
|
|
475
475
|
|
|
476
476
|
---
|
|
477
477
|
|
|
478
|
-
*Ultra-Dex
|
|
478
|
+
*Ultra-Dex v2.1.0 - Professional AI Orchestration Meta Layer*
|
|
479
479
|
|
|
480
480
|
**The future is collaborative AI-driven development. Let's build it together.** 🚀
|
|
@@ -390,7 +390,7 @@ graph TD
|
|
|
390
390
|
- [Multi-Tool Workflow](./guides/MULTI-TOOL-WORKFLOW.md) - Coordinate multiple AIs
|
|
391
391
|
|
|
392
392
|
**Agent Reference:**
|
|
393
|
-
- [Agent Index](./agents/00-AGENT_INDEX.md) - All
|
|
393
|
+
- [Agent Index](./agents/00-AGENT_INDEX.md) - All 16 agents with "when to use"
|
|
394
394
|
- [Agents README](./agents/README.md) - Tier-based organization
|
|
395
395
|
|
|
396
396
|
**Decision Guides:**
|
|
@@ -374,7 +374,7 @@ Both templates are **fully customizable**. Common modifications:
|
|
|
374
374
|
- [Advanced Workflows](../guides/ADVANCED-WORKFLOWS.md) - Real-world examples
|
|
375
375
|
|
|
376
376
|
**Agent Prompts:**
|
|
377
|
-
- [Agent Index](../agents/00-AGENT_INDEX.md) - Quick reference for all
|
|
377
|
+
- [Agent Index](../agents/00-AGENT_INDEX.md) - Quick reference for all 16 agents
|
|
378
378
|
- [Agents Directory](../agents/) - Full agent prompt library
|
|
379
379
|
|
|
380
380
|
**Core Framework:**
|