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,480 @@
1
+ # Phase 4: Styling & Design System
2
+
3
+ **Duration:** 15-20 minutes
4
+ **Questions:** ~11 questions
5
+ **Output:** docs/styling.md, parts of ai-instructions.md
6
+
7
+ ---
8
+
9
+ ## 🎯 Objective
10
+
11
+ Define your styling architecture and design system:
12
+
13
+ 1. What CSS approach will you use?
14
+ 2. Do you need design tokens?
15
+ 3. Will you support theming?
16
+ 4. What's your responsive strategy?
17
+ 5. How will you organize styles?
18
+
19
+ ---
20
+
21
+ ## 📋 Questions
22
+
23
+ ### Question 4.1: Styling Approach
24
+
25
+ **What CSS architecture will you use?**
26
+
27
+ A) ⭐ **Tailwind CSS** (Recommended for most)
28
+ - Features: Utility-first, rapid development, small production bundle
29
+ - Pros: Fast prototyping, consistent design, great DX
30
+ - Cons: Verbose HTML, learning curve
31
+ - Best for: Most modern apps
32
+ - Bundle: ~10KB (purged)
33
+
34
+ B) 🔥 **CSS Modules**
35
+ - Features: Scoped CSS, traditional CSS syntax
36
+ - Pros: Familiar, type-safe (TypeScript), no runtime
37
+ - Cons: More manual work, no design system out of box
38
+ - Best for: Teams preferring traditional CSS
39
+ - Bundle: Variable (your CSS only)
40
+
41
+ C) **Styled Components**
42
+ - Features: CSS-in-JS, component-scoped styles
43
+ - Pros: Dynamic styling, props-based theming, scoped by default
44
+ - Cons: Runtime cost, larger bundle
45
+ - Best for: Component libraries, dynamic themes
46
+ - Bundle: ~16KB
47
+
48
+ D) **Emotion**
49
+ - Features: CSS-in-JS, faster than Styled Components
50
+ - Pros: Better performance than SC, both runtime and compile-time
51
+ - Cons: Still has runtime overhead
52
+ - Best for: Performance-critical CSS-in-JS
53
+ - Bundle: ~11KB
54
+
55
+ E) **Sass/SCSS**
56
+ - Features: CSS preprocessor, variables, mixins
57
+ - Pros: Mature, powerful, compile-time
58
+ - Cons: Global scope (without modules), manual optimization
59
+ - Best for: Legacy projects, traditional workflows
60
+ - Bundle: Variable
61
+
62
+ F) **Vanilla Extract**
63
+ - Features: Zero-runtime CSS-in-TS
64
+ - Pros: Type-safe, no runtime, great DX
65
+ - Cons: Newer, smaller ecosystem
66
+ - Best for: Type safety + performance
67
+ - Bundle: 0KB runtime
68
+
69
+ G) **UnoCSS**
70
+ - Features: Atomic CSS engine, faster than Tailwind
71
+ - Pros: Extremely fast, flexible, smaller bundle
72
+ - Cons: Newer, smaller community
73
+ - Best for: Performance-critical apps
74
+ - Bundle: ~5KB
75
+
76
+ **Your answer:**
77
+
78
+ ---
79
+
80
+ ### Question 4.2: Component Library / UI Kit
81
+
82
+ **Will you use a pre-built component library?**
83
+
84
+ #### React Options
85
+
86
+ A) ⭐ **None (Custom Components)**
87
+ - Build everything from scratch
88
+ - Best for: Full design control, unique designs
89
+
90
+ B) 🔥 **shadcn/ui** (Unstyled, customizable)
91
+ - Features: Copy-paste components, Radix UI primitives
92
+ - Best for: Tailwind users, full customization
93
+
94
+ C) **Material UI (MUI)**
95
+ - Features: Material Design, comprehensive, mature
96
+ - Best for: Google Material Design aesthetic
97
+ - Bundle: ~90KB
98
+
99
+ D) **Chakra UI**
100
+ - Features: Accessible, composable, themeable
101
+ - Best for: Rapid development, accessibility
102
+ - Bundle: ~50KB
103
+
104
+ E) **Ant Design**
105
+ - Features: Enterprise-focused, comprehensive
106
+ - Best for: Admin panels, dashboards, Chinese market
107
+ - Bundle: ~120KB
108
+
109
+ F) **Mantine**
110
+ - Features: Modern, hooks-based, feature-rich
111
+ - Best for: Developer experience, rapid prototyping
112
+ - Bundle: ~40KB
113
+
114
+ #### Vue Options
115
+
116
+ A) **None (Custom Components)**
117
+ B) 🔥 **Vuetify** - Material Design for Vue
118
+ C) **Quasar** - Full framework with components
119
+ D) **PrimeVue** - Rich component library
120
+ E) **Element Plus** - Enterprise UI library
121
+
122
+ #### Angular Options
123
+
124
+ A) **None (Custom Components)**
125
+ B) ⭐ **Angular Material** - Official Material Design
126
+ C) **PrimeNG** - Rich component library
127
+ D) **NG-ZORRO** - Ant Design for Angular
128
+
129
+ **Your answer:**
130
+
131
+ ---
132
+
133
+ ### Question 4.3: Design Tokens
134
+
135
+ **Will you use design tokens?**
136
+
137
+ Design tokens = Single source of truth for colors, spacing, typography, etc.
138
+
139
+ A) ⭐ **Yes, comprehensive design tokens** (Recommended)
140
+ - Define colors, spacing, typography, shadows, etc.
141
+ - Best for: Design consistency, theming support
142
+ - Example: Tailwind config, CSS variables, TypeScript constants
143
+
144
+ B) **Yes, basic tokens only**
145
+ - Just colors and spacing
146
+ - Best for: Simple apps
147
+
148
+ C) **No tokens**
149
+ - Hardcoded values
150
+ - Best for: Prototypes, MVPs
151
+
152
+ **Your answer:**
153
+
154
+ **If yes, what will be tokenized?** (Select all that apply)
155
+ - Colors
156
+ - Spacing (padding, margin, gaps)
157
+ - Typography (fonts, sizes, weights)
158
+ - Shadows
159
+ - Border radius
160
+ - Transitions/animations
161
+ - Breakpoints
162
+
163
+ ---
164
+
165
+ ### Question 4.4: Color System
166
+
167
+ **How will you define your color palette?**
168
+
169
+ A) ⭐ **Tailwind-style scales** (50-900)
170
+ - Example: `gray-50`, `gray-100`, ..., `gray-900`
171
+ - Example: `blue-500`, `blue-600`, etc.
172
+ - Best for: Tailwind CSS, comprehensive palettes
173
+ - Generates: 10 shades per color
174
+
175
+ B) **Semantic colors**
176
+ - Example: `primary`, `secondary`, `success`, `error`, `warning`
177
+ - Best for: Simple apps, component libraries
178
+ - Generates: 5-7 colors
179
+
180
+ C) **Custom color system**
181
+ - Your own naming and structure
182
+ - Best for: Unique design systems
183
+
184
+ **Your answer:**
185
+
186
+ **Primary brand colors (hex codes):**
187
+ - Primary: #______
188
+ - Secondary (optional): #______
189
+ - Accent (optional): #______
190
+
191
+ ---
192
+
193
+ ### Question 4.5: Typography System
194
+
195
+ **How will you handle typography?**
196
+
197
+ A) ⭐ **Type scale (Tailwind-style)**
198
+ - Sizes: xs, sm, base, lg, xl, 2xl, 3xl, 4xl, 5xl, 6xl, 7xl, 8xl, 9xl
199
+ - Best for: Responsive, scalable typography
200
+ - Example: `text-sm`, `text-lg`
201
+
202
+ B) **Semantic headings**
203
+ - Sizes: h1, h2, h3, h4, h5, h6, body, caption
204
+ - Best for: Content-heavy sites, traditional hierarchy
205
+
206
+ C) **Custom scale**
207
+ - Your own naming and sizes
208
+
209
+ **Your answer:**
210
+
211
+ **Font families:**
212
+ - Heading font: _______________ (e.g., Inter, Poppins)
213
+ - Body font: _________________ (e.g., Inter, Roboto)
214
+ - Mono font (optional): _______ (e.g., Fira Code)
215
+
216
+ **Font loading strategy:**
217
+ A) Google Fonts CDN
218
+ B) Self-hosted fonts (better performance)
219
+ C) System fonts only (fastest)
220
+
221
+ ---
222
+
223
+ ### Question 4.6: Theming Support
224
+
225
+ **Do you need theme support (dark mode, multiple themes)?**
226
+
227
+ A) ⭐ **Dark mode only**
228
+ - Light + Dark themes
229
+ - Best for: Modern apps, user preference
230
+ - Implementation: CSS variables, class toggle
231
+
232
+ B) **Multiple themes**
233
+ - Example: Default, Dark, High Contrast, Brand A, Brand B
234
+ - Best for: White-label apps, multi-tenant
235
+
236
+ C) **No theming**
237
+ - Single theme only
238
+ - Best for: MVPs, simpler implementation
239
+
240
+ **Your answer:**
241
+
242
+ **If theming selected:**
243
+
244
+ **Theme switching method:**
245
+ A) User preference (toggle button)
246
+ B) System preference only (prefers-color-scheme)
247
+ C) Both (respect system, allow override)
248
+
249
+ **Theme persistence:**
250
+ A) localStorage
251
+ B) User account setting (backend)
252
+ C) No persistence (reset on reload)
253
+
254
+ ---
255
+
256
+ ### Question 4.7: Responsive Breakpoints
257
+
258
+ **What breakpoint strategy will you use?**
259
+
260
+ A) ⭐ **Tailwind defaults** (Recommended)
261
+ - sm: 640px
262
+ - md: 768px
263
+ - lg: 1024px
264
+ - xl: 1280px
265
+ - 2xl: 1536px
266
+
267
+ B) **Bootstrap-style**
268
+ - xs: 0px
269
+ - sm: 576px
270
+ - md: 768px
271
+ - lg: 992px
272
+ - xl: 1200px
273
+
274
+ C) **Custom breakpoints**
275
+ - Define your own
276
+
277
+ D) **No breakpoints (fluid)**
278
+ - Use relative units only (%, vw, etc.)
279
+
280
+ **Your answer:**
281
+
282
+ ---
283
+
284
+ ### Question 4.8: Spacing System
285
+
286
+ **What spacing scale will you use?**
287
+
288
+ A) ⭐ **4px grid (Tailwind-style)**
289
+ - 0, 1 (4px), 2 (8px), 3 (12px), 4 (16px), 5 (20px), 6 (24px), 8 (32px), etc.
290
+ - Best for: Most apps, consistent spacing
291
+
292
+ B) **8px grid**
293
+ - 0, 8, 16, 24, 32, 40, 48, 56, 64...
294
+ - Best for: Simpler scale, larger spacing
295
+
296
+ C) **Custom scale**
297
+ - Your own spacing values
298
+
299
+ **Your answer:**
300
+
301
+ ---
302
+
303
+ ### Question 4.9: Animation & Transitions
304
+
305
+ **How will you handle animations?**
306
+
307
+ A) ⭐ **CSS transitions only**
308
+ - Simple hover effects, state changes
309
+ - Best for: Most apps, good performance
310
+ - Example: `transition-colors`, `transition-all`
311
+
312
+ B) **CSS transitions + keyframe animations**
313
+ - Add loading spinners, fade-ins, etc.
314
+ - Best for: Modern UX
315
+
316
+ C) **Animation library** (Framer Motion, GSAP, etc.)
317
+ - Complex animations, gestures, page transitions
318
+ - Best for: Animation-heavy apps, marketing sites
319
+ - Example: Framer Motion for React
320
+
321
+ D) **Minimal animations**
322
+ - Accessibility-first, respect prefers-reduced-motion
323
+ - Best for: Accessibility-critical apps
324
+
325
+ **Your answer:**
326
+
327
+ **If animations used:**
328
+
329
+ **Respect prefers-reduced-motion?**
330
+ A) Yes (disable/reduce animations for users who prefer it)
331
+ B) No
332
+
333
+ ---
334
+
335
+ ### Question 4.10: CSS Organization
336
+
337
+ **How will you organize your stylesheets?**
338
+
339
+ A) ⭐ **Component-scoped styles**
340
+ - Each component has its own style file
341
+ - Example: `Button.tsx` + `Button.module.css`
342
+ - Best for: Component libraries, modularity
343
+
344
+ B) **Utility-first (Tailwind)**
345
+ - No separate stylesheets, classes in JSX
346
+ - Best for: Tailwind CSS users
347
+
348
+ C) **Global + Component**
349
+ - Global base styles + component styles
350
+ - Best for: Hybrid approach
351
+
352
+ D) **Feature-based**
353
+ - Styles organized by feature/page
354
+ - Example: `features/auth/styles.css`
355
+ - Best for: Larger apps
356
+
357
+ **Your answer:**
358
+
359
+ ---
360
+
361
+ ### Question 4.11: Accessibility (A11y) Styling
362
+
363
+ **What accessibility level will you target?**
364
+
365
+ A) ⭐ **WCAG 2.1 Level AA** (Recommended)
366
+ - Color contrast ratio: 4.5:1 (normal text), 3:1 (large text)
367
+ - Focus indicators visible
368
+ - Best for: Most apps, legal compliance
369
+
370
+ B) **WCAG 2.1 Level AAA**
371
+ - Color contrast ratio: 7:1 (normal text), 4.5:1 (large text)
372
+ - More stringent requirements
373
+ - Best for: Government, healthcare, education
374
+
375
+ C) **Basic accessibility**
376
+ - Semantic HTML, keyboard navigation
377
+ - Best for: MVPs, internal tools
378
+
379
+ D) **No specific target**
380
+ - Best effort only
381
+
382
+ **Your answer:**
383
+
384
+ **A11y features to include:**
385
+ - [ ] Focus indicators (outline on keyboard focus)
386
+ - [ ] High contrast mode support
387
+ - [ ] Text resizing support (up to 200%)
388
+ - [ ] Screen reader optimizations
389
+ - [ ] Reduced motion support
390
+
391
+ ---
392
+
393
+ ## 📊 Phase 4 Summary
394
+
395
+ ```
396
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
397
+ 📋 PHASE 4 SUMMARY: STYLING & DESIGN
398
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
399
+
400
+ Styling Approach: [Answer from 4.1]
401
+ Component Library: [Answer from 4.2]
402
+ Design Tokens: [Answer from 4.3]
403
+ Color System: [Answer from 4.4]
404
+ Typography: [Answer from 4.5]
405
+ Theming: [Answer from 4.6]
406
+ Breakpoints: [Answer from 4.7]
407
+ Spacing System: [Answer from 4.8]
408
+ Animations: [Answer from 4.9]
409
+ CSS Organization: [Answer from 4.10]
410
+ Accessibility: [Answer from 4.11]
411
+
412
+ Is this correct? (Y/n)
413
+ ```
414
+
415
+ ---
416
+
417
+ ## 📝 Document Generation
418
+
419
+ Generate `docs/styling.md` using the template with these placeholders:
420
+
421
+ - `{{STYLING_APPROACH}}` → Styling solution (e.g., "Tailwind CSS")
422
+ - `{{COMPONENT_LIBRARY}}` → UI kit (e.g., "shadcn/ui" or "None")
423
+ - `{{DESIGN_TOKENS}}` → Yes/No
424
+ - `{{THEME_SUPPORT}}` → Dark mode / Multiple themes / None
425
+ - `{{COLOR_SYSTEM}}` → Color palette approach
426
+ - `{{TYPOGRAPHY_SYSTEM}}` → Type scale approach
427
+ - `{{BREAKPOINTS}}` → Responsive breakpoints
428
+ - `{{SPACING_SCALE}}` → Spacing system
429
+ - `{{ANIMATION_STRATEGY}}` → Animation approach
430
+ - `{{A11Y_COMPLIANCE}}` → WCAG level
431
+
432
+ Update `ai-instructions.md`:
433
+
434
+ ```markdown
435
+ ## Styling
436
+
437
+ - **Approach:** {{STYLING_APPROACH}}
438
+ - **Component Library:** {{COMPONENT_LIBRARY}}
439
+ - **Design Tokens:** {{DESIGN_TOKENS}}
440
+ - **Theming:** {{THEME_SUPPORT}}
441
+ - **Accessibility:** {{A11Y_COMPLIANCE}}
442
+
443
+ ### Rules
444
+
445
+ - ✅ ALWAYS use design tokens for colors and spacing
446
+ - ✅ ALWAYS ensure WCAG {{A11Y_COMPLIANCE}} color contrast
447
+ - ✅ ALWAYS include focus indicators for keyboard navigation
448
+ - ❌ NEVER hardcode colors or spacing values
449
+ - ❌ NEVER ignore prefers-reduced-motion
450
+ {{#IF_TAILWIND}}
451
+ - ✅ ALWAYS use Tailwind utility classes, avoid custom CSS
452
+ - ❌ NEVER use arbitrary values excessively (e.g., `w-[127px]`)
453
+ {{/IF_TAILWIND}}
454
+ {{#IF_DARK_MODE}}
455
+ - ✅ ALWAYS test components in both light and dark modes
456
+ {{/IF_DARK_MODE}}
457
+ ```
458
+
459
+ ---
460
+
461
+ ## 🚀 Next Steps
462
+
463
+ ```
464
+ ✅ Phase 4 Complete!
465
+
466
+ Documents Generated:
467
+ - docs/styling.md
468
+ - ai-instructions.md (updated)
469
+
470
+ Next: Phase 5 - Code Standards
471
+
472
+ Read: .ai-flow/prompts/frontend/flow-docs-gen-phase-5-standards.md
473
+ ```
474
+
475
+ ---
476
+
477
+ **Last Updated:** 2025-01-XX
478
+
479
+ **Version:** 1.2.0
480
+