ultra-dex 1.7.3 → 1.8.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 (81) hide show
  1. package/README.md +16 -2
  2. package/assets/agents/0-orchestration/orchestrator.md +225 -0
  3. package/assets/agents/00-AGENT_INDEX.md +138 -0
  4. package/assets/agents/1-leadership/cto.md +186 -0
  5. package/assets/agents/1-leadership/planner.md +205 -0
  6. package/assets/agents/1-leadership/research.md +285 -0
  7. package/assets/agents/2-development/backend.md +472 -0
  8. package/assets/agents/2-development/database.md +516 -0
  9. package/assets/agents/2-development/frontend.md +144 -0
  10. package/assets/agents/3-security/auth.md +168 -0
  11. package/assets/agents/3-security/security.md +335 -0
  12. package/assets/agents/4-devops/devops.md +587 -0
  13. package/assets/agents/5-quality/debugger.md +188 -0
  14. package/assets/agents/5-quality/documentation.md +167 -0
  15. package/assets/agents/5-quality/reviewer.md +213 -0
  16. package/assets/agents/5-quality/testing.md +280 -0
  17. package/assets/agents/6-specialist/performance.md +323 -0
  18. package/assets/agents/6-specialist/refactoring.md +343 -0
  19. package/assets/agents/AGENT-INSTRUCTIONS.md +315 -0
  20. package/assets/agents/README.md +232 -0
  21. package/assets/cursor-rules/00-ultra-dex-core.mdc +48 -0
  22. package/assets/cursor-rules/01-database.mdc +50 -0
  23. package/assets/cursor-rules/02-api.mdc +81 -0
  24. package/assets/cursor-rules/03-auth.mdc +70 -0
  25. package/assets/cursor-rules/04-frontend.mdc +92 -0
  26. package/assets/cursor-rules/05-payments.mdc +88 -0
  27. package/assets/cursor-rules/06-testing.mdc +104 -0
  28. package/assets/cursor-rules/07-security.mdc +94 -0
  29. package/assets/cursor-rules/08-deployment.mdc +92 -0
  30. package/assets/cursor-rules/09-error-handling.mdc +137 -0
  31. package/assets/cursor-rules/10-performance.mdc +123 -0
  32. package/assets/cursor-rules/11-nextjs-v15.mdc +307 -0
  33. package/assets/cursor-rules/12-multi-tenancy.mdc +282 -0
  34. package/assets/cursor-rules/README.md +78 -0
  35. package/assets/cursor-rules/load.ps1 +108 -0
  36. package/assets/cursor-rules/load.sh +102 -0
  37. package/assets/docs/BUILD-AUTH-30M.md +113 -0
  38. package/assets/docs/CHECKLIST-21-STEP.md +86 -0
  39. package/assets/docs/CODEMAP.md +229 -0
  40. package/assets/docs/CUSTOMIZATION.md +127 -0
  41. package/assets/docs/LAUNCH-POSTS.md +238 -0
  42. package/assets/docs/QUICK-REFERENCE.md +338 -0
  43. package/assets/docs/README.md +21 -0
  44. package/assets/docs/ROADMAP.md +480 -0
  45. package/assets/docs/TROUBLESHOOTING.md +148 -0
  46. package/assets/docs/TUTORIAL.md +182 -0
  47. package/assets/docs/VERIFICATION.md +108 -0
  48. package/assets/docs/VISION-V2.md +187 -0
  49. package/assets/docs/WORKFLOW-DIAGRAMS.md +463 -0
  50. package/assets/docs/index.html +550 -0
  51. package/assets/live-templates/next15-prisma-clerk/.env.example +3 -0
  52. package/assets/live-templates/next15-prisma-clerk/README.md +10 -0
  53. package/assets/live-templates/next15-prisma-clerk/app/layout.tsx +7 -0
  54. package/assets/live-templates/next15-prisma-clerk/app/page.tsx +8 -0
  55. package/assets/live-templates/next15-prisma-clerk/next.config.js +6 -0
  56. package/assets/live-templates/next15-prisma-clerk/package.json +22 -0
  57. package/assets/live-templates/next15-prisma-clerk/prisma/schema.prisma +34 -0
  58. package/assets/live-templates/remix-supabase/.env.example +2 -0
  59. package/assets/live-templates/remix-supabase/README.md +9 -0
  60. package/assets/live-templates/remix-supabase/app/root.tsx +19 -0
  61. package/assets/live-templates/remix-supabase/app/routes/_index.tsx +8 -0
  62. package/assets/live-templates/remix-supabase/app/utils/supabase.server.ts +6 -0
  63. package/assets/live-templates/remix-supabase/package.json +20 -0
  64. package/assets/live-templates/remix-supabase/remix.config.js +6 -0
  65. package/assets/live-templates/sveltekit-drizzle/.env.example +1 -0
  66. package/assets/live-templates/sveltekit-drizzle/README.md +9 -0
  67. package/assets/live-templates/sveltekit-drizzle/drizzle/schema.ts +7 -0
  68. package/assets/live-templates/sveltekit-drizzle/drizzle.config.ts +5 -0
  69. package/assets/live-templates/sveltekit-drizzle/package.json +21 -0
  70. package/assets/live-templates/sveltekit-drizzle/src/lib/db.ts +5 -0
  71. package/assets/live-templates/sveltekit-drizzle/src/routes/+page.svelte +2 -0
  72. package/assets/live-templates/sveltekit-drizzle/svelte.config.js +5 -0
  73. package/assets/live-templates/sveltekit-drizzle/vite.config.js +5 -0
  74. package/assets/saas-plan/04-Imp-Template.md +5546 -0
  75. package/assets/templates/CASE-STUDY-TEMPLATE.md +139 -0
  76. package/assets/templates/MASTER-PLAN-TEMPLATE.md +647 -0
  77. package/assets/templates/ORDER-TRACKER-TEMPLATE.md +731 -0
  78. package/assets/templates/PHASE-TRACKER-TEMPLATE.md +577 -0
  79. package/assets/templates/README.md +419 -0
  80. package/bin/ultra-dex.js +459 -31
  81. package/package.json +3 -3
