@digilogiclabs/create-saas-app 1.14.1 → 1.17.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.
Files changed (147) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/README.md +285 -39
  3. package/bin/index.js +1 -1
  4. package/dist/.tsbuildinfo +1 -1
  5. package/dist/cli/prompts/project-setup.d.ts.map +1 -1
  6. package/dist/cli/prompts/project-setup.js +49 -12
  7. package/dist/cli/prompts/project-setup.js.map +1 -1
  8. package/dist/generators/template-generator.d.ts.map +1 -1
  9. package/dist/generators/template-generator.js +27 -4
  10. package/dist/generators/template-generator.js.map +1 -1
  11. package/dist/templates/mobile/base/template/App.tsx +2 -0
  12. package/dist/templates/mobile/ui-auth-payments/template/.env.example +20 -0
  13. package/dist/templates/mobile/ui-auth-payments/template/README.md +218 -0
  14. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/_layout.tsx +153 -0
  15. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/analytics.tsx +668 -0
  16. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/billing.tsx +743 -0
  17. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/index.tsx +757 -0
  18. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/orders.tsx +402 -0
  19. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/profile.tsx +580 -0
  20. package/dist/templates/mobile/ui-auth-payments/template/app/_layout.tsx +127 -0
  21. package/dist/templates/mobile/ui-auth-payments/template/app/auth/login.tsx +246 -0
  22. package/dist/templates/mobile/ui-auth-payments/template/app/auth/signup.tsx +362 -0
  23. package/dist/templates/mobile/ui-auth-payments/template/app/onboarding/index.tsx +193 -0
  24. package/dist/templates/mobile/ui-auth-payments/template/app/tour/index.tsx +272 -0
  25. package/dist/templates/mobile/ui-auth-payments/template/app.json +93 -0
  26. package/dist/templates/mobile/ui-auth-payments/template/babel.config.js +23 -0
  27. package/dist/templates/mobile/ui-auth-payments/template/eas.json +45 -0
  28. package/dist/templates/mobile/ui-auth-payments/template/expo-env.d.ts +3 -0
  29. package/dist/templates/mobile/ui-auth-payments/template/jest-setup.ts +74 -0
  30. package/dist/templates/mobile/ui-auth-payments/template/metro.config.js +11 -0
  31. package/dist/templates/mobile/ui-auth-payments/template/package.json +106 -0
  32. package/dist/templates/mobile/ui-auth-payments/template/tsconfig.json +31 -0
  33. package/dist/templates/mobile/ui-auth-payments-ai/template/.env.example +23 -0
  34. package/dist/templates/mobile/ui-auth-payments-ai/template/README.md +254 -0
  35. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/_layout.tsx +169 -0
  36. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/ai.tsx +522 -0
  37. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/analytics.tsx +668 -0
  38. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/billing.tsx +743 -0
  39. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/index.tsx +676 -0
  40. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/orders.tsx +402 -0
  41. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/profile.tsx +580 -0
  42. package/dist/templates/mobile/ui-auth-payments-ai/template/app/_layout.tsx +127 -0
  43. package/dist/templates/mobile/ui-auth-payments-ai/template/app/auth/login.tsx +246 -0
  44. package/dist/templates/mobile/ui-auth-payments-ai/template/app/auth/signup.tsx +362 -0
  45. package/dist/templates/mobile/ui-auth-payments-ai/template/app/onboarding/index.tsx +193 -0
  46. package/dist/templates/mobile/ui-auth-payments-ai/template/app/tour/index.tsx +272 -0
  47. package/dist/templates/mobile/ui-auth-payments-ai/template/app.json +93 -0
  48. package/dist/templates/mobile/ui-auth-payments-ai/template/babel.config.js +23 -0
  49. package/dist/templates/mobile/ui-auth-payments-ai/template/eas.json +45 -0
  50. package/dist/templates/mobile/ui-auth-payments-ai/template/expo-env.d.ts +3 -0
  51. package/dist/templates/mobile/ui-auth-payments-ai/template/jest-setup.ts +74 -0
  52. package/dist/templates/mobile/ui-auth-payments-ai/template/metro.config.js +11 -0
  53. package/dist/templates/mobile/ui-auth-payments-ai/template/package.json +108 -0
  54. package/dist/templates/mobile/ui-auth-payments-ai/template/tsconfig.json +31 -0
  55. package/dist/templates/web/base/template/src/app/dashboard/page.tsx +62 -20
  56. package/dist/templates/web/base/template/src/app/loading.tsx +45 -27
  57. package/dist/templates/web/base/template/src/components/providers/app-providers.tsx +2 -0
  58. package/dist/templates/web/ui-auth/template/package.json +1 -1
  59. package/dist/templates/web/ui-auth/template/src/app/loading.tsx +30 -12
  60. package/dist/templates/web/ui-auth/template/src/components/providers/app-providers.tsx +2 -0
  61. package/dist/templates/web/ui-auth/template/src/components/shared/header.tsx +43 -2
  62. package/dist/templates/web/ui-auth-ai/template/package.json +1 -1
  63. package/dist/templates/web/ui-auth-payments/template/package.json +1 -1
  64. package/dist/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +69 -17
  65. package/dist/templates/web/ui-auth-payments/template/src/components/providers/app-providers.tsx +2 -0
  66. package/dist/templates/web/ui-auth-payments-ai/template/package.json +1 -1
  67. package/dist/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +218 -7
  68. package/dist/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +62 -9
  69. package/dist/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +364 -0
  70. package/dist/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +532 -0
  71. package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +70 -51
  72. package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +76 -60
  73. package/dist/templates/web/ui-auth-payments-ai/template/src/components/providers/app-providers.tsx +2 -0
  74. package/dist/templates/web/ui-auth-payments-audio/template/package.json +1 -1
  75. package/dist/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +71 -17
  76. package/dist/templates/web/ui-auth-payments-audio/template/src/components/providers/app-providers.tsx +2 -0
  77. package/dist/templates/web/ui-auth-payments-video/template/package.json +1 -1
  78. package/dist/templates/web/ui-auth-payments-video/template/src/components/providers/app-providers.tsx +2 -0
  79. package/package.json +1 -1
  80. package/src/templates/mobile/base/template/App.tsx +2 -0
  81. package/src/templates/mobile/ui-auth-payments/template/.env.example +20 -0
  82. package/src/templates/mobile/ui-auth-payments/template/README.md +218 -0
  83. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/_layout.tsx +153 -0
  84. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/analytics.tsx +668 -0
  85. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/billing.tsx +743 -0
  86. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/index.tsx +757 -0
  87. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/orders.tsx +402 -0
  88. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/profile.tsx +580 -0
  89. package/src/templates/mobile/ui-auth-payments/template/app/_layout.tsx +127 -0
  90. package/src/templates/mobile/ui-auth-payments/template/app/auth/login.tsx +246 -0
  91. package/src/templates/mobile/ui-auth-payments/template/app/auth/signup.tsx +362 -0
  92. package/src/templates/mobile/ui-auth-payments/template/app/onboarding/index.tsx +193 -0
  93. package/src/templates/mobile/ui-auth-payments/template/app/tour/index.tsx +272 -0
  94. package/src/templates/mobile/ui-auth-payments/template/app.json +93 -0
  95. package/src/templates/mobile/ui-auth-payments/template/babel.config.js +23 -0
  96. package/src/templates/mobile/ui-auth-payments/template/eas.json +45 -0
  97. package/src/templates/mobile/ui-auth-payments/template/expo-env.d.ts +3 -0
  98. package/src/templates/mobile/ui-auth-payments/template/jest-setup.ts +74 -0
  99. package/src/templates/mobile/ui-auth-payments/template/metro.config.js +11 -0
  100. package/src/templates/mobile/ui-auth-payments/template/package.json +106 -0
  101. package/src/templates/mobile/ui-auth-payments/template/tsconfig.json +31 -0
  102. package/src/templates/mobile/ui-auth-payments-ai/template/.env.example +23 -0
  103. package/src/templates/mobile/ui-auth-payments-ai/template/README.md +254 -0
  104. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/_layout.tsx +169 -0
  105. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/ai.tsx +522 -0
  106. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/analytics.tsx +668 -0
  107. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/billing.tsx +743 -0
  108. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/index.tsx +676 -0
  109. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/orders.tsx +402 -0
  110. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/profile.tsx +580 -0
  111. package/src/templates/mobile/ui-auth-payments-ai/template/app/_layout.tsx +127 -0
  112. package/src/templates/mobile/ui-auth-payments-ai/template/app/auth/login.tsx +246 -0
  113. package/src/templates/mobile/ui-auth-payments-ai/template/app/auth/signup.tsx +362 -0
  114. package/src/templates/mobile/ui-auth-payments-ai/template/app/onboarding/index.tsx +193 -0
  115. package/src/templates/mobile/ui-auth-payments-ai/template/app/tour/index.tsx +272 -0
  116. package/src/templates/mobile/ui-auth-payments-ai/template/app.json +93 -0
  117. package/src/templates/mobile/ui-auth-payments-ai/template/babel.config.js +23 -0
  118. package/src/templates/mobile/ui-auth-payments-ai/template/eas.json +45 -0
  119. package/src/templates/mobile/ui-auth-payments-ai/template/expo-env.d.ts +3 -0
  120. package/src/templates/mobile/ui-auth-payments-ai/template/jest-setup.ts +74 -0
  121. package/src/templates/mobile/ui-auth-payments-ai/template/metro.config.js +11 -0
  122. package/src/templates/mobile/ui-auth-payments-ai/template/package.json +108 -0
  123. package/src/templates/mobile/ui-auth-payments-ai/template/tsconfig.json +31 -0
  124. package/src/templates/web/base/template/src/app/dashboard/page.tsx +62 -20
  125. package/src/templates/web/base/template/src/app/loading.tsx +45 -27
  126. package/src/templates/web/base/template/src/components/providers/app-providers.tsx +2 -0
  127. package/src/templates/web/ui-auth/template/package.json +1 -1
  128. package/src/templates/web/ui-auth/template/src/app/loading.tsx +30 -12
  129. package/src/templates/web/ui-auth/template/src/components/providers/app-providers.tsx +2 -0
  130. package/src/templates/web/ui-auth/template/src/components/shared/header.tsx +43 -2
  131. package/src/templates/web/ui-auth-ai/template/package.json +1 -1
  132. package/src/templates/web/ui-auth-payments/template/package.json +1 -1
  133. package/src/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +69 -17
  134. package/src/templates/web/ui-auth-payments/template/src/components/providers/app-providers.tsx +2 -0
  135. package/src/templates/web/ui-auth-payments-ai/template/package.json +1 -1
  136. package/src/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +218 -7
  137. package/src/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +62 -9
  138. package/src/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +364 -0
  139. package/src/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +532 -0
  140. package/src/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +70 -51
  141. package/src/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +76 -60
  142. package/src/templates/web/ui-auth-payments-ai/template/src/components/providers/app-providers.tsx +2 -0
  143. package/src/templates/web/ui-auth-payments-audio/template/package.json +1 -1
  144. package/src/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +71 -17
  145. package/src/templates/web/ui-auth-payments-audio/template/src/components/providers/app-providers.tsx +2 -0
  146. package/src/templates/web/ui-auth-payments-video/template/package.json +1 -1
  147. package/src/templates/web/ui-auth-payments-video/template/src/components/providers/app-providers.tsx +2 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @digilogiclabs/create-saas-app
