appiq-solution 1.4.3 → 1.4.4
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/#Tools/APPIQ-METHOD/.cursor/commands/analyze.md +1 -1
- package/#Tools/APPIQ-METHOD/.cursor/commands/appiq.md +1 -1
- package/#Tools/APPIQ-METHOD/.cursor/commands/help.md +1 -1
- package/#Tools/APPIQ-METHOD/.cursor/commands/story.md +1 -1
- package/#Tools/APPIQ-METHOD/bmad-core/agents/init-flow-po.md +219 -0
- package/#Tools/APPIQ-METHOD/commands/analyze.md +1 -1
- package/#Tools/APPIQ-METHOD/commands/appiq.md +1 -1
- package/#Tools/APPIQ-METHOD/commands/help.md +1 -1
- package/#Tools/APPIQ-METHOD/commands/story.md +1 -1
- package/#Tools/APPIQ-METHOD/package.json +1 -1
- package/#Tools/APPIQ-METHOD/tools/setup-ide-commands.js +40 -37
- package/#Tools/APPIQ-METHOD/tools/smart-installer.js +16 -13
- package/bmad-core/agent-teams/team-all.yaml +14 -0
- package/bmad-core/agent-teams/team-flutter-mobile.yaml +114 -0
- package/bmad-core/agent-teams/team-fullstack.yaml +28 -0
- package/bmad-core/agent-teams/team-ide-minimal.yaml +10 -0
- package/bmad-core/agent-teams/team-no-ui.yaml +13 -0
- package/bmad-core/agents/analyst.md +85 -0
- package/bmad-core/agents/architect.md +90 -0
- package/bmad-core/agents/bmad-master.md +108 -0
- package/bmad-core/agents/bmad-orchestrator.md +150 -0
- package/bmad-core/agents/bmad-smart-launcher.md +170 -0
- package/bmad-core/agents/dev.md +95 -0
- package/bmad-core/agents/init-flow-po.md +219 -0
- package/bmad-core/agents/pm.md +85 -0
- package/bmad-core/agents/po.md +76 -0
- package/bmad-core/agents/qa.md +86 -0
- package/bmad-core/agents/sm.md +67 -0
- package/bmad-core/agents/ux-expert.md +71 -0
- package/bmad-core/bmad-core/user-guide.md +0 -0
- package/bmad-core/checklists/architect-checklist.md +443 -0
- package/bmad-core/checklists/change-checklist.md +182 -0
- package/bmad-core/checklists/pm-checklist.md +375 -0
- package/bmad-core/checklists/po-master-checklist.md +441 -0
- package/bmad-core/checklists/security-validation-checklist.md +332 -0
- package/bmad-core/checklists/story-dod-checklist.md +101 -0
- package/bmad-core/checklists/story-draft-checklist.md +156 -0
- package/bmad-core/core-config.yaml +20 -0
- package/bmad-core/core-config.yaml.bak +20 -0
- package/bmad-core/data/backend-services-integration.md +686 -0
- package/bmad-core/data/bmad-kb.md +803 -0
- package/bmad-core/data/brainstorming-techniques.md +36 -0
- package/bmad-core/data/elicitation-methods.md +134 -0
- package/bmad-core/data/shadcn-ui-integration.md +388 -0
- package/bmad-core/data/technical-preferences.md +149 -0
- package/bmad-core/enhanced-ide-development-workflow.md +43 -0
- package/bmad-core/tasks/advanced-elicitation.md +117 -0
- package/bmad-core/tasks/brownfield-create-epic.md +160 -0
- package/bmad-core/tasks/brownfield-create-story.md +147 -0
- package/bmad-core/tasks/correct-course.md +70 -0
- package/bmad-core/tasks/create-brownfield-story.md +304 -0
- package/bmad-core/tasks/create-deep-research-prompt.md +289 -0
- package/bmad-core/tasks/create-flutter-story.md +197 -0
- package/bmad-core/tasks/create-next-story.md +112 -0
- package/bmad-core/tasks/document-project.md +341 -0
- package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
- package/bmad-core/tasks/generate-ai-frontend-prompt.md +51 -0
- package/bmad-core/tasks/index-docs.md +179 -0
- package/bmad-core/tasks/intelligent-epic-creation.md +234 -0
- package/bmad-core/tasks/kb-mode-interaction.md +75 -0
- package/bmad-core/tasks/review-story.md +145 -0
- package/bmad-core/tasks/shard-doc.md +187 -0
- package/bmad-core/tasks/smart-project-analysis.md +289 -0
- package/bmad-core/tasks/validate-next-story.md +134 -0
- package/bmad-core/templates/architecture-tmpl.yaml +650 -0
- package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
- package/bmad-core/templates/brownfield-architecture-tmpl.yaml +476 -0
- package/bmad-core/templates/brownfield-prd-tmpl.yaml +280 -0
- package/bmad-core/templates/competitor-analysis-tmpl.yaml +293 -0
- package/bmad-core/templates/flutter-mobile-prd-tmpl.yaml +330 -0
- package/bmad-core/templates/flutter-story-tmpl.yaml +376 -0
- package/bmad-core/templates/flutter-ui-spec-tmpl.yaml +415 -0
- package/bmad-core/templates/front-end-architecture-tmpl.yaml +206 -0
- package/bmad-core/templates/front-end-spec-tmpl.yaml +349 -0
- package/bmad-core/templates/fullstack-architecture-tmpl.yaml +812 -0
- package/bmad-core/templates/market-research-tmpl.yaml +252 -0
- package/bmad-core/templates/prd-tmpl.yaml +202 -0
- package/bmad-core/templates/project-brief-tmpl.yaml +221 -0
- package/bmad-core/templates/story-tmpl.yaml +137 -0
- package/bmad-core/user-guide.md +251 -0
- package/bmad-core/workflows/brownfield-fullstack.yaml +311 -0
- package/bmad-core/workflows/brownfield-service.yaml +187 -0
- package/bmad-core/workflows/brownfield-ui.yaml +197 -0
- package/bmad-core/workflows/greenfield-fullstack.yaml +284 -0
- package/bmad-core/workflows/greenfield-service.yaml +206 -0
- package/bmad-core/workflows/greenfield-ui.yaml +235 -0
- package/bmad-core/working-in-the-brownfield.md +373 -0
- package/package.json +1 -1
- package/tools/setup-ide-commands.js +40 -37
- package/tools/smart-installer.js +16 -13
@@ -0,0 +1,349 @@
|
|
1
|
+
template:
|
2
|
+
id: frontend-spec-template-v2
|
3
|
+
name: UI/UX Specification
|
4
|
+
version: 2.0
|
5
|
+
output:
|
6
|
+
format: markdown
|
7
|
+
filename: docs/front-end-spec.md
|
8
|
+
title: "{{project_name}} UI/UX Specification"
|
9
|
+
|
10
|
+
workflow:
|
11
|
+
mode: interactive
|
12
|
+
elicitation: advanced-elicitation
|
13
|
+
|
14
|
+
sections:
|
15
|
+
- id: introduction
|
16
|
+
title: Introduction
|
17
|
+
instruction: |
|
18
|
+
Review provided documents including Project Brief, PRD, and any user research to gather context. Focus on understanding user needs, pain points, and desired outcomes before beginning the specification.
|
19
|
+
|
20
|
+
Establish the document's purpose and scope. Keep the content below but ensure project name is properly substituted.
|
21
|
+
content: |
|
22
|
+
This document defines the user experience goals, information architecture, user flows, and visual design specifications for {{project_name}}'s user interface. It serves as the foundation for visual design and frontend development, ensuring a cohesive and user-centered experience.
|
23
|
+
sections:
|
24
|
+
- id: ux-goals-principles
|
25
|
+
title: Overall UX Goals & Principles
|
26
|
+
instruction: |
|
27
|
+
Work with the user to establish and document the following. If not already defined, facilitate a discussion to determine:
|
28
|
+
|
29
|
+
1. Target User Personas - elicit details or confirm existing ones from PRD
|
30
|
+
2. Key Usability Goals - understand what success looks like for users
|
31
|
+
3. Core Design Principles - establish 3-5 guiding principles
|
32
|
+
elicit: true
|
33
|
+
sections:
|
34
|
+
- id: user-personas
|
35
|
+
title: Target User Personas
|
36
|
+
template: "{{persona_descriptions}}"
|
37
|
+
examples:
|
38
|
+
- "**Power User:** Technical professionals who need advanced features and efficiency"
|
39
|
+
- "**Casual User:** Occasional users who prioritize ease of use and clear guidance"
|
40
|
+
- "**Administrator:** System managers who need control and oversight capabilities"
|
41
|
+
- id: usability-goals
|
42
|
+
title: Usability Goals
|
43
|
+
template: "{{usability_goals}}"
|
44
|
+
examples:
|
45
|
+
- "Ease of learning: New users can complete core tasks within 5 minutes"
|
46
|
+
- "Efficiency of use: Power users can complete frequent tasks with minimal clicks"
|
47
|
+
- "Error prevention: Clear validation and confirmation for destructive actions"
|
48
|
+
- "Memorability: Infrequent users can return without relearning"
|
49
|
+
- id: design-principles
|
50
|
+
title: Design Principles
|
51
|
+
template: "{{design_principles}}"
|
52
|
+
type: numbered-list
|
53
|
+
examples:
|
54
|
+
- "**Clarity over cleverness** - Prioritize clear communication over aesthetic innovation"
|
55
|
+
- "**Progressive disclosure** - Show only what's needed, when it's needed"
|
56
|
+
- "**Consistent patterns** - Use familiar UI patterns throughout the application"
|
57
|
+
- "**Immediate feedback** - Every action should have a clear, immediate response"
|
58
|
+
- "**Accessible by default** - Design for all users from the start"
|
59
|
+
- id: changelog
|
60
|
+
title: Change Log
|
61
|
+
type: table
|
62
|
+
columns: [Date, Version, Description, Author]
|
63
|
+
instruction: Track document versions and changes
|
64
|
+
|
65
|
+
- id: information-architecture
|
66
|
+
title: Information Architecture (IA)
|
67
|
+
instruction: |
|
68
|
+
Collaborate with the user to create a comprehensive information architecture:
|
69
|
+
|
70
|
+
1. Build a Site Map or Screen Inventory showing all major areas
|
71
|
+
2. Define the Navigation Structure (primary, secondary, breadcrumbs)
|
72
|
+
3. Use Mermaid diagrams for visual representation
|
73
|
+
4. Consider user mental models and expected groupings
|
74
|
+
elicit: true
|
75
|
+
sections:
|
76
|
+
- id: sitemap
|
77
|
+
title: Site Map / Screen Inventory
|
78
|
+
type: mermaid
|
79
|
+
mermaid_type: graph
|
80
|
+
template: "{{sitemap_diagram}}"
|
81
|
+
examples:
|
82
|
+
- |
|
83
|
+
graph TD
|
84
|
+
A[Homepage] --> B[Dashboard]
|
85
|
+
A --> C[Products]
|
86
|
+
A --> D[Account]
|
87
|
+
B --> B1[Analytics]
|
88
|
+
B --> B2[Recent Activity]
|
89
|
+
C --> C1[Browse]
|
90
|
+
C --> C2[Search]
|
91
|
+
C --> C3[Product Details]
|
92
|
+
D --> D1[Profile]
|
93
|
+
D --> D2[Settings]
|
94
|
+
D --> D3[Billing]
|
95
|
+
- id: navigation-structure
|
96
|
+
title: Navigation Structure
|
97
|
+
template: |
|
98
|
+
**Primary Navigation:** {{primary_nav_description}}
|
99
|
+
|
100
|
+
**Secondary Navigation:** {{secondary_nav_description}}
|
101
|
+
|
102
|
+
**Breadcrumb Strategy:** {{breadcrumb_strategy}}
|
103
|
+
|
104
|
+
- id: user-flows
|
105
|
+
title: User Flows
|
106
|
+
instruction: |
|
107
|
+
For each critical user task identified in the PRD:
|
108
|
+
|
109
|
+
1. Define the user's goal clearly
|
110
|
+
2. Map out all steps including decision points
|
111
|
+
3. Consider edge cases and error states
|
112
|
+
4. Use Mermaid flow diagrams for clarity
|
113
|
+
5. Link to external tools (Figma/Miro) if detailed flows exist there
|
114
|
+
|
115
|
+
Create subsections for each major flow.
|
116
|
+
elicit: true
|
117
|
+
repeatable: true
|
118
|
+
sections:
|
119
|
+
- id: flow
|
120
|
+
title: "{{flow_name}}"
|
121
|
+
template: |
|
122
|
+
**User Goal:** {{flow_goal}}
|
123
|
+
|
124
|
+
**Entry Points:** {{entry_points}}
|
125
|
+
|
126
|
+
**Success Criteria:** {{success_criteria}}
|
127
|
+
sections:
|
128
|
+
- id: flow-diagram
|
129
|
+
title: Flow Diagram
|
130
|
+
type: mermaid
|
131
|
+
mermaid_type: graph
|
132
|
+
template: "{{flow_diagram}}"
|
133
|
+
- id: edge-cases
|
134
|
+
title: "Edge Cases & Error Handling:"
|
135
|
+
type: bullet-list
|
136
|
+
template: "- {{edge_case}}"
|
137
|
+
- id: notes
|
138
|
+
template: "**Notes:** {{flow_notes}}"
|
139
|
+
|
140
|
+
- id: wireframes-mockups
|
141
|
+
title: Wireframes & Mockups
|
142
|
+
instruction: |
|
143
|
+
Clarify where detailed visual designs will be created (Figma, Sketch, etc.) and how to reference them. If low-fidelity wireframes are needed, offer to help conceptualize layouts for key screens.
|
144
|
+
elicit: true
|
145
|
+
sections:
|
146
|
+
- id: design-files
|
147
|
+
template: "**Primary Design Files:** {{design_tool_link}}"
|
148
|
+
- id: key-screen-layouts
|
149
|
+
title: Key Screen Layouts
|
150
|
+
repeatable: true
|
151
|
+
sections:
|
152
|
+
- id: screen
|
153
|
+
title: "{{screen_name}}"
|
154
|
+
template: |
|
155
|
+
**Purpose:** {{screen_purpose}}
|
156
|
+
|
157
|
+
**Key Elements:**
|
158
|
+
- {{element_1}}
|
159
|
+
- {{element_2}}
|
160
|
+
- {{element_3}}
|
161
|
+
|
162
|
+
**Interaction Notes:** {{interaction_notes}}
|
163
|
+
|
164
|
+
**Design File Reference:** {{specific_frame_link}}
|
165
|
+
|
166
|
+
- id: component-library
|
167
|
+
title: Component Library / Design System
|
168
|
+
instruction: |
|
169
|
+
Discuss whether to use an existing design system or create a new one. If creating new, identify foundational components and their key states. Note that detailed technical specs belong in front-end-architecture.
|
170
|
+
elicit: true
|
171
|
+
sections:
|
172
|
+
- id: design-system-approach
|
173
|
+
template: "**Design System Approach:** {{design_system_approach}}"
|
174
|
+
- id: core-components
|
175
|
+
title: Core Components
|
176
|
+
repeatable: true
|
177
|
+
sections:
|
178
|
+
- id: component
|
179
|
+
title: "{{component_name}}"
|
180
|
+
template: |
|
181
|
+
**Purpose:** {{component_purpose}}
|
182
|
+
|
183
|
+
**Variants:** {{component_variants}}
|
184
|
+
|
185
|
+
**States:** {{component_states}}
|
186
|
+
|
187
|
+
**Usage Guidelines:** {{usage_guidelines}}
|
188
|
+
|
189
|
+
- id: branding-style
|
190
|
+
title: Branding & Style Guide
|
191
|
+
instruction: Link to existing style guide or define key brand elements. Ensure consistency with company brand guidelines if they exist.
|
192
|
+
elicit: true
|
193
|
+
sections:
|
194
|
+
- id: visual-identity
|
195
|
+
title: Visual Identity
|
196
|
+
template: "**Brand Guidelines:** {{brand_guidelines_link}}"
|
197
|
+
- id: color-palette
|
198
|
+
title: Color Palette
|
199
|
+
type: table
|
200
|
+
columns: ["Color Type", "Hex Code", "Usage"]
|
201
|
+
rows:
|
202
|
+
- ["Primary", "{{primary_color}}", "{{primary_usage}}"]
|
203
|
+
- ["Secondary", "{{secondary_color}}", "{{secondary_usage}}"]
|
204
|
+
- ["Accent", "{{accent_color}}", "{{accent_usage}}"]
|
205
|
+
- ["Success", "{{success_color}}", "Positive feedback, confirmations"]
|
206
|
+
- ["Warning", "{{warning_color}}", "Cautions, important notices"]
|
207
|
+
- ["Error", "{{error_color}}", "Errors, destructive actions"]
|
208
|
+
- ["Neutral", "{{neutral_colors}}", "Text, borders, backgrounds"]
|
209
|
+
- id: typography
|
210
|
+
title: Typography
|
211
|
+
sections:
|
212
|
+
- id: font-families
|
213
|
+
title: Font Families
|
214
|
+
template: |
|
215
|
+
- **Primary:** {{primary_font}}
|
216
|
+
- **Secondary:** {{secondary_font}}
|
217
|
+
- **Monospace:** {{mono_font}}
|
218
|
+
- id: type-scale
|
219
|
+
title: Type Scale
|
220
|
+
type: table
|
221
|
+
columns: ["Element", "Size", "Weight", "Line Height"]
|
222
|
+
rows:
|
223
|
+
- ["H1", "{{h1_size}}", "{{h1_weight}}", "{{h1_line}}"]
|
224
|
+
- ["H2", "{{h2_size}}", "{{h2_weight}}", "{{h2_line}}"]
|
225
|
+
- ["H3", "{{h3_size}}", "{{h3_weight}}", "{{h3_line}}"]
|
226
|
+
- ["Body", "{{body_size}}", "{{body_weight}}", "{{body_line}}"]
|
227
|
+
- ["Small", "{{small_size}}", "{{small_weight}}", "{{small_line}}"]
|
228
|
+
- id: iconography
|
229
|
+
title: Iconography
|
230
|
+
template: |
|
231
|
+
**Icon Library:** {{icon_library}}
|
232
|
+
|
233
|
+
**Usage Guidelines:** {{icon_guidelines}}
|
234
|
+
- id: spacing-layout
|
235
|
+
title: Spacing & Layout
|
236
|
+
template: |
|
237
|
+
**Grid System:** {{grid_system}}
|
238
|
+
|
239
|
+
**Spacing Scale:** {{spacing_scale}}
|
240
|
+
|
241
|
+
- id: accessibility
|
242
|
+
title: Accessibility Requirements
|
243
|
+
instruction: Define specific accessibility requirements based on target compliance level and user needs. Be comprehensive but practical.
|
244
|
+
elicit: true
|
245
|
+
sections:
|
246
|
+
- id: compliance-target
|
247
|
+
title: Compliance Target
|
248
|
+
template: "**Standard:** {{compliance_standard}}"
|
249
|
+
- id: key-requirements
|
250
|
+
title: Key Requirements
|
251
|
+
template: |
|
252
|
+
**Visual:**
|
253
|
+
- Color contrast ratios: {{contrast_requirements}}
|
254
|
+
- Focus indicators: {{focus_requirements}}
|
255
|
+
- Text sizing: {{text_requirements}}
|
256
|
+
|
257
|
+
**Interaction:**
|
258
|
+
- Keyboard navigation: {{keyboard_requirements}}
|
259
|
+
- Screen reader support: {{screen_reader_requirements}}
|
260
|
+
- Touch targets: {{touch_requirements}}
|
261
|
+
|
262
|
+
**Content:**
|
263
|
+
- Alternative text: {{alt_text_requirements}}
|
264
|
+
- Heading structure: {{heading_requirements}}
|
265
|
+
- Form labels: {{form_requirements}}
|
266
|
+
- id: testing-strategy
|
267
|
+
title: Testing Strategy
|
268
|
+
template: "{{accessibility_testing}}"
|
269
|
+
|
270
|
+
- id: responsiveness
|
271
|
+
title: Responsiveness Strategy
|
272
|
+
instruction: Define breakpoints and adaptation strategies for different device sizes. Consider both technical constraints and user contexts.
|
273
|
+
elicit: true
|
274
|
+
sections:
|
275
|
+
- id: breakpoints
|
276
|
+
title: Breakpoints
|
277
|
+
type: table
|
278
|
+
columns: ["Breakpoint", "Min Width", "Max Width", "Target Devices"]
|
279
|
+
rows:
|
280
|
+
- ["Mobile", "{{mobile_min}}", "{{mobile_max}}", "{{mobile_devices}}"]
|
281
|
+
- ["Tablet", "{{tablet_min}}", "{{tablet_max}}", "{{tablet_devices}}"]
|
282
|
+
- ["Desktop", "{{desktop_min}}", "{{desktop_max}}", "{{desktop_devices}}"]
|
283
|
+
- ["Wide", "{{wide_min}}", "-", "{{wide_devices}}"]
|
284
|
+
- id: adaptation-patterns
|
285
|
+
title: Adaptation Patterns
|
286
|
+
template: |
|
287
|
+
**Layout Changes:** {{layout_adaptations}}
|
288
|
+
|
289
|
+
**Navigation Changes:** {{nav_adaptations}}
|
290
|
+
|
291
|
+
**Content Priority:** {{content_adaptations}}
|
292
|
+
|
293
|
+
**Interaction Changes:** {{interaction_adaptations}}
|
294
|
+
|
295
|
+
- id: animation
|
296
|
+
title: Animation & Micro-interactions
|
297
|
+
instruction: Define motion design principles and key interactions. Keep performance and accessibility in mind.
|
298
|
+
elicit: true
|
299
|
+
sections:
|
300
|
+
- id: motion-principles
|
301
|
+
title: Motion Principles
|
302
|
+
template: "{{motion_principles}}"
|
303
|
+
- id: key-animations
|
304
|
+
title: Key Animations
|
305
|
+
repeatable: true
|
306
|
+
template: "- **{{animation_name}}:** {{animation_description}} (Duration: {{duration}}, Easing: {{easing}})"
|
307
|
+
|
308
|
+
- id: performance
|
309
|
+
title: Performance Considerations
|
310
|
+
instruction: Define performance goals and strategies that impact UX design decisions.
|
311
|
+
sections:
|
312
|
+
- id: performance-goals
|
313
|
+
title: Performance Goals
|
314
|
+
template: |
|
315
|
+
- **Page Load:** {{load_time_goal}}
|
316
|
+
- **Interaction Response:** {{interaction_goal}}
|
317
|
+
- **Animation FPS:** {{animation_goal}}
|
318
|
+
- id: design-strategies
|
319
|
+
title: Design Strategies
|
320
|
+
template: "{{performance_strategies}}"
|
321
|
+
|
322
|
+
- id: next-steps
|
323
|
+
title: Next Steps
|
324
|
+
instruction: |
|
325
|
+
After completing the UI/UX specification:
|
326
|
+
|
327
|
+
1. Recommend review with stakeholders
|
328
|
+
2. Suggest creating/updating visual designs in design tool
|
329
|
+
3. Prepare for handoff to Design Architect for frontend architecture
|
330
|
+
4. Note any open questions or decisions needed
|
331
|
+
sections:
|
332
|
+
- id: immediate-actions
|
333
|
+
title: Immediate Actions
|
334
|
+
type: numbered-list
|
335
|
+
template: "{{action}}"
|
336
|
+
- id: design-handoff-checklist
|
337
|
+
title: Design Handoff Checklist
|
338
|
+
type: checklist
|
339
|
+
items:
|
340
|
+
- "All user flows documented"
|
341
|
+
- "Component inventory complete"
|
342
|
+
- "Accessibility requirements defined"
|
343
|
+
- "Responsive strategy clear"
|
344
|
+
- "Brand guidelines incorporated"
|
345
|
+
- "Performance goals established"
|
346
|
+
|
347
|
+
- id: checklist-results
|
348
|
+
title: Checklist Results
|
349
|
+
instruction: If a UI/UX checklist exists, run it against this document and report results here.
|