ai-flow-dev 1.0.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 (99) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +408 -0
  3. package/dist/cli.d.ts +3 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +791 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/fs-utils.d.ts +2 -0
  8. package/dist/fs-utils.d.ts.map +1 -0
  9. package/dist/fs-utils.js +46 -0
  10. package/dist/fs-utils.js.map +1 -0
  11. package/package.json +71 -0
  12. package/prompts/backend/flow-dev-feature.md +1318 -0
  13. package/prompts/backend/flow-dev-fix.md +903 -0
  14. package/prompts/backend/flow-dev-refactor.md +715 -0
  15. package/prompts/backend/flow-dev-review.md +401 -0
  16. package/prompts/backend/flow-dev-work.md +1129 -0
  17. package/prompts/backend/flow-docs-gen-phase-0.md +1840 -0
  18. package/prompts/backend/flow-docs-gen-phase-1.md +435 -0
  19. package/prompts/backend/flow-docs-gen-phase-2.md +460 -0
  20. package/prompts/backend/flow-docs-gen-phase-3.md +684 -0
  21. package/prompts/backend/flow-docs-gen-phase-4.md +516 -0
  22. package/prompts/backend/flow-docs-gen-phase-5.md +637 -0
  23. package/prompts/backend/flow-docs-gen-phase-6.md +465 -0
  24. package/prompts/backend/flow-docs-gen-phase-7.md +1207 -0
  25. package/prompts/backend/flow-docs-gen.md +820 -0
  26. package/prompts/backend/flow-docs-sync.md +526 -0
  27. package/prompts/backend/flow-project-init.md +248 -0
  28. package/prompts/backend/flow-project-roadmap.md +1159 -0
  29. package/prompts/frontend/flow-docs-gen-phase-0.md +494 -0
  30. package/prompts/frontend/flow-docs-gen-phase-1.md +449 -0
  31. package/prompts/frontend/flow-docs-gen-phase-2.md +983 -0
  32. package/prompts/frontend/flow-docs-gen-phase-3.md +685 -0
  33. package/prompts/frontend/flow-docs-gen-phase-4.md +480 -0
  34. package/prompts/frontend/flow-docs-gen-phase-5.md +483 -0
  35. package/prompts/frontend/flow-docs-gen-phase-6.md +570 -0
  36. package/prompts/frontend/flow-docs-gen-phase-7.md +582 -0
  37. package/prompts/frontend/flow-docs-gen.md +413 -0
  38. package/prompts/frontend/flow-docs-sync.md +561 -0
  39. package/prompts/mobile/flow-docs-gen-phase-0.md +387 -0
  40. package/prompts/mobile/flow-docs-gen-phase-1.md +530 -0
  41. package/prompts/mobile/flow-docs-gen-phase-2.md +584 -0
  42. package/prompts/mobile/flow-docs-gen-phase-3.md +659 -0
  43. package/prompts/mobile/flow-docs-gen-phase-4.md +363 -0
  44. package/prompts/mobile/flow-docs-gen-phase-5.md +369 -0
  45. package/prompts/mobile/flow-docs-gen-phase-6.md +490 -0
  46. package/prompts/mobile/flow-docs-gen-phase-7.md +407 -0
  47. package/prompts/mobile/flow-docs-gen.md +430 -0
  48. package/prompts/mobile/flow-docs-sync.md +634 -0
  49. package/templates/backend/.clauderules.template +111 -0
  50. package/templates/backend/.cursorrules.template +102 -0
  51. package/templates/backend/.env.example.template +122 -0
  52. package/templates/backend/README.template.md +200 -0
  53. package/templates/backend/ai-instructions.template.md +354 -0
  54. package/templates/backend/copilot-instructions.template.md +160 -0
  55. package/templates/backend/docs/api.template.md +251 -0
  56. package/templates/backend/docs/architecture.template.md +612 -0
  57. package/templates/backend/docs/business-flows.template.md +109 -0
  58. package/templates/backend/docs/code-standards.template.md +828 -0
  59. package/templates/backend/docs/contributing.template.md +163 -0
  60. package/templates/backend/docs/data-model.template.md +416 -0
  61. package/templates/backend/docs/operations.template.md +591 -0
  62. package/templates/backend/docs/testing.template.md +762 -0
  63. package/templates/backend/project-brief.template.md +176 -0
  64. package/templates/backend/specs/configuration.template.md +133 -0
  65. package/templates/backend/specs/security.template.md +422 -0
  66. package/templates/frontend/README.template.md +121 -0
  67. package/templates/frontend/ai-instructions.template.md +368 -0
  68. package/templates/frontend/docs/api-integration.template.md +390 -0
  69. package/templates/frontend/docs/components.template.md +567 -0
  70. package/templates/frontend/docs/error-handling.template.md +385 -0
  71. package/templates/frontend/docs/operations.template.md +123 -0
  72. package/templates/frontend/docs/performance.template.md +140 -0
  73. package/templates/frontend/docs/pwa.template.md +135 -0
  74. package/templates/frontend/docs/state-management.template.md +394 -0
  75. package/templates/frontend/docs/styling.template.md +779 -0
  76. package/templates/frontend/docs/testing.template.md +736 -0
  77. package/templates/frontend/project-brief.template.md +55 -0
  78. package/templates/frontend/specs/accessibility.template.md +111 -0
  79. package/templates/frontend/specs/configuration.template.md +520 -0
  80. package/templates/frontend/specs/security.template.md +197 -0
  81. package/templates/fullstack/README.template.md +282 -0
  82. package/templates/fullstack/ai-instructions.template.md +487 -0
  83. package/templates/fullstack/project-brief.template.md +197 -0
  84. package/templates/fullstack/specs/configuration.template.md +380 -0
  85. package/templates/mobile/AGENT.template.md +251 -0
  86. package/templates/mobile/README.template.md +195 -0
  87. package/templates/mobile/ai-instructions.template.md +221 -0
  88. package/templates/mobile/docs/app-store.template.md +163 -0
  89. package/templates/mobile/docs/architecture.template.md +100 -0
  90. package/templates/mobile/docs/native-features.template.md +137 -0
  91. package/templates/mobile/docs/navigation.template.md +81 -0
  92. package/templates/mobile/docs/offline-strategy.template.md +90 -0
  93. package/templates/mobile/docs/permissions.template.md +70 -0
  94. package/templates/mobile/docs/state-management.template.md +116 -0
  95. package/templates/mobile/docs/testing.template.md +146 -0
  96. package/templates/mobile/project-brief.template.md +97 -0
  97. package/templates/mobile/specs/build-configuration.template.md +116 -0
  98. package/templates/mobile/specs/deployment.template.md +114 -0
  99. package/templates/shared/AGENT.template.md +252 -0