2
2
 
3
+ ## 1.17.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 🎉 **Quality of Life Enhancements Across All Templates**
8
+
9
+ #### 🌐 **Web Template Improvements**
10
+ - **Toast Notification System**: Added `Toaster` component to all web app providers for user feedback
11
+ - **Enhanced Loading States**: Upgraded loading screens with `SkeletonCard` and `SkeletonText` components
12
+ - **Search Functionality**: Added `SearchBar` with mobile-responsive design and toast feedback
13
+ - **Command Palette**: Verified and enhanced existing `CommandPalette` integration across dashboards
14
+ - **Theme System**: Maintained existing `ThemeToggle` with light/dark/system support
15
+ - **Fixed**: JSON parsing issue in ui-auth-ai template package.json
16
+
17
+ #### 📱 **Mobile Template Enhancements**
18
+ - **Native Toast System**: Added `NativeToast` component to all mobile app providers
19
+ - **Advanced Skeleton Loading**: Enhanced loading states with realistic content placeholders
20
+ - **Verified Existing Features**: Confirmed all premium mobile QoL features are properly implemented:
21
+ - Pull-to-refresh with haptic feedback ✅
22
+ - Search functionality with `NativeSearchBar` ✅
23
+ - Comprehensive haptic feedback integration ✅
24
+ - Swipe gestures with `SwipeableCard` components ✅
25
+ - Network-aware content and offline support ✅
26
+ - Native tours and progressive image loading ✅
27
+
28
+ #### 🛠 **Technical Improvements**
29
+ - **Build Verification**: All templates compile successfully
30
+ - **Package Integrity**: 2.6MB compressed, 14.8MB unpacked
31
+ - **Backward Compatibility**: All changes are non-destructive
32
+ - **Cross-Platform**: Enhanced both web and mobile template experiences
33
+
3
34
  ## 1.6.0
