ultra-dex 1.8.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 +165 -140
- 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 +27 -1893
- package/lib/commands/agents.js +151 -0
- package/lib/commands/audit.js +135 -0
- package/lib/commands/banner.js +21 -0
- package/lib/commands/build.js +214 -0
- package/lib/commands/examples.js +34 -0
- package/lib/commands/fetch.js +186 -0
- package/lib/commands/generate.js +217 -0
- package/lib/commands/hooks.js +105 -0
- package/lib/commands/init.js +335 -0
- package/lib/commands/placeholders.js +11 -0
- package/lib/commands/review.js +287 -0
- package/lib/commands/serve.js +173 -0
- package/lib/commands/suggest.js +126 -0
- package/lib/commands/sync.js +35 -0
- package/lib/commands/validate.js +140 -0
- package/lib/commands/workflows.js +185 -0
- package/lib/config/paths.js +9 -0
- package/lib/config/urls.js +16 -0
- package/lib/providers/base.js +82 -0
- package/lib/providers/claude.js +177 -0
- package/lib/providers/gemini.js +170 -0
- package/lib/providers/index.js +93 -0
- package/lib/providers/openai.js +163 -0
- package/lib/templates/context.js +26 -0
- package/lib/templates/embedded.js +141 -0
- package/lib/templates/prompts/generate-plan.js +147 -0
- package/lib/templates/prompts/review-code.js +57 -0
- package/lib/templates/prompts/section-prompts.js +275 -0
- package/lib/templates/prompts/system-prompt.md +58 -0
- package/lib/templates/quick-start.js +43 -0
- package/lib/utils/build-helpers.js +257 -0
- package/lib/utils/fallback.js +38 -0
- package/lib/utils/files.js +26 -0
- package/lib/utils/network.js +18 -0
- package/lib/utils/output.js +20 -0
- package/lib/utils/parser.js +155 -0
- package/lib/utils/prompt-builder.js +93 -0
- package/lib/utils/review-helpers.js +334 -0
- package/lib/utils/sync.js +216 -0
- package/lib/utils/validation.js +34 -0
- package/package.json +17 -3
package/README.md
CHANGED
|
@@ -1,219 +1,244 @@
|
|
|
1
1
|
# Ultra-Dex CLI
|
|
2
2
|
|
|
3
|
-
> Scaffold Ultra-Dex projects from the command line
|
|
3
|
+
> Scaffold Ultra-Dex projects from the command line, now with **AI-powered plan generation**.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## What's New in v2.1
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
#
|
|
9
|
-
npx ultra-dex
|
|
8
|
+
# 🚀 Generate a complete 34-section plan with AI
|
|
9
|
+
npx ultra-dex generate "A task management SaaS for remote teams"
|
|
10
10
|
|
|
11
|
-
#
|
|
12
|
-
|
|
13
|
-
cat QUICK-START.md
|
|
11
|
+
# 🔧 Start AI-assisted development
|
|
12
|
+
npx ultra-dex build --agent planner
|
|
14
13
|
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
#
|
|
19
|
-
|
|
14
|
+
# 🔍 Review code against plan
|
|
15
|
+
npx ultra-dex review
|
|
16
|
+
|
|
17
|
+
# 📊 Quick alignment check
|
|
18
|
+
npx ultra-dex align
|
|
19
|
+
```
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
## First 10 Minutes
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
# Option 1: AI-Generated Plan (Recommended)
|
|
25
|
+
export ANTHROPIC_API_KEY=your-key # or OPENAI_API_KEY or GOOGLE_AI_KEY
|
|
26
|
+
npx ultra-dex generate "Your SaaS idea here"
|
|
24
27
|
|
|
25
|
-
#
|
|
28
|
+
# Option 2: Manual Setup
|
|
29
|
+
npx ultra-dex init
|
|
26
30
|
```
|
|
27
31
|
|
|
28
32
|
## Installation
|
|
29
33
|
|
|
30
34
|
```bash
|
|
31
35
|
# Run directly with npx (no installation needed)
|
|
32
|
-
npx ultra-dex
|
|
36
|
+
npx ultra-dex generate "Your idea"
|
|
33
37
|
|
|
34
38
|
# Or install globally
|
|
35
39
|
npm install -g ultra-dex
|
|
36
|
-
ultra-dex
|
|
40
|
+
ultra-dex generate "Your idea"
|
|
37
41
|
```
|
|
38
42
|
|
|
39
|
-
##
|
|
43
|
+
## AI Commands (v2.0+)
|
|
40
44
|
|
|
41
|
-
###
|
|
45
|
+
### `generate` - AI Plan Generation
|
|
46
|
+
|
|
47
|
+
Generate a complete implementation plan using AI:
|
|
42
48
|
|
|
43
49
|
```bash
|
|
44
|
-
|
|
50
|
+
# Basic usage
|
|
51
|
+
npx ultra-dex generate "A booking platform for dog groomers"
|
|
52
|
+
|
|
53
|
+
# With options
|
|
54
|
+
npx ultra-dex generate "idea" --provider openai --output ./my-project
|
|
55
|
+
|
|
56
|
+
# Preview without calling AI
|
|
57
|
+
npx ultra-dex generate "idea" --dry-run
|
|
45
58
|
```
|
|
46
59
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
60
|
+
**Options:**
|
|
61
|
+
| Option | Description | Default |
|
|
62
|
+
|--------|-------------|---------|
|
|
63
|
+
| `-p, --provider` | AI provider (claude, openai, gemini) | claude |
|
|
64
|
+
| `-m, --model` | Specific model to use | provider default |
|
|
65
|
+
| `-o, --output` | Output directory | current |
|
|
66
|
+
| `-k, --key` | API key | env variable |
|
|
67
|
+
| `--dry-run` | Show structure only | false |
|
|
68
|
+
|
|
69
|
+
### `build` - AI-Assisted Development
|
|
54
70
|
|
|
55
|
-
|
|
71
|
+
Start development with AI agents:
|
|
56
72
|
|
|
57
73
|
```bash
|
|
58
|
-
|
|
74
|
+
# Interactive agent selection
|
|
75
|
+
npx ultra-dex build
|
|
76
|
+
|
|
77
|
+
# Specific agent
|
|
78
|
+
npx ultra-dex build --agent backend --task "Create user API endpoints"
|
|
79
|
+
|
|
80
|
+
# Copy to clipboard for external AI
|
|
81
|
+
npx ultra-dex build --agent planner --copy
|
|
59
82
|
```
|
|
60
83
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
84
|
+
**Available Agents:**
|
|
85
|
+
| Agent | Role |
|
|
86
|
+
|-------|------|
|
|
87
|
+
| `planner` | Break down features into atomic tasks |
|
|
88
|
+
| `cto` | Architecture decisions |
|
|
89
|
+
| `backend` | API endpoints and business logic |
|
|
90
|
+
| `frontend` | UI components and pages |
|
|
91
|
+
| `database` | Schema design and migrations |
|
|
92
|
+
| `auth` | Authentication and authorization |
|
|
93
|
+
| `security` | Security audit |
|
|
94
|
+
| `testing` | Write and run tests |
|
|
95
|
+
| `reviewer` | Code review |
|
|
96
|
+
| `devops` | Deployment and CI/CD |
|
|
65
97
|
|
|
66
|
-
###
|
|
98
|
+
### `review` - Code Review
|
|
99
|
+
|
|
100
|
+
Check code alignment with plan:
|
|
67
101
|
|
|
68
102
|
```bash
|
|
69
|
-
npx ultra-dex
|
|
103
|
+
npx ultra-dex review
|
|
104
|
+
npx ultra-dex review --dir ./src
|
|
70
105
|
```
|
|
71
106
|
|
|
72
|
-
|
|
73
|
-
- Required files (QUICK-START.md, CONTEXT.md, etc.)
|
|
74
|
-
- Key sections (idea, problem, MVP, tech stack)
|
|
75
|
-
- Implementation details (database, API, auth)
|
|
107
|
+
### `align` - Quick Score
|
|
76
108
|
|
|
77
|
-
|
|
109
|
+
Get alignment score instantly:
|
|
78
110
|
|
|
79
|
-
|
|
111
|
+
```bash
|
|
112
|
+
npx ultra-dex align
|
|
113
|
+
npx ultra-dex align --json # Machine-readable output
|
|
114
|
+
```
|
|
80
115
|
|
|
116
|
+
**Environment Variables:**
|
|
81
117
|
```bash
|
|
82
|
-
|
|
118
|
+
ANTHROPIC_API_KEY=sk-ant-... # Claude (recommended)
|
|
119
|
+
OPENAI_API_KEY=sk-... # OpenAI
|
|
120
|
+
GOOGLE_AI_KEY=... # Gemini
|
|
83
121
|
```
|
|
84
122
|
|
|
85
|
-
|
|
86
|
-
- CTO, Backend, Frontend, Database
|
|
87
|
-
- Auth, DevOps, Reviewer, Debugger, Planner
|
|
123
|
+
### `init`
|
|
88
124
|
|
|
89
|
-
|
|
125
|
+
Interactive project setup:
|
|
90
126
|
|
|
91
127
|
```bash
|
|
92
|
-
npx ultra-dex
|
|
128
|
+
npx ultra-dex init
|
|
93
129
|
```
|
|
94
130
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
### Set up git hooks
|
|
131
|
+
Generate a runnable scaffold:
|
|
98
132
|
|
|
99
133
|
```bash
|
|
100
|
-
npx ultra-dex
|
|
134
|
+
npx ultra-dex init --live --stack next15-prisma-clerk
|
|
101
135
|
```
|
|
102
136
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
137
|
+
Presets: `next15-prisma-clerk`, `remix-supabase`, `sveltekit-drizzle`.
|
|
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 |
|
|
107
147
|
|
|
108
|
-
|
|
148
|
+
### `audit`
|
|
109
149
|
|
|
110
|
-
|
|
150
|
+
Check project completeness:
|
|
111
151
|
|
|
112
152
|
```bash
|
|
113
|
-
npx ultra-dex
|
|
153
|
+
npx ultra-dex audit
|
|
114
154
|
```
|
|
115
155
|
|
|
116
|
-
|
|
117
|
-
- Cursor rules (12 .mdc files)
|
|
118
|
-
- Agent prompts (16 agents)
|
|
119
|
-
- Documentation and guides
|
|
156
|
+
### `agents`
|
|
120
157
|
|
|
121
|
-
|
|
122
|
-
- `--dir <path>` - Target directory (default: `.ultra-dex`)
|
|
123
|
-
- `--agents` - Fetch only agent prompts
|
|
124
|
-
- `--rules` - Fetch only cursor rules
|
|
125
|
-
- `--docs` - Fetch only documentation
|
|
158
|
+
List and use AI agent prompts:
|
|
126
159
|
|
|
127
|
-
After fetching, copy to your project:
|
|
128
160
|
```bash
|
|
129
|
-
|
|
130
|
-
|
|
161
|
+
npx ultra-dex agents # List all agents
|
|
162
|
+
npx ultra-dex agent backend # Show specific agent
|
|
131
163
|
```
|
|
132
164
|
|
|
133
|
-
###
|
|
165
|
+
### `fetch`
|
|
166
|
+
|
|
167
|
+
Download assets for offline use:
|
|
134
168
|
|
|
135
169
|
```bash
|
|
136
|
-
npx ultra-dex
|
|
170
|
+
npx ultra-dex fetch
|
|
171
|
+
npx ultra-dex fetch --agents --rules
|
|
137
172
|
```
|
|
138
173
|
|
|
139
|
-
|
|
140
|
-
- `GET /` health check
|
|
141
|
-
- `GET /context` returns CONTEXT.md, IMPLEMENTATION-PLAN.md, QUICK-START.md
|
|
174
|
+
### `serve`
|
|
142
175
|
|
|
143
|
-
|
|
176
|
+
Serve context (MCP-compatible):
|
|
177
|
+
|
|
178
|
+
```bash
|
|
179
|
+
npx ultra-dex serve --port 3001
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
### Other Commands
|
|
144
183
|
|
|
145
184
|
| Command | Description |
|
|
146
185
|
|---------|-------------|
|
|
147
|
-
| `
|
|
148
|
-
| `
|
|
149
|
-
| `
|
|
150
|
-
| `
|
|
151
|
-
| `
|
|
152
|
-
| `
|
|
153
|
-
| `
|
|
154
|
-
| `
|
|
155
|
-
| `
|
|
156
|
-
| `
|
|
157
|
-
| `
|
|
158
|
-
| `
|
|
159
|
-
| `
|
|
160
|
-
|
|
|
161
|
-
|
|
|
162
|
-
|
|
163
|
-
##
|
|
164
|
-
|
|
165
|
-
### init
|
|
186
|
+
| `init` | Initialize a new project |
|
|
187
|
+
| `init --preview` | Preview files without creating them |
|
|
188
|
+
| `init --live` | Generate a runnable scaffold |
|
|
189
|
+
| `audit` | Audit project for completeness |
|
|
190
|
+
| `examples` | List available examples |
|
|
191
|
+
| `agents` | List AI agents |
|
|
192
|
+
| `agent <name>` | Show specific agent prompt |
|
|
193
|
+
| `hooks` | Set up git pre-commit hooks |
|
|
194
|
+
| `fetch` | Download assets for offline |
|
|
195
|
+
| `serve` | Serve context over HTTP |
|
|
196
|
+
| `validate` | Validate project structure |
|
|
197
|
+
| `workflow <feature>` | Show workflow for a feature |
|
|
198
|
+
| `suggest` | Get AI agent suggestions |
|
|
199
|
+
| `--help` | Show help |
|
|
200
|
+
| `--version` | Show version |
|
|
201
|
+
|
|
202
|
+
## Example: AI Generation
|
|
166
203
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
| `-n, --name <name>` | Project name (skips prompt) |
|
|
170
|
-
| `-d, --dir <directory>` | Output directory (default: current) |
|
|
204
|
+
```bash
|
|
205
|
+
$ npx ultra-dex generate "A booking platform for dog groomers"
|
|
171
206
|
|
|
172
|
-
|
|
207
|
+
🚀 Ultra-Dex AI Plan Generator
|
|
173
208
|
|
|
174
|
-
|
|
175
|
-
|--------|-------------|
|
|
176
|
-
| `-d, --dir <directory>` | Directory to audit (default: current) |
|
|
209
|
+
✔ AI modules loaded
|
|
177
210
|
|
|
178
|
-
|
|
211
|
+
📝 Idea: "A booking platform for dog groomers"
|
|
179
212
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
Files created:
|
|
206
|
-
my-saas/
|
|
207
|
-
├── QUICK-START.md
|
|
208
|
-
├── CONTEXT.md
|
|
209
|
-
├── IMPLEMENTATION-PLAN.md
|
|
210
|
-
├── .cursor/rules/ (11 AI rule files)
|
|
211
|
-
└── .agents/ (9 AI agent prompts)
|
|
213
|
+
✓ Using Claude (Anthropic) (claude-sonnet-4-20250514)
|
|
214
|
+
|
|
215
|
+
📊 Estimated Generation:
|
|
216
|
+
Input tokens: ~2,650
|
|
217
|
+
Output tokens: ~40,000
|
|
218
|
+
Estimated cost: ~$0.45
|
|
219
|
+
|
|
220
|
+
? Proceed with generation? Yes
|
|
221
|
+
|
|
222
|
+
⚡ Generating 34-section implementation plan...
|
|
223
|
+
|
|
224
|
+
✔ Generation complete!
|
|
225
|
+
|
|
226
|
+
✅ All 34 sections generated
|
|
227
|
+
Tokens used: 42,350 tokens (2,650 in / 39,700 out)
|
|
228
|
+
Actual cost: $0.52
|
|
229
|
+
|
|
230
|
+
📦 Project: GroomBook
|
|
231
|
+
|
|
232
|
+
✓ Created ./IMPLEMENTATION-PLAN.md
|
|
233
|
+
✓ Created ./QUICK-START.md
|
|
234
|
+
✓ Created ./CONTEXT.md
|
|
235
|
+
|
|
236
|
+
🎉 Generation complete!
|
|
212
237
|
|
|
213
238
|
Next steps:
|
|
214
|
-
1.
|
|
215
|
-
2.
|
|
216
|
-
3. Start building
|
|
239
|
+
1. Review IMPLEMENTATION-PLAN.md
|
|
240
|
+
2. Customize sections as needed
|
|
241
|
+
3. Start building with: npx ultra-dex init
|
|
217
242
|
```
|
|
218
243
|
|
|
219
244
|
## Links
|
|
@@ -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:**
|