@@ -0,0 +1,195 @@
1
+ # {{PROJECT_NAME}}
2
+
3
+ > {{PROJECT_DESCRIPTION}}
4
+
5
+ ---
6
+
7
+ ## ๐Ÿš€ Quick Start
8
+
9
+ ### Prerequisites
10
+
11
+ **For iOS Development:**
12
+ - macOS (required for iOS development)
13
+ - Xcode {{XCODE_VERSION}} or higher
14
+ - CocoaPods (if using React Native)
15
+ - Apple Developer Account ($99/year)
16
+
17
+ **For Android Development:**
18
+ - Android Studio {{ANDROID_STUDIO_VERSION}} or higher
19
+ - JDK {{JDK_VERSION}}
20
+ - Android SDK
21
+
22
+ **For Cross-Platform:**
23
+ - Node.js {{NODE_VERSION}} or higher
24
+ - {{PACKAGE_MANAGER}} (npm/yarn/pnpm)
25
+ - React Native CLI or Flutter SDK
26
+
27
+ ### Installation
28
+
29
+ ```bash
30
+ # Clone the repository
31
+ git clone <repository-url>
32
+ cd {{PROJECT_NAME}}
33
+
34
+ # Install dependencies
35
+ {{PACKAGE_MANAGER}} install
36
+
37
+ # iOS: Install pods (if React Native)
38
+ cd ios && pod install && cd ..
39
+
40
+ # Start development server
41
+ {{PACKAGE_MANAGER}} run start
42
+
43
+ # Run on iOS
44
+ {{PACKAGE_MANAGER}} run ios
45
+
46
+ # Run on Android
47
+ {{PACKAGE_MANAGER}} run android
48
+ ```
49
+
50
+ ### Environment Setup
51
+
52
+ Copy `.env.example` to `.env` and configure:
53
+
54
+ ```bash
55
+ cp .env.example .env
56
+ ```
57
+
58
+ See `specs/configuration.md` for all environment variables.
59
+
60
+ ---
61
+
62
+ ## ๐Ÿ“ Project Structure
63
+
64
+ ```
65
+ {{FOLDER_STRUCTURE}}
66
+ ```
67
+
68
+ ---
69
+
70
+ ## ๐Ÿ› ๏ธ Development
71
+
72
+ ### Available Scripts
73
+
74
+ - `{{PACKAGE_MANAGER}} run start` - Start Metro bundler
75
+ - `{{PACKAGE_MANAGER}} run ios` - Run on iOS simulator
76
+ - `{{PACKAGE_MANAGER}} run android` - Run on Android emulator
77
+ - `{{PACKAGE_MANAGER}} run test` - Run tests
78
+ - `{{PACKAGE_MANAGER}} run lint` - Run linter
79
+ - `{{PACKAGE_MANAGER}} run format` - Format code
80
+
81
+ ### Tech Stack
82
+
83
+ - **Platform:** {{PLATFORMS}}
84
+ - **Framework:** {{FRAMEWORK}} {{FRAMEWORK_VERSION}}
85
+ - **Language:** {{LANGUAGE}} {{LANGUAGE_VERSION}}
86
+ - **Navigation:** {{NAVIGATION_LIBRARY}}
87
+ - **State Management:** {{STATE_MANAGEMENT}}
88
+ - **Storage:** {{STORAGE_SOLUTION}}
89
+ - **Testing:** {{UNIT_TEST_FRAMEWORK}}, {{E2E_FRAMEWORK}}
90
+
91
+ See `ai-instructions.md` for complete tech stack.
92
+
93
+ ---
94
+
95
+ ## ๐Ÿ“š Documentation
96
+
97
+ **For AI Assistants:**
98
+ - `AGENT.md` - Start here for AI context
99
+ - `ai-instructions.md` - Tech stack and rules
100
+
101
+ **For Developers:**
102
+ - `docs/architecture.md` - System architecture
103
+ - `docs/navigation.md` - Navigation patterns
104
+ - `docs/state-management.md` - State patterns
105
+ - `docs/offline-strategy.md` - Offline and sync strategy
106
+ - `docs/permissions.md` - Permissions handling
107
+ - `docs/native-features.md` - Native features integration
108
+ - `docs/testing.md` - Testing strategy
109
+ - `docs/app-store.md` - App Store configuration
110
+ - `specs/build-configuration.md` - Build configuration
111
+ - `specs/deployment.md` - Deployment procedures
112
+
113
+ ---
114
+
115
+ ## ๐Ÿงช Testing
116
+
117
+ ```bash
118
+ # Run unit tests
119
+ {{PACKAGE_MANAGER}} run test
120
+
121
+ # Run with coverage
122
+ {{PACKAGE_MANAGER}} run test:coverage
123
+
124
+ # Run E2E tests
125
+ {{PACKAGE_MANAGER}} run test:e2e
126
+
127
+ # Run on physical device
128
+ {{PACKAGE_MANAGER}} run ios --device
129
+ {{PACKAGE_MANAGER}} run android --device
130
+ ```
131
+
132
+ ---
133
+
134
+ ## ๐Ÿ“ฑ Building for Production
135
+
136
+ ### iOS
137
+
138
+ ```bash
139
+ # Build for App Store
140
+ {{PACKAGE_MANAGER}} run build:ios:release
141
+
142
+ # Archive and upload via Xcode
143
+ # Or use Fastlane: fastlane ios release
144
+ ```
145
+
146
+ ### Android
147
+
148
+ ```bash
149
+ # Build APK
150
+ {{PACKAGE_MANAGER}} run build:android:apk
151
+
152
+ # Build AAB (for Play Store)
153
+ {{PACKAGE_MANAGER}} run build:android:aab
154
+
155
+ # Or use Fastlane: fastlane android release
156
+ ```
157
+
158
+ See `specs/deployment.md` for detailed deployment instructions.
159
+
160
+ ---
161
+
162
+ ## ๐Ÿš€ Deployment
163
+
164
+ ### App Store (iOS)
165
+
166
+ 1. Build and archive in Xcode
167
+ 2. Upload to App Store Connect
168
+ 3. Submit for review
169
+
170
+ See `docs/app-store.md` for detailed instructions.
171
+
172
+ ### Play Store (Android)
173
+
174
+ 1. Build AAB file
175
+ 2. Upload to Google Play Console
176
+ 3. Submit for review
177
+
178
+ See `docs/app-store.md` for detailed instructions.
179
+
180
+ ---
181
+
182
+ ## ๐Ÿ“„ License
183
+
184
+ {{LICENSE}}
185
+
186
+ ---
187
+
188
+ ## ๐Ÿค Contributing
189
+
190
+ See `docs/contributing.md` for contribution guidelines.
191
+
192
+ ---
193
+
194
+ **Last Updated:** {{LAST_UPDATED}}
195
+
@@ -0,0 +1,221 @@
1
+ # AI Instructions - Mobile
2
+
3
+ > **CRITICAL:** Every AI assistant MUST read and follow this document before any work.
4
+
5
+ ---
6
+
7
+ ## ๐ŸŽฏ Project Overview
8
+
9
+ **Name:** {{PROJECT_NAME}}
10
+
11
+ **Description:** {{PROJECT_DESCRIPTION}}
12
+
13
+ **Purpose:** {{PROBLEM_STATEMENT}}
14
+
15
+ **Target Users:** {{TARGET_USERS}}
16
+
17
+ ---
18
+
19
+ ## ๐Ÿ—๏ธ Tech Stack
20
+
21
+ ### Mobile Platform
22
+
23
+ - **Platforms:** {{PLATFORMS}}
24
+ - **Framework:** {{FRAMEWORK}} {{FRAMEWORK_VERSION}}
25
+ - **Language:** {{LANGUAGE}} {{LANGUAGE_VERSION}}
26
+ - **Minimum iOS:** {{MIN_IOS_VERSION}}
27
+ - **Minimum Android:** {{MIN_ANDROID_VERSION}} (API {{MIN_ANDROID_API}})
28
+
29
+ ### UI/UX Framework
30
+
31
+ - **UI Framework:** {{UI_FRAMEWORK}}
32
+ - **Dark Mode:** {{DARK_MODE_STRATEGY}}
33
+ - **Internationalization:** {{I18N_STRATEGY}} ({{I18N_LIBRARY}})
34
+ - **Image Management:** {{IMAGE_MANAGEMENT_STRATEGY}} ({{IMAGE_OPTIMIZATION_LIBRARY}})
35
+
36
+ ### Navigation
37
+
38
+ - **Navigation Library:** {{NAVIGATION_LIBRARY}}
39
+ - **Navigation Pattern:** {{NAVIGATION_PATTERN}}
40
+ - **Deep Linking:** {{DEEP_LINKING_STRATEGY}}
41
+
42
+ ### State Management
43
+
44
+ - **State Solution:** {{STATE_MANAGEMENT}}
45
+ - **HTTP Client:** {{HTTP_CLIENT_LIBRARY}}
46
+ - **Storage:** {{STORAGE_SOLUTION}}
47
+ - **Offline Strategy:** {{OFFLINE_STRATEGY}}
48
+ - **Network Error Handling:** {{NETWORK_ERROR_HANDLING}}
49
+
50
+ ### Native Features
51
+
52
+ - **Permissions:** {{PERMISSIONS_LIST}}
53
+ - **Native Modules:** {{NATIVE_MODULES_LIST}}
54
+ - **Third-Party SDKs:** {{THIRD_PARTY_SDKS}}
55
+
56
+ ### Testing
57
+
58
+ - **Unit Testing:** {{UNIT_TEST_FRAMEWORK}}
59
+ - **Component Testing:** {{COMPONENT_TEST_LIBRARY}}
60
+ - **E2E Testing:** {{E2E_FRAMEWORK}}
61
+ - **Coverage Target:** {{TEST_COVERAGE_TARGET}}
62
+
63
+ ### Build & Deployment
64
+
65
+ - **CI/CD:** {{CICD_PLATFORM}}
66
+ - **Code Signing:** {{CODE_SIGNING_STRATEGY}}
67
+ - **Versioning:** {{VERSIONING_STRATEGY}}
68
+ - **Analytics:** {{ANALYTICS_TOOL}}
69
+ - **Crash Reporting:** {{CRASH_REPORTING_TOOL}}
70
+
71
+ ---
72
+
73
+ ## ๐Ÿ›๏ธ Architecture
74
+
75
+ **Architecture Pattern:** {{ARCHITECTURE_PATTERN}}
76
+
77
+ {{ARCHITECTURE_DESCRIPTION}}
78
+
79
+ **File Organization:** {{FILE_ORGANIZATION}}
80
+
81
+ **Folder Structure:**
82
+ ```
83
+ {{FOLDER_STRUCTURE}}
84
+ ```
85
+
86
+ ---
87
+
88
+ ## โŒ NEVER Rules
89
+
90
+ **YOU MUST NEVER:**
91
+
92
+ ### Performance
93
+
94
+ - โŒ Render large lists without virtualization - Use FlatList (React Native), ListView.builder (Flutter)
95
+ - โŒ Forget to dispose resources - Remove listeners, cancel timers, close streams
96
+ - โŒ Use heavy operations on main thread - Use background threads for heavy work
97
+ - โŒ Load all data at once - Implement pagination and lazy loading
98
+
99
+ ### Memory
100
+
101
+ - โŒ Create memory leaks - Always dispose listeners, subscriptions, timers
102
+ - โŒ Hold references to large objects - Use weak references when appropriate
103
+ - โŒ Forget to release native resources - Close cameras, file handles, etc.
104
+
105
+ ### Network
106
+
107
+ - โŒ Make requests without error handling - Always handle network errors gracefully
108
+ - โŒ Ignore offline scenarios - Handle offline state, show cached data
109
+ - โŒ Forget to cancel requests - Cancel requests when component unmounts
110
+
111
+ ### Permissions
112
+
113
+ - โŒ Request permissions without explanation - Explain why permission is needed
114
+ - โŒ Request all permissions at once - Request just-in-time
115
+ - โŒ Ignore permission denial - Handle gracefully, show alternatives
116
+
117
+ ### Platform Differences
118
+
119
+ - โŒ Assume iOS and Android are identical - Handle platform-specific code
120
+ - โŒ Use platform-specific APIs without checks - Check platform before using
121
+ - โŒ Ignore platform guidelines - Follow iOS Human Interface Guidelines and Material Design
122
+
123
+ ---
124
+
125
+ ## โœ… ALWAYS Rules
126
+
127
+ **YOU MUST ALWAYS:**
128
+
129
+ ### Code Quality
130
+
131
+ - โœ… Use TypeScript/Dart strict mode
132
+ - โœ… Follow naming conventions: {{FILE_NAMING_CONVENTION}}
133
+ - โœ… Write unit tests for business logic
134
+ - โœ… Handle errors gracefully
135
+ - โœ… Use proper error boundaries (React Native) or error handlers (Flutter)
136
+
137
+ ### Performance
138
+
139
+ - โœ… Optimize images - Use appropriate formats and sizes
140
+ - โœ… Implement lazy loading for screens and components
141
+ - โœ… Use memoization for expensive computations
142
+ - โœ… Monitor app performance - Track FPS, memory usage, battery
143
+
144
+ ### User Experience
145
+
146
+ - โœ… Show loading states - Use skeleton screens or spinners
147
+ - โœ… Handle offline gracefully - Show cached data, queue updates
148
+ - โœ… Request permissions just-in-time - Explain why needed
149
+ - โœ… Follow platform design guidelines - iOS HIG and Material Design
150
+
151
+ ### Security
152
+
153
+ - โœ… Store sensitive data securely - Use secure storage (Keychain/Keystore)
154
+ - โœ… Validate all user input
155
+ - โœ… Use HTTPS for all network requests
156
+ - โœ… Implement certificate pinning for production
157
+
158
+ ### Testing
159
+
160
+ - โœ… Test on physical devices - Not just simulators/emulators
161
+ - โœ… Test on multiple screen sizes
162
+ - โœ… Test offline scenarios
163
+ - โœ… Test permission flows
164
+
165
+ ---
166
+
167
+ ## ๐Ÿ“ฑ Mobile-Specific Guidelines
168
+
169
+ ### iOS
170
+
171
+ - โœ… Follow iOS Human Interface Guidelines
172
+ - โœ… Use native iOS navigation patterns
173
+ - โœ… Support Dark Mode
174
+ - โœ… Handle Safe Area insets
175
+ - โœ… Use SF Symbols for icons
176
+
177
+ ### Android
178
+
179
+ - โœ… Follow Material Design guidelines
180
+ - โœ… Use Material Components
181
+ - โœ… Support different screen densities
182
+ - โœ… Handle system bars (status bar, navigation bar)
183
+ - โœ… Use Material Icons
184
+
185
+ ### Cross-Platform
186
+
187
+ - โœ… Use platform-specific code when needed
188
+ - โœ… Test on both platforms
189
+ - โœ… Handle platform differences gracefully
190
+ - โœ… Use platform detection utilities
191
+
192
+ ---
193
+
194
+ ## ๐Ÿ”„ Development Workflow
195
+
196
+ 1. **Read this file first** - Understand tech stack and rules
197
+ 2. **Check existing code** - Follow established patterns
198
+ 3. **Write tests** - Unit tests for logic, integration tests for flows
199
+ 4. **Test on devices** - Not just simulators
200
+ 5. **Handle errors** - Graceful error handling
201
+ 6. **Optimize performance** - Monitor and optimize
202
+
203
+ ---
204
+
205
+ ## ๐Ÿ“š Key Documentation
206
+
207
+ - `AGENT.md` - Universal AI context
208
+ - `docs/architecture.md` - System architecture
209
+ - `docs/navigation.md` - Navigation patterns
210
+ - `docs/state-management.md` - State management
211
+ - `docs/offline-strategy.md` - Offline handling
212
+ - `docs/permissions.md` - Permissions handling
213
+ - `docs/testing.md` - Testing strategy
214
+ - `docs/app-store.md` - App Store deployment
215
+
216
+ ---
217
+
218
+ **Last Updated:** {{LAST_UPDATED}}
219
+
220
+ **Version:** {{PROJECT_VERSION}}
221
+
@@ -0,0 +1,163 @@
1
+ # App Store Configuration
2
+
3
+ > App Store and Play Store deployment guide for {{PROJECT_NAME}}
4
+
5
+ ---
6
+
7
+ ## ๐Ÿ“ฑ App Stores
8
+
9
+ **Target Stores:** {{TARGET_STORES}}
10
+
11
+ - **iOS:** {{IOS_STORE_ENABLED}}
12
+ - **Android:** {{ANDROID_STORE_ENABLED}}
13
+
14
+ ---
15
+
16
+ ## ๐ŸŽ Apple App Store
17
+
18
+ ### App Store Connect Setup
19
+
20
+ **Bundle ID:** {{IOS_BUNDLE_ID}}
21
+
22
+ **App Name:** {{IOS_APP_NAME}}
23
+
24
+ **Version:** {{IOS_VERSION}}
25
+
26
+ **Build Number:** {{IOS_BUILD_NUMBER}}
27
+
28
+ ### Required Metadata
29
+
30
+ - **App Name:** {{IOS_APP_NAME}} (30 characters max)
31
+ - **Subtitle:** {{IOS_SUBTITLE}} (30 characters max)
32
+ - **Description:** {{IOS_DESCRIPTION}} (4000 characters max)
33
+ - **Keywords:** {{IOS_KEYWORDS}}
34
+ - **Privacy Policy URL:** {{PRIVACY_POLICY_URL}}
35
+
36
+ ### Screenshots
37
+
38
+ **Required Sizes:**
39
+ {{IOS_SCREENSHOT_SIZES}}
40
+
41
+ ### App Icon
42
+
43
+ **Size:** 1024x1024 pixels
44
+
45
+ ### Review Information
46
+
47
+ **Demo Account:** {{IOS_DEMO_ACCOUNT}}
48
+
49
+ **Review Notes:** {{IOS_REVIEW_NOTES}}
50
+
51
+ ---
52
+
53
+ ## ๐Ÿค– Google Play Store
54
+
55
+ ### Play Console Setup
56
+
57
+ **Package Name:** {{ANDROID_PACKAGE_NAME}}
58
+
59
+ **App Name:** {{ANDROID_APP_NAME}}
60
+
61
+ **Version Code:** {{ANDROID_VERSION_CODE}}
62
+
63
+ **Version Name:** {{ANDROID_VERSION_NAME}}
64
+
65
+ ### Required Metadata
66
+
67
+ - **App Name:** {{ANDROID_APP_NAME}} (50 characters max)
68
+ - **Short Description:** {{ANDROID_SHORT_DESCRIPTION}} (80 characters max)
69
+ - **Full Description:** {{ANDROID_FULL_DESCRIPTION}} (4000 characters max)
70
+ - **Privacy Policy URL:** {{PRIVACY_POLICY_URL}}
71
+
72
+ ### Screenshots
73
+
74
+ **Required Sizes:**
75
+ {{ANDROID_SCREENSHOT_SIZES}}
76
+
77
+ ### App Icon
78
+
79
+ **Size:** 512x512 pixels
80
+
81
+ ### Feature Graphic
82
+
83
+ **Size:** 1024x500 pixels
84
+
85
+ ---
86
+
87
+ ## ๐Ÿš€ Deployment Process
88
+
89
+ ### iOS Deployment
90
+
91
+ {{IOS_DEPLOYMENT_PROCESS}}
92
+
93
+ ### Android Deployment
94
+
95
+ {{ANDROID_DEPLOYMENT_PROCESS}}
96
+
97
+ ---
98
+
99
+ ## ๐Ÿ”„ Release Strategy
100
+
101
+ **Release Strategy:** {{RELEASE_STRATEGY}}
102
+
103
+ {{RELEASE_STRATEGY_DESCRIPTION}}
104
+
105
+ ---
106
+
107
+ ## ๐Ÿ“Š Beta Testing
108
+
109
+ **Beta Testing Strategy:** {{BETA_TESTING_STRATEGY}}
110
+
111
+ **iOS:** {{IOS_BETA_TESTING}}
112
+
113
+ **Android:** {{ANDROID_BETA_TESTING}}
114
+
115
+ ---
116
+
117
+ ## ๐Ÿ” Code Signing
118
+
119
+ **Code Signing Strategy:** {{CODE_SIGNING_STRATEGY}}
120
+
121
+ {{CODE_SIGNING_DESCRIPTION}}
122
+
123
+ ---
124
+
125
+ ## ๐Ÿ“ˆ Monitoring
126
+
127
+ **Analytics:** {{ANALYTICS_TOOL}}
128
+
129
+ **Crash Reporting:** {{CRASH_REPORTING_TOOL}}
130
+
131
+ **App Store Analytics:** {{STORE_ANALYTICS_ENABLED}}
132
+
133
+ ---
134
+
135
+ ## โœ… Checklist
136
+
137
+ ### Pre-Release
138
+
139
+ - [ ] All features tested
140
+ - [ ] Screenshots prepared
141
+ - [ ] App metadata complete
142
+ - [ ] Privacy policy published
143
+ - [ ] Demo account ready (if needed)
144
+ - [ ] Beta testing completed
145
+
146
+ ### Release
147
+
148
+ - [ ] Build uploaded to stores
149
+ - [ ] Metadata reviewed
150
+ - [ ] Screenshots verified
151
+ - [ ] Submitted for review
152
+
153
+ ### Post-Release
154
+
155
+ - [ ] Monitor crash reports
156
+ - [ ] Monitor user reviews
157
+ - [ ] Monitor analytics
158
+ - [ ] Plan updates
159
+
160
+ ---
161
+
162
+ **Last Updated:** {{LAST_UPDATED}}
163
+
@@ -0,0 +1,100 @@
1
+ # Architecture Guide
2
+
3
+ > System architecture for {{PROJECT_NAME}}
4
+
5
+ ---
6
+
7
+ ## ๐Ÿ—๏ธ Architecture Overview
8
+
9
+ **Architecture Pattern:** {{ARCHITECTURE_PATTERN}}
10
+
11
+ **Framework:** {{FRAMEWORK}} {{FRAMEWORK_VERSION}}
12
+
13
+ **Platforms:** {{PLATFORMS}}
14
+
15
+ ---
16
+
17
+ ## ๐Ÿ“ Architecture Layers
18
+
19
+ {{ARCHITECTURE_LAYERS_DESCRIPTION}}
20
+
21
+ ---
22
+
23
+ ## ๐Ÿ“ Folder Structure
24
+
25
+ ```
26
+ {{FOLDER_STRUCTURE}}
27
+ ```
28
+
29
+ ---
30
+
31
+ ## ๐Ÿ”„ Data Flow
32
+
33
+ {{DATA_FLOW_DESCRIPTION}}
34
+
35
+ ---
36
+
37
+ ## ๐Ÿงฉ Component Architecture
38
+
39
+ **Component Pattern:** {{COMPONENT_PATTERN}}
40
+
41
+ {{COMPONENT_ARCHITECTURE_DESCRIPTION}}
42
+
43
+ ---
44
+
45
+ ## ๐Ÿ”Œ API Integration
46
+
47
+ **API Style:** {{API_STYLE}}
48
+
49
+ **API Client:** {{API_CLIENT}}
50
+
51
+ {{API_INTEGRATION_DESCRIPTION}}
52
+
53
+ ---
54
+
55
+ ## ๐Ÿ’พ State Management
56
+
57
+ **State Solution:** {{STATE_MANAGEMENT}}
58
+
59
+ **Storage:** {{STORAGE_SOLUTION}}
60
+
61
+ {{STATE_MANAGEMENT_DESCRIPTION}}
62
+
63
+ ---
64
+
65
+ ## ๐Ÿงญ Navigation
66
+
67
+ **Navigation Library:** {{NAVIGATION_LIBRARY}}
68
+
69
+ **Navigation Pattern:** {{NAVIGATION_PATTERN}}
70
+
71
+ {{NAVIGATION_ARCHITECTURE_DESCRIPTION}}
72
+
73
+ ---
74
+
75
+ ## ๐Ÿ” Security
76
+
77
+ {{SECURITY_DESCRIPTION}}
78
+
79
+ ---
80
+
81
+ ## ๐Ÿ“ฑ Platform-Specific Code
82
+
83
+ {{PLATFORM_SPECIFIC_CODE_DESCRIPTION}}
84
+
85
+ ---
86
+
87
+ ## ๐Ÿงช Testing Strategy
88
+
89
+ {{TESTING_STRATEGY_DESCRIPTION}}
90
+
91
+ ---
92
+
93
+ ## ๐Ÿš€ Performance Considerations
94
+
95
+ {{PERFORMANCE_CONSIDERATIONS}}
96
+
97
+ ---
98
+
99
+ **Last Updated:** {{LAST_UPDATED}}
100
+