4
35
 
5
36
  ### Minor Changes
package/README.md CHANGED
@@ -5,6 +5,134 @@
5
5
  [![npm version](https://badge.fury.io/js/%40digilogiclabs%2Fcreate-saas-app.svg)](https://badge.fury.io/js/%40digilogiclabs%2Fcreate-saas-app)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
+ ## 🚀 Template Generator Guide
9
+
10
+ ### **Quick Command Reference**
11
+
12
+ ```bash
13
+ # Interactive mode (recommended for beginners)
14
+ npx @digilogiclabs/create-saas-app create
15
+
16
+ # Direct command format
17
+ npx @digilogiclabs/create-saas-app create <platform> <template> <project-name> [options]
18
+
19
+ # Get help anytime
20
+ npx @digilogiclabs/create-saas-app --help
21
+ npx @digilogiclabs/create-saas-app create --help
22
+ ```
23
+
24
+ ### **📋 All Available Templates (12 Total)**
25
+
26
+ #### **🌐 Web Templates (9)**
27
+ | Template | Description | Command |
28
+ |----------|-------------|---------|
29
+ | `base` | Clean Next.js 15 starter | `npx @digilogiclabs/create-saas-app create web base my-app` |
30
+ | `ui-only` | Component library showcase | `npx @digilogiclabs/create-saas-app create web ui-only design-system` |
31
+ | `ui-auth` | Authentication flow | `npx @digilogiclabs/create-saas-app create web ui-auth auth-app` |
32
+ | `ui-auth-payments` | Complete SaaS foundation | `npx @digilogiclabs/create-saas-app create web ui-auth-payments saas-app` |
33
+ | `ui-auth-ai` | Text & chat AI platform | `npx @digilogiclabs/create-saas-app create web ui-auth-ai text-ai-app --with-ai=text` |
34
+ | `ui-auth-payments-ai` | Full AI SaaS platform | `npx @digilogiclabs/create-saas-app create web ui-auth-payments-ai ai-platform --with-ai=all` |
35
+ | `ui-auth-payments-audio` | Audio streaming SaaS | `npx @digilogiclabs/create-saas-app create web ui-auth-payments-audio music-platform` |
36
+ | `ui-auth-payments-video` | Video streaming SaaS | `npx @digilogiclabs/create-saas-app create web ui-auth-payments-video video-studio` |
37
+ | `ui-package-test` | Component testing env | `npx @digilogiclabs/create-saas-app create web ui-package-test component-test` |
38
+
39
+ #### **📱 Mobile Templates (3)**
40
+ | Template | Description | Command |
41
+ |----------|-------------|---------|
42
+ | `base` | React Native + Expo starter | `npx @digilogiclabs/create-saas-app create mobile base mobile-app` |
43
+ | `ui-auth-payments` | Full mobile SaaS (v0.22.0) | `npx @digilogiclabs/create-saas-app create mobile ui-auth-payments mobile-saas` |
44
+ | `ui-auth-payments-ai` | Mobile AI SaaS with generation | `npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai ai-mobile-app --with-ai=all` |
45
+
46
+ #### **🚀 Cross-Platform Templates**
47
+ | Template | Description | Command |
48
+ |----------|-------------|---------|
49
+ | `ui-auth-payments` | Web + Mobile SaaS | `npx @digilogiclabs/create-saas-app create both ui-auth-payments fullstack-app` |
50
+ | `ui-auth-payments-ai` | Web + Mobile AI platform | `npx @digilogiclabs/create-saas-app create both ui-auth-payments-ai ai-fullstack --with-ai=all` |
51
+
52
+ ### **🛠 CLI Options**
53
+
54
+ #### **Core Arguments**
55
+ ```bash
56
+ <platform> # web | mobile | both
57
+ <template> # Template name (see table above)
58
+ <project-name> # Your project name (kebab-case recommended)
59
+ ```
60
+
61
+ #### **Configuration Flags**
62
+ ```bash
63
+ -a, --auth <provider> # firebase | supabase (default: supabase)
64
+ -d, --database <provider> # supabase | firebase (default: supabase)
65
+ -t, --theme <theme> # default | corporate | startup (default: default)
66
+ -c, --theme-color <color> # blue | green | purple | orange | red | slate (default: blue)
67
+ --default-theme <mode> # light | dark | system (default: system)
68
+ --with-ai [capabilities] # text | audio | video | text,audio | all (for AI templates)
69
+ --ai-provider <provider> # openai | anthropic | gemini (default: openai)
70
+ --no-install # Skip package installation
71
+ --no-git # Skip git initialization
72
+ -y, --yes # Skip interactive prompts
73
+ ```
74
+
75
+ ### **💡 Usage Examples**
76
+
77
+ #### **Beginner: Interactive Mode**
78
+ ```bash
79
+ # Let the CLI guide you through all options
80
+ npx @digilogiclabs/create-saas-app create
81
+ ```
82
+
83
+ #### **Advanced: Direct Commands**
84
+ ```bash
85
+ # Full AI platform with all features
86
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments-ai my-ai-saas \
87
+ --with-ai=all \
88
+ --ai-provider=openai \
89
+ --theme=startup \
90
+ --theme-color=purple \
91
+ --auth=supabase \
92
+ --database=supabase
93
+
94
+ # Mobile-first AI app
95
+ npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai mobile-ai-app \
96
+ --with-ai=all \
97
+ --theme=corporate \
98
+ --theme-color=blue \
99
+ --no-git
100
+
101
+ # Cross-platform SaaS with Firebase
102
+ npx @digilogiclabs/create-saas-app create both ui-auth-payments fullstack-saas \
103
+ --auth=firebase \
104
+ --database=firebase \
105
+ --theme=default \
106
+ --default-theme=dark
107
+
108
+ # Quick prototyping (no deps install)
109
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments prototype \
110
+ --no-install \
111
+ --no-git \
112
+ --yes
113
+ ```
114
+
115
+ ### **🎯 Template Selection Guide**
116
+
117
+ #### **Choose by Use Case**
118
+ - **Learning/Prototyping**: `base` or `ui-only`
119
+ - **Authentication App**: `ui-auth`
120
+ - **SaaS with Billing**: `ui-auth-payments`
121
+ - **AI Applications**: `ui-auth-payments-ai` or `ui-auth-ai`
122
+ - **Media Platforms**: `ui-auth-payments-audio` or `ui-auth-payments-video`
123
+ - **Mobile Apps**: Mobile versions of above
124
+ - **Full-Stack**: `both` platform with any template
125
+
126
+ #### **Choose by Complexity**
127
+ 1. **Simple**: `base`, `ui-only`
128
+ 2. **Medium**: `ui-auth`, `ui-auth-payments`
129
+ 3. **Advanced**: `ui-auth-payments-ai`, `ui-auth-payments-audio`, `ui-auth-payments-video`
130
+
131
+ #### **Choose by Platform**
132
+ - **Web Only**: Use `web` platform
133
+ - **Mobile Only**: Use `mobile` platform
134
+ - **Universal**: Use `both` platform (web + mobile)
135
+
8
136
  ## 🎉 What's New in v1.13.0
9
137
 
10
138
  ### 🤖 **Complete AI Integration**
@@ -31,19 +159,17 @@
31
159
  ## 🚀 Quick Start
32
160
 
33
161
  ```bash
34
- # Create an AI-powered SaaS platform
35
- npx @digilogiclabs/create-saas-app create web ui-auth-payments-ai my-ai-saas --with-ai=all
162
+ # Interactive mode (recommended)
163
+ npx @digilogiclabs/create-saas-app create
36
164
 
37
- # Create an audio streaming platform
38
- npx @digilogiclabs/create-saas-app create web ui-auth-payments-audio music-platform
39
-
40
- # Create a video generation platform
41
- npx @digilogiclabs/create-saas-app create web ui-auth-payments-video video-studio
42
-
43
- # Create a simple authentication app
44
- npx @digilogiclabs/create-saas-app create web ui-auth simple-app
165
+ # Or create directly with popular templates
166
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments-ai my-ai-saas --with-ai=all
167
+ npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai mobile-ai-app --with-ai=all
168
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments saas-app
45
169
  ```
46
170
 
171
+ > 💡 **New to the CLI?** See the complete [Template Generator Guide](#-template-generator-guide) above for all options and examples.
172
+
47
173
  ## ⚡ What You Get
48
174
 
49
175
  ### 🤖 **AI-First Development**
@@ -67,11 +193,76 @@ npx @digilogiclabs/create-saas-app create web ui-auth simple-app
67
193
 
68
194
  ## 🎨 Template Gallery
69
195
 
70
- ### 🤖 **AI-Powered Templates**
196
+ > 📋 **Quick Reference?** See the [Template Generator Guide](#-template-generator-guide) at the top for a complete table of all templates and commands.
71
197
 
72
- #### **Full-Stack AI Platform** (`ui-auth-payments-ai`)
73
- Complete AI platform with text, audio, and video generation
74
- - **Multi-modal AI** - OpenAI, ElevenLabs, Replicate integration
198
+ Choose from **12 production-ready templates** across web and mobile platforms:
199
+
200
+ ### 🌐 **Web Templates (9 Available)**
201
+
202
+ #### **Core Templates**
203
+
204
+ ##### **Base Template** (`base`)
205
+ Clean Next.js 15 starter with minimal dependencies
206
+ - **Next.js 15.3** - App Router with Server Components
207
+ - **TypeScript** - Strict typing throughout
208
+ - **Tailwind CSS v4** - Modern utility-first styling
209
+ - **Essential setup** - Perfect foundation for custom builds
210
+
211
+ ```bash
212
+ npx @digilogiclabs/create-saas-app create web base my-app
213
+ ```
214
+
215
+ ##### **UI Only Template** (`ui-only`)
216
+ Components library showcase without authentication
217
+ - **Component gallery** - All @digilogiclabs/saas-factory-ui components
218
+ - **Design system** - Glassmorphism and modern patterns
219
+ - **No auth required** - Perfect for design system demos
220
+ - **Storybook-style** - Interactive component documentation
221
+
222
+ ```bash
223
+ npx @digilogiclabs/create-saas-app create web ui-only design-system
224
+ ```
225
+
226
+ #### **Authentication Templates**
227
+
228
+ ##### **UI + Auth** (`ui-auth`)
229
+ Modern authentication flow with beautiful UI
230
+ - **User management** - Sign up, login, profile management
231
+ - **12 OAuth providers** - Google, GitHub, Microsoft, LinkedIn, Spotify, and more
232
+ - **Protected routes** - Authentication-gated content
233
+ - **Email verification** - Secure account activation
234
+
235
+ ```bash
236
+ npx @digilogiclabs/create-saas-app create web ui-auth auth-app
237
+ ```
238
+
239
+ ##### **UI + Auth + Payments** (`ui-auth-payments`)
240
+ Complete SaaS foundation with billing
241
+ - **Subscription management** - Stripe integration with webhooks
242
+ - **User dashboards** - Account management and billing portal
243
+ - **Team features** - Multi-user support and permissions
244
+ - **Analytics** - Revenue and usage tracking
245
+
246
+ ```bash
247
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments saas-platform
248
+ ```
249
+
250
+ #### **AI-Powered Templates**
251
+
252
+ ##### **AI + Auth** (`ui-auth-ai`)
253
+ Text and chat AI integration platform
254
+ - **Text generation** - OpenAI GPT-4 integration
255
+ - **AI chat interface** - Interactive conversation UI
256
+ - **Content management** - Save and organize AI outputs
257
+ - **Usage tracking** - Monitor API consumption
258
+
259
+ ```bash
260
+ npx @digilogiclabs/create-saas-app create web ui-auth-ai text-ai-app --with-ai=text
261
+ ```
262
+
263
+ ##### **AI + Auth + Payments** (`ui-auth-payments-ai`)
264
+ Full AI SaaS platform with multi-modal generation
265
+ - **Multi-modal AI** - Text, audio, and video generation
75
266
  - **AI Dashboard** - Generation history and usage analytics
76
267
  - **Smart UI** - Tabbed interface for different AI tools
77
268
  - **Real-time features** - Live generation status and updates
@@ -80,50 +271,102 @@ Complete AI platform with text, audio, and video generation
80
271
  npx @digilogiclabs/create-saas-app create web ui-auth-payments-ai ai-platform --with-ai=all
81
272
  ```
82
273
 
83
- #### **Audio Platform** (`ui-auth-payments-audio`)
84
- Professional audio streaming and generation platform
274
+ #### **Media Templates**
275
+
276
+ ##### **Audio SaaS** (`ui-auth-payments-audio`)
277
+ Music streaming and audio processing platform
85
278
  - **Audio streaming** - Playlist management and playback
86
279
  - **Audio generation** - AI-powered voice synthesis
87
280
  - **Waveform visualization** - Real-time audio analysis
88
281
  - **Offline support** - Cached playback and PWA features
89
282
 
90
283
  ```bash
91
- npx @digilogiclabs/create-saas-app create web ui-auth-payments-audio music-app
284
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments-audio music-platform
92
285
  ```
93
286
 
94
- #### **Video Platform** (`ui-auth-payments-video`)
95
- Video streaming and generation platform
287
+ ##### **Video SaaS** (`ui-auth-payments-video`)
288
+ Video streaming and media platform
96
289
  - **Video streaming** - Quality selection and adaptive bitrate
97
290
  - **Video generation** - AI-powered video creation
98
291
  - **Content management** - Upload, process, and organize videos
99
292
  - **Analytics dashboard** - View counts and engagement metrics
100
293
 
101
294
  ```bash
102
- npx @digilogiclabs/create-saas-app create web ui-auth-payments-video video-platform
295
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments-video video-studio
103
296
  ```
104
297
 
105
- ### 🏢 **Business Templates**
298
+ #### **Development Templates**
106
299
 
107
- #### **SaaS with Payments** (`ui-auth-payments`)
108
- Complete SaaS platform with billing
109
- - **Subscription management** - Stripe integration with webhooks
110
- - **User dashboards** - Account management and billing portal
111
- - **Team features** - Multi-user support and permissions
112
- - **Analytics** - Revenue and usage tracking
300
+ ##### **UI Package Test** (`ui-package-test`)
301
+ Component testing environment for package development
302
+ - **Component testing** - Isolated testing environment
303
+ - **Package validation** - Test UI components before release
304
+ - **Development tools** - Hot reload and debugging setup
305
+ - **Documentation** - Auto-generated component docs
113
306
 
114
307
  ```bash
115
- npx @digilogiclabs/create-saas-app create web ui-auth-payments saas-platform
308
+ npx @digilogiclabs/create-saas-app create web ui-package-test component-test
116
309
  ```
117
310
 
118
- #### **Authentication App** (`ui-auth`)
119
- Simple auth-enabled application
120
- - **User management** - Sign up, login, profile management
121
- - **Protected routes** - Authentication-gated content
122
- - **Social logins** - Google, GitHub, and more
123
- - **Email verification** - Secure account activation
311
+ ### 📱 **Mobile Templates (3 Available)**
312
+
313
+ #### **Base Mobile** (`base`)
314
+ React Native + Expo starter for mobile development
315
+ - **Expo 50** - Modern React Native development platform
316
+ - **TypeScript** - Full type safety for mobile
317
+ - **Navigation** - React Navigation v6 setup
318
+ - **Cross-platform** - iOS and Android support
124
319
 
125
320
  ```bash
126
- npx @digilogiclabs/create-saas-app create web ui-auth auth-app
321
+ npx @digilogiclabs/create-saas-app create mobile base mobile-app
322
+ ```
323
+
324
+ #### **Mobile SaaS** (`ui-auth-payments`)
325
+ Full mobile SaaS platform with native UI v0.22.0
326
+ - **Native UI components** - 240+ components with 75% feature parity
327
+ - **Authentication** - Supabase Auth with biometric support
328
+ - **Payments** - Stripe React Native integration
329
+ - **Advanced features** - Onboarding, tours, offline support, haptic feedback
330
+
331
+ ```bash
332
+ npx @digilogiclabs/create-saas-app create mobile ui-auth-payments mobile-saas
333
+ ```
334
+
335
+ #### **Mobile AI SaaS** (`ui-auth-payments-ai`)
336
+ Complete mobile AI platform with generation capabilities
337
+ - **AI Generation Suite** - Text, audio, and video AI generation
338
+ - **Native AI Components** - AITextGenerator, AIAudioGenerator, AIVideoGenerator, AIChat
339
+ - **AI Dashboard** - Usage statistics and generation history
340
+ - **Multi-modal AI** - OpenAI, ElevenLabs, Replicate integration
341
+ - **Mobile-optimized** - Touch-friendly AI interfaces with haptic feedback
342
+ - **Offline AI Cache** - Cached responses for better mobile experience
343
+
344
+ ```bash
345
+ npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai ai-mobile-app --with-ai=all
346
+ ```
347
+
348
+ ### 🚀 **Cross-Platform Templates**
349
+
350
+ #### **Full Stack Platform** (`ui-auth-payments`)
351
+ Web + Mobile SaaS platform
352
+ - **Shared codebase** - Unified components and logic
353
+ - **Web dashboard** - Full-featured admin interface
354
+ - **Mobile app** - Native mobile experience
355
+ - **Real-time sync** - Cross-platform data synchronization
356
+
357
+ ```bash
358
+ npx @digilogiclabs/create-saas-app create both ui-auth-payments fullstack-platform
359
+ ```
360
+
361
+ #### **AI Full Stack** (`ui-auth-payments-ai`)
362
+ Web + Mobile AI platform
363
+ - **AI everywhere** - Consistent AI features across platforms
364
+ - **Mobile-optimized** - Touch-friendly AI interfaces
365
+ - **Cloud sync** - AI generations sync across devices
366
+ - **Offline capable** - Cached AI responses for mobile
367
+
368
+ ```bash
369
+ npx @digilogiclabs/create-saas-app create both ui-auth-payments-ai ai-fullstack --with-ai=all
127
370
  ```
128
371
 
129
372
  ## 🤖 AI Development Workflow
@@ -300,10 +543,12 @@ Built-in validation ensures your app is deployment-ready:
300
543
 
301
544
  ## 📦 Package Ecosystem
302
545
 
303
- ### 🎨 **UI & Design** (v0.18.4)
304
- - **@digilogiclabs/saas-factory-ui** - Modern components with enhanced glassmorphism
305
- - **6 New Components** - Switch, Slider, Textarea, Accordion, Breadcrumbs, EmptyState
546
+ ### 🎨 **UI & Design** (v0.22.0)
547
+ - **@digilogiclabs/saas-factory-ui** - 240+ components with mobile-first design
548
+ - **75% Component Increase** - From 140+ to 240+ components in v0.22.0
306
549
  - **Cross-Platform Support** - Single codebase for Next.js + React Native/Expo
550
+ - **Native Mobile Components** - AppShell, BottomTabBar, NativeTour, VirtualScrollList
551
+ - **Advanced Features** - Haptic feedback, gesture support, offline capabilities
307
552
  - **Enhanced Glassmorphism** - Fixed API with proper `border` and `accent` properties
308
553
  - **Next.js 15.3** - App Router with Server Components
309
554
  - **Tailwind CSS v4** - Design tokens and utility classes
@@ -532,11 +777,12 @@ MIT © [Digi Logic Labs](https://digilogiclabs.com)
532
777
 
533
778
  ## 🚀 What's Next?
534
779
 
535
- - 📱 **Mobile Templates** - React Native templates with AI capabilities
780
+ - 📱 **Enhanced Mobile Templates** - Additional React Native templates with specialized features
536
781
  - 🔌 **Plugin System** - Extensible architecture for custom features
537
782
  - 🤖 **More AI Providers** - Anthropic, Google, and custom model support
538
783
  - 📊 **Analytics Integration** - Built-in analytics and monitoring
539
784
  - 🌍 **Internationalization** - Multi-language support out of the box
785
+ - 🎨 **Theme Marketplace** - Community-contributed themes and components
540
786
 
541
787
  ---
542
788
 
package/bin/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  const { execSync } = require('child_process');
4
4
  const path = require('path');