bmad-enhanced 1.0.0-alpha
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/INSTALLATION.md +367 -0
- package/LICENSE +21 -0
- package/README.md +635 -0
- package/_bmad/bme/_config/module.yaml +52 -0
- package/_bmad/bme/_designos/agents/empathy-mapper.md +97 -0
- package/_bmad/bme/_designos/agents/wireframe-designer.md +114 -0
- package/_bmad/bme/_designos/config.yaml +24 -0
- package/_bmad/bme/_designos/workflows/empathy-map/empathy-map.template.md +143 -0
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-01-define-user.md +60 -0
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-02-says-thinks.md +67 -0
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-03-does-feels.md +79 -0
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-04-pain-points.md +87 -0
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-05-gains.md +103 -0
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-06-synthesize.md +104 -0
- package/_bmad/bme/_designos/workflows/empathy-map/validate.md +117 -0
- package/_bmad/bme/_designos/workflows/empathy-map/workflow.md +44 -0
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-01-define-requirements.md +85 -0
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-02-user-flows.md +59 -0
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-03-information-architecture.md +68 -0
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-04-wireframe-sketch.md +97 -0
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-05-components.md +128 -0
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-06-synthesize.md +83 -0
- package/_bmad/bme/_designos/workflows/wireframe/wireframe.template.md +287 -0
- package/_bmad/bme/_designos/workflows/wireframe/workflow.md +44 -0
- package/_bmad-output/README.md +228 -0
- package/index.js +75 -0
- package/package.json +34 -0
- package/scripts/README.md +194 -0
- package/scripts/install-all-agents.js +265 -0
- package/scripts/install-emma.js +168 -0
- package/scripts/install-wade.js +177 -0
- package/scripts/postinstall.js +15 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
---
|
|
2
|
+
step: 5
|
|
3
|
+
workflow: wireframe
|
|
4
|
+
title: Components & Interactions
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Step 5: Components & Interactions
|
|
8
|
+
|
|
9
|
+
Let's specify UI components, their states, and interactive behaviors.
|
|
10
|
+
|
|
11
|
+
## Component Library
|
|
12
|
+
|
|
13
|
+
Document which components are used:
|
|
14
|
+
|
|
15
|
+
**Buttons:**
|
|
16
|
+
- Primary CTA (main action)
|
|
17
|
+
- Secondary (supporting action)
|
|
18
|
+
- Tertiary/Text (less emphasis)
|
|
19
|
+
|
|
20
|
+
**Input Controls:**
|
|
21
|
+
- Text fields, dropdowns, checkboxes, radio buttons, toggles
|
|
22
|
+
|
|
23
|
+
**Data Display:**
|
|
24
|
+
- Cards, lists, tables, grids
|
|
25
|
+
|
|
26
|
+
**Feedback:**
|
|
27
|
+
- Toasts, alerts, modals, bottom sheets
|
|
28
|
+
|
|
29
|
+
**Progress:**
|
|
30
|
+
- Spinners, progress bars, skeleton screens
|
|
31
|
+
|
|
32
|
+
## Interaction Specifications
|
|
33
|
+
|
|
34
|
+
### Tap/Click Interactions
|
|
35
|
+
```
|
|
36
|
+
Element X → Action Y
|
|
37
|
+
Example:
|
|
38
|
+
- Tap "Transfer" button → Navigate to Transfer screen
|
|
39
|
+
- Tap transaction item → Show transaction details modal
|
|
40
|
+
- Pull to refresh → Reload balance and transactions
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Gestures (Mobile)
|
|
44
|
+
```
|
|
45
|
+
- Swipe left on transaction → Delete (with confirmation)
|
|
46
|
+
- Swipe right on transaction → Mark as reviewed
|
|
47
|
+
- Long press → Show context menu
|
|
48
|
+
- Pinch to zoom → (if applicable)
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Keyboard (Desktop)
|
|
52
|
+
```
|
|
53
|
+
- Tab → Navigate between fields
|
|
54
|
+
- Enter → Submit/Next
|
|
55
|
+
- Esc → Cancel/Close modal
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Component States
|
|
59
|
+
|
|
60
|
+
For each interactive component, define:
|
|
61
|
+
|
|
62
|
+
**Button States:**
|
|
63
|
+
- Default (idle)
|
|
64
|
+
- Hover (desktop)
|
|
65
|
+
- Pressed/Active
|
|
66
|
+
- Disabled (greyed out)
|
|
67
|
+
- Loading (spinner)
|
|
68
|
+
|
|
69
|
+
**Input Field States:**
|
|
70
|
+
- Empty (placeholder visible)
|
|
71
|
+
- Focused (cursor visible, border highlighted)
|
|
72
|
+
- Filled (user input present)
|
|
73
|
+
- Error (validation failed, show error message)
|
|
74
|
+
- Disabled
|
|
75
|
+
|
|
76
|
+
**Screen States:**
|
|
77
|
+
- Loading (skeleton/spinner)
|
|
78
|
+
- Empty (no data, show empty state illustration)
|
|
79
|
+
- Error (failed to load, show retry button)
|
|
80
|
+
- Success (data loaded, normal display)
|
|
81
|
+
|
|
82
|
+
## Responsive Breakpoints
|
|
83
|
+
|
|
84
|
+
### Mobile (320px - 767px)
|
|
85
|
+
- Single column layout
|
|
86
|
+
- Stack buttons vertically
|
|
87
|
+
- Bottom navigation
|
|
88
|
+
|
|
89
|
+
### Tablet (768px - 1023px)
|
|
90
|
+
- Two-column layout possible
|
|
91
|
+
- Buttons side-by-side
|
|
92
|
+
- Bottom or side navigation
|
|
93
|
+
|
|
94
|
+
### Desktop (1024px+)
|
|
95
|
+
- Multi-column layouts
|
|
96
|
+
- Sidebar navigation
|
|
97
|
+
- Hover states visible
|
|
98
|
+
|
|
99
|
+
## Example
|
|
100
|
+
|
|
101
|
+
```
|
|
102
|
+
[Components Used]
|
|
103
|
+
1. Button (Primary)
|
|
104
|
+
- Elements: "Transfer", "Pay Bills", "Deposit"
|
|
105
|
+
- Size: 100×48px, Border radius: 8px
|
|
106
|
+
- States: Default, Pressed, Disabled, Loading
|
|
107
|
+
|
|
108
|
+
2. Transaction List Item
|
|
109
|
+
- Layout: [Icon 32×32] [Name + Amount] [Arrow →]
|
|
110
|
+
- Height: 64px
|
|
111
|
+
- Tap → Transaction detail screen
|
|
112
|
+
- Swipe left → Delete with confirmation
|
|
113
|
+
|
|
114
|
+
[Interactions]
|
|
115
|
+
- Tap balance → Account details screen
|
|
116
|
+
- Tap quick action → Respective flow
|
|
117
|
+
- Pull to refresh → Reload (with spinner)
|
|
118
|
+
- Swipe transaction → Delete/Archive
|
|
119
|
+
|
|
120
|
+
[Responsive]
|
|
121
|
+
- Mobile (375px): Single column, stacked
|
|
122
|
+
- Tablet (768px): Two columns for quick actions
|
|
123
|
+
- Desktop (1024px+): Sidebar + main content
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
## Next Step
|
|
127
|
+
|
|
128
|
+
{project-root}/_bmad/bme/_designos/workflows/wireframe/steps/step-06-synthesize.md
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
---
|
|
2
|
+
step: 6
|
|
3
|
+
workflow: wireframe
|
|
4
|
+
title: Synthesize
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Step 6: Synthesize
|
|
8
|
+
|
|
9
|
+
Time to bring it all together and create the final wireframe artifact!
|
|
10
|
+
|
|
11
|
+
## Why This Matters
|
|
12
|
+
|
|
13
|
+
We've gathered requirements, mapped user flows, designed information architecture, sketched wireframes, and specified components. Now we synthesize everything into a professional wireframe document that designers and developers can use.
|
|
14
|
+
|
|
15
|
+
## What I'll Create
|
|
16
|
+
|
|
17
|
+
Using the template at `wireframe.template.md`, I'll generate your complete wireframe artifact with:
|
|
18
|
+
|
|
19
|
+
1. **Executive Summary** - Key design decisions at a glance
|
|
20
|
+
2. **Requirements** - What we're solving for
|
|
21
|
+
3. **User Flows** - How users navigate
|
|
22
|
+
4. **Information Architecture** - Content organization
|
|
23
|
+
5. **Wireframe Sketches** - ASCII art layouts
|
|
24
|
+
6. **Component Specifications** - Detailed component specs
|
|
25
|
+
7. **Interaction Design** - Behaviors and states
|
|
26
|
+
8. **Responsive Breakpoints** - Adaptive layouts
|
|
27
|
+
9. **Accessibility Notes** - WCAG compliance
|
|
28
|
+
10. **Design Rationale** - Why these decisions?
|
|
29
|
+
11. **Next Steps** - Handoff to high-fidelity design
|
|
30
|
+
|
|
31
|
+
## Output Location
|
|
32
|
+
|
|
33
|
+
**File:** `{output_folder}/wireframe-{screen-name}-{date}.md`
|
|
34
|
+
|
|
35
|
+
Example: `wireframe-dashboard-home-2026-02-15.md`
|
|
36
|
+
|
|
37
|
+
## Before I Generate
|
|
38
|
+
|
|
39
|
+
Let me review all the information we've gathered:
|
|
40
|
+
|
|
41
|
+
### Requirements Checklist
|
|
42
|
+
- [ ] Screen name and platform defined
|
|
43
|
+
- [ ] Target user identified
|
|
44
|
+
- [ ] Primary action clear
|
|
45
|
+
- [ ] Constraints documented
|
|
46
|
+
|
|
47
|
+
### Flow Checklist
|
|
48
|
+
- [ ] Entry points mapped
|
|
49
|
+
- [ ] Happy path defined
|
|
50
|
+
- [ ] Alternative flows considered
|
|
51
|
+
- [ ] Exit points clear
|
|
52
|
+
|
|
53
|
+
### Architecture Checklist
|
|
54
|
+
- [ ] Visual hierarchy established
|
|
55
|
+
- [ ] Content grouped logically
|
|
56
|
+
- [ ] Navigation patterns defined
|
|
57
|
+
|
|
58
|
+
### Wireframe Checklist
|
|
59
|
+
- [ ] ASCII sketch created
|
|
60
|
+
- [ ] Grid system followed
|
|
61
|
+
- [ ] Component placements clear
|
|
62
|
+
|
|
63
|
+
### Components Checklist
|
|
64
|
+
- [ ] All components identified
|
|
65
|
+
- [ ] Interactions specified
|
|
66
|
+
- [ ] States documented
|
|
67
|
+
- [ ] Responsive behavior defined
|
|
68
|
+
|
|
69
|
+
## Your Turn
|
|
70
|
+
|
|
71
|
+
Please confirm you're ready for me to generate the final wireframe artifact, or let me know if we need to revise any section.
|
|
72
|
+
|
|
73
|
+
## What's Next After This?
|
|
74
|
+
|
|
75
|
+
Once I create your wireframe artifact, you can:
|
|
76
|
+
|
|
77
|
+
1. **Validate with users** - Show the wireframe to users and get feedback
|
|
78
|
+
2. **Share with team** - Get stakeholder alignment on structure
|
|
79
|
+
3. **Create high-fidelity designs** - Use this as foundation for visual design
|
|
80
|
+
4. **Prototype** - Build interactive prototype from wireframe
|
|
81
|
+
5. **Develop** - Hand off to developers with clear specifications
|
|
82
|
+
|
|
83
|
+
Great work! This wireframe will be a solid foundation for your design and development. 🎨
|
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
---
|
|
2
|
+
artifact: wireframe
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
created: {date}
|
|
5
|
+
screen: {screen_name}
|
|
6
|
+
platform: {platform}
|
|
7
|
+
author: Wade (wireframe-designer)
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Wireframe: {screen_name}
|
|
11
|
+
|
|
12
|
+
**Platform:** {platform}
|
|
13
|
+
**Target User:** {target_user}
|
|
14
|
+
**Created:** {date}
|
|
15
|
+
**Designer:** Wade (wireframe-designer)
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Executive Summary
|
|
20
|
+
|
|
21
|
+
**Screen Purpose:** {primary_action}
|
|
22
|
+
|
|
23
|
+
**Key Design Decisions:**
|
|
24
|
+
- {decision_1}
|
|
25
|
+
- {decision_2}
|
|
26
|
+
- {decision_3}
|
|
27
|
+
|
|
28
|
+
**Target Breakpoints:**
|
|
29
|
+
- Mobile: 375px (primary focus for mobile-first)
|
|
30
|
+
- Tablet: 768px
|
|
31
|
+
- Desktop: 1024px+
|
|
32
|
+
|
|
33
|
+
**Accessibility Compliance:** WCAG 2.1 Level AA
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## 1. Requirements
|
|
38
|
+
|
|
39
|
+
### Screen Information
|
|
40
|
+
- **Screen Name:** {screen_name}
|
|
41
|
+
- **Platform:** {platform}
|
|
42
|
+
- **Target User:** {target_user}
|
|
43
|
+
- **Primary Action:** {primary_action}
|
|
44
|
+
|
|
45
|
+
### Constraints
|
|
46
|
+
{constraints}
|
|
47
|
+
|
|
48
|
+
### Success Criteria
|
|
49
|
+
{success_criteria}
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## 2. User Flows
|
|
54
|
+
|
|
55
|
+
### Entry Points
|
|
56
|
+
{entry_points}
|
|
57
|
+
|
|
58
|
+
### Happy Path
|
|
59
|
+
{happy_path}
|
|
60
|
+
|
|
61
|
+
### Alternative Flows
|
|
62
|
+
{alternative_flows}
|
|
63
|
+
|
|
64
|
+
### Exit Points
|
|
65
|
+
{exit_points}
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## 3. Information Architecture
|
|
70
|
+
|
|
71
|
+
### Visual Hierarchy
|
|
72
|
+
1. **Primary (Hero):** {primary_content}
|
|
73
|
+
2. **Secondary (Supporting):** {secondary_content}
|
|
74
|
+
3. **Tertiary (Metadata):** {tertiary_content}
|
|
75
|
+
|
|
76
|
+
### Content Grouping
|
|
77
|
+
{content_grouping}
|
|
78
|
+
|
|
79
|
+
### Navigation Patterns
|
|
80
|
+
{navigation_patterns}
|
|
81
|
+
|
|
82
|
+
### Information Density
|
|
83
|
+
- **Mobile:** {mobile_density}
|
|
84
|
+
- **Desktop:** {desktop_density}
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## 4. Wireframe Sketches
|
|
89
|
+
|
|
90
|
+
### Mobile View (375px)
|
|
91
|
+
|
|
92
|
+
```
|
|
93
|
+
{mobile_wireframe_ascii}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
**Annotations:**
|
|
97
|
+
- {mobile_annotation_1}
|
|
98
|
+
- {mobile_annotation_2}
|
|
99
|
+
- {mobile_annotation_3}
|
|
100
|
+
|
|
101
|
+
### Desktop View (1024px+)
|
|
102
|
+
|
|
103
|
+
```
|
|
104
|
+
{desktop_wireframe_ascii}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
**Annotations:**
|
|
108
|
+
- {desktop_annotation_1}
|
|
109
|
+
- {desktop_annotation_2}
|
|
110
|
+
- {desktop_annotation_3}
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
## 5. Component Specifications
|
|
115
|
+
|
|
116
|
+
### Component Library
|
|
117
|
+
|
|
118
|
+
{component_specifications}
|
|
119
|
+
|
|
120
|
+
**Example Component Detail:**
|
|
121
|
+
|
|
122
|
+
#### {component_name}
|
|
123
|
+
- **Type:** {component_type}
|
|
124
|
+
- **Location:** {component_location}
|
|
125
|
+
- **Size:** {component_size}
|
|
126
|
+
- **States:** {component_states}
|
|
127
|
+
- **Behavior:** {component_behavior}
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## 6. Interaction Design
|
|
132
|
+
|
|
133
|
+
### Interactive Elements
|
|
134
|
+
|
|
135
|
+
{interactive_elements}
|
|
136
|
+
|
|
137
|
+
### States & Feedback
|
|
138
|
+
|
|
139
|
+
{states_feedback}
|
|
140
|
+
|
|
141
|
+
### Gestures & Input
|
|
142
|
+
|
|
143
|
+
**Mobile:**
|
|
144
|
+
- {mobile_gesture_1}
|
|
145
|
+
- {mobile_gesture_2}
|
|
146
|
+
|
|
147
|
+
**Desktop:**
|
|
148
|
+
- {desktop_interaction_1}
|
|
149
|
+
- {desktop_interaction_2}
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## 7. Responsive Breakpoints
|
|
154
|
+
|
|
155
|
+
### Breakpoint Strategy
|
|
156
|
+
|
|
157
|
+
| Breakpoint | Width | Layout Changes |
|
|
158
|
+
|------------|-------|----------------|
|
|
159
|
+
| Mobile | 375px | {mobile_layout_changes} |
|
|
160
|
+
| Tablet | 768px | {tablet_layout_changes} |
|
|
161
|
+
| Desktop | 1024px+ | {desktop_layout_changes} |
|
|
162
|
+
|
|
163
|
+
### Adaptive Patterns
|
|
164
|
+
{adaptive_patterns}
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
168
|
+
## 8. Accessibility Notes
|
|
169
|
+
|
|
170
|
+
### WCAG 2.1 Compliance
|
|
171
|
+
|
|
172
|
+
**Level AA Requirements:**
|
|
173
|
+
- {accessibility_requirement_1}
|
|
174
|
+
- {accessibility_requirement_2}
|
|
175
|
+
- {accessibility_requirement_3}
|
|
176
|
+
|
|
177
|
+
### Keyboard Navigation
|
|
178
|
+
{keyboard_navigation}
|
|
179
|
+
|
|
180
|
+
### Screen Reader Support
|
|
181
|
+
{screen_reader_support}
|
|
182
|
+
|
|
183
|
+
### Focus Management
|
|
184
|
+
{focus_management}
|
|
185
|
+
|
|
186
|
+
### Color Contrast
|
|
187
|
+
{color_contrast_notes}
|
|
188
|
+
|
|
189
|
+
---
|
|
190
|
+
|
|
191
|
+
## 9. Design Rationale
|
|
192
|
+
|
|
193
|
+
### Why This Layout?
|
|
194
|
+
{layout_rationale}
|
|
195
|
+
|
|
196
|
+
### Why This Information Hierarchy?
|
|
197
|
+
{hierarchy_rationale}
|
|
198
|
+
|
|
199
|
+
### Why These Components?
|
|
200
|
+
{component_rationale}
|
|
201
|
+
|
|
202
|
+
### Trade-offs Considered
|
|
203
|
+
{tradeoffs}
|
|
204
|
+
|
|
205
|
+
---
|
|
206
|
+
|
|
207
|
+
## 10. Next Steps
|
|
208
|
+
|
|
209
|
+
### For High-Fidelity Design
|
|
210
|
+
- [ ] {hifi_step_1}
|
|
211
|
+
- [ ] {hifi_step_2}
|
|
212
|
+
- [ ] {hifi_step_3}
|
|
213
|
+
|
|
214
|
+
### For Prototyping
|
|
215
|
+
- [ ] {prototype_step_1}
|
|
216
|
+
- [ ] {prototype_step_2}
|
|
217
|
+
- [ ] {prototype_step_3}
|
|
218
|
+
|
|
219
|
+
### For Development
|
|
220
|
+
- [ ] {dev_step_1}
|
|
221
|
+
- [ ] {dev_step_2}
|
|
222
|
+
- [ ] {dev_step_3}
|
|
223
|
+
|
|
224
|
+
### For User Testing
|
|
225
|
+
- [ ] {testing_step_1}
|
|
226
|
+
- [ ] {testing_step_2}
|
|
227
|
+
- [ ] {testing_step_3}
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
|
|
231
|
+
## Appendix
|
|
232
|
+
|
|
233
|
+
### Grid System
|
|
234
|
+
- **Mobile:** 8pt grid, 16px margins
|
|
235
|
+
- **Desktop:** 12-column grid, 24px gutters
|
|
236
|
+
|
|
237
|
+
### Typography Scale
|
|
238
|
+
- **H1:** 24-32px (Screen title)
|
|
239
|
+
- **H2:** 20-24px (Section headers)
|
|
240
|
+
- **Body:** 16px (Content text)
|
|
241
|
+
- **Caption:** 12-14px (Metadata)
|
|
242
|
+
|
|
243
|
+
### Spacing System
|
|
244
|
+
- **XS:** 4px
|
|
245
|
+
- **S:** 8px
|
|
246
|
+
- **M:** 16px
|
|
247
|
+
- **L:** 24px
|
|
248
|
+
- **XL:** 32px
|
|
249
|
+
- **XXL:** 48px
|
|
250
|
+
|
|
251
|
+
### Component Heights
|
|
252
|
+
- **Header:** 56-72px
|
|
253
|
+
- **Bottom Navigation:** 48-72px
|
|
254
|
+
- **Button:** 44-48px (mobile), 36-40px (desktop)
|
|
255
|
+
- **Input Field:** 44-48px (mobile), 36-40px (desktop)
|
|
256
|
+
- **List Item:** 56-72px
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
**Document Version:** 1.0.0
|
|
261
|
+
**Last Updated:** {date}
|
|
262
|
+
**Designer:** Wade (wireframe-designer)
|
|
263
|
+
**Status:** Draft for Review
|
|
264
|
+
|
|
265
|
+
---
|
|
266
|
+
|
|
267
|
+
## Document Control
|
|
268
|
+
|
|
269
|
+
**Change History:**
|
|
270
|
+
|
|
271
|
+
| Version | Date | Changes | Author |
|
|
272
|
+
|---------|------|---------|--------|
|
|
273
|
+
| 1.0.0 | {date} | Initial wireframe created | Wade |
|
|
274
|
+
|
|
275
|
+
**Approvals Required:**
|
|
276
|
+
- [ ] Product Manager
|
|
277
|
+
- [ ] UX Lead
|
|
278
|
+
- [ ] Engineering Lead
|
|
279
|
+
- [ ] Accessibility Specialist
|
|
280
|
+
|
|
281
|
+
---
|
|
282
|
+
|
|
283
|
+
**Questions or Feedback?**
|
|
284
|
+
|
|
285
|
+
Contact the design team or leave comments in this document.
|
|
286
|
+
|
|
287
|
+
Great work! This wireframe provides a solid foundation for your design and development. 🎨
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
workflow: wireframe
|
|
3
|
+
type: step-file
|
|
4
|
+
description: Create wireframes through structured 6-step process
|
|
5
|
+
author: Wade (wireframe-designer)
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Create Wireframe Workflow
|
|
9
|
+
|
|
10
|
+
This workflow guides you through creating comprehensive wireframes for web or mobile applications.
|
|
11
|
+
|
|
12
|
+
## What is a Wireframe?
|
|
13
|
+
|
|
14
|
+
A wireframe is a low-fidelity visual representation of a user interface. It defines the structure, layout, and functionality of screens without focusing on visual design details like colors or fonts. Wireframes answer: Where am I? What can I do? Where can I go?
|
|
15
|
+
|
|
16
|
+
## Workflow Structure
|
|
17
|
+
|
|
18
|
+
**Step-file architecture:**
|
|
19
|
+
- Just-in-time loading (each step loads only when needed)
|
|
20
|
+
- Sequential enforcement (must complete step N before step N+1)
|
|
21
|
+
- State tracking in frontmatter (progress preserved)
|
|
22
|
+
|
|
23
|
+
## Steps Overview
|
|
24
|
+
|
|
25
|
+
1. **Define Requirements** - What screen, platform, user, functionality?
|
|
26
|
+
2. **User Flows** - How do users navigate? Entry → Goal → Exit
|
|
27
|
+
3. **Information Architecture** - How is content organized and prioritized?
|
|
28
|
+
4. **Wireframe Sketch** - Create layout using ASCII art and grids
|
|
29
|
+
5. **Components & Interactions** - Specify UI components, states, behaviors
|
|
30
|
+
6. **Synthesize** - Create the final wireframe artifact
|
|
31
|
+
|
|
32
|
+
## Output
|
|
33
|
+
|
|
34
|
+
**Artifact:** Wireframe markdown file in `{output_folder}/wireframe-{screen-name}-{date}.md`
|
|
35
|
+
|
|
36
|
+
**Template:** Uses [wireframe.template.md](wireframe.template.md)
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## INITIALIZATION
|
|
41
|
+
|
|
42
|
+
Load config from {project-root}/_bmad/bme/_designos/config.yaml
|
|
43
|
+
|
|
44
|
+
Load step: {project-root}/_bmad/bme/_designos/workflows/wireframe/steps/step-01-define-requirements.md
|