@@ -0,0 +1,139 @@
1
+ # Case Study: [Project Name]
2
+
3
+ > Built with Ultra-Dex v[version]
4
+
5
+ ---
6
+
7
+ ## Overview
8
+
9
+ | Metric | Value |
10
+ |--------|-------|
11
+ | **Project** | [Name] |
12
+ | **Type** | [SaaS / Internal Tool / API] |
13
+ | **Team Size** | [# developers] |
14
+ | **Duration** | [X weeks/months] |
15
+ | **Status** | [Shipped / Beta / In Progress] |
16
+
17
+ ---
18
+
19
+ ## The Problem
20
+
21
+ [2-3 sentences describing the problem this project solves]
22
+
23
+ ---
24
+
25
+ ## Tech Stack
26
+
27
+ | Layer | Choice | Why |
28
+ |-------|--------|-----|
29
+ | Frontend | | |
30
+ | Backend | | |
31
+ | Database | | |
32
+ | Auth | | |
33
+ | Hosting | | |
34
+ | Payments | | |
35
+
36
+ ---
37
+
38
+ ## How Ultra-Dex Helped
39
+
40
+ ### Planning Phase
41
+ - [ ] Used QUICK-START.md to capture the idea
42
+ - [ ] Filled out Phase 1 sections (X hours)
43
+ - [ ] Used @Planner for task breakdown
44
+
45
+ ### Implementation Phase
46
+
47
+ **Agents Used:**
48
+ | Agent | For What | Outcome |
49
+ |-------|----------|---------|
50
+ | @CTO | | |
51
+ | @Database | | |
52
+ | @Backend | | |
53
+ | @Frontend | | |
54
+ | @Security | | |
55
+
56
+ ### Quality Phase
57
+ - [ ] Ran 21-step verification
58
+ - [ ] Used @Reviewer for code review
59
+ - [ ] Used @Testing for test coverage
60
+
61
+ ---
62
+
63
+ ## Results
64
+
65
+ ### Time Savings
66
+
67
+ | Without Ultra-Dex (estimate) | With Ultra-Dex | Saved |
68
+ |------------------------------|----------------|-------|
69
+ | [X weeks] | [Y weeks] | [Z%] |
70
+
71
+ ### Quality Metrics
72
+
73
+ | Metric | Result |
74
+ |--------|--------|
75
+ | Test Coverage | X% |
76
+ | Lighthouse Score | X |
77
+ | Security Score | X |
78
+ | API Response (p95) | Xms |
79
+
80
+ ---
81
+
82
+ ## What Worked Well
83
+
84
+ 1. **[Strength 1]** - [Description]
85
+ 2. **[Strength 2]** - [Description]
86
+ 3. **[Strength 3]** - [Description]
87
+
88
+ ---
89
+
90
+ ## What Could Be Better
91
+
92
+ 1. **[Area 1]** - [Suggestion for Ultra-Dex improvement]
93
+ 2. **[Area 2]** - [Suggestion]
94
+
95
+ ---
96
+
97
+ ## Key Learnings
98
+
99
+ > "[Quote about using Ultra-Dex]"
100
+ > — [Name], [Role]
101
+
102
+ ### Recommendations for Others
103
+
104
+ 1. Start with QUICK-START.md - don't skip it
105
+ 2. [Specific tip]
106
+ 3. [Specific tip]
107
+
108
+ ---
109
+
110
+ ## Links
111
+
112
+ - **Live Site:** [URL]
113
+ - **Source Code:** [GitHub URL] (if public)
114
+ - **IMPLEMENTATION-PLAN.md:** [Gist/URL] (optional)
115
+
116
+ ---
117
+
118
+ ## Screenshots
119
+
120
+ [Include 2-3 screenshots of the final product]
121
+
122
+ ---
123
+
124
+ ## About the Team
125
+
126
+ **[Team/Company Name]**
127
+
128
+ [Brief description]
129
+
130
+ - Website: [URL]
131
+ - Twitter: [@handle]
132
+
133
+ ---
134
+
135
+ *Want to share your Ultra-Dex case study? [Submit it here](https://github.com/Srujan0798/Ultra-Dex/issues/new?template=case-study.md)*
136
+
137
+ ---
138
+
139
+ *Ultra-Dex - From Idea to Production-Ready SaaS*