Files
Momento/.agent/skills/wds-4-ux-design/templates/storyboard-specification.template.md
Antigravity bd495be965
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 12s
feat: design system overhaul — sidebar, AI chats, settings, brainstorm, color cleanup
- Sidebar: dynamic brand-accent colors, brainstorm section restyled
- AI chat general: popup panel with expand/collapse, hides when contextual AI open
- AI chat contextual: tabs reordered (Actions first), X close button, height fix
- Settings: all tabs restyled, 6 new color presets (sage, terracotta, iron, etc.)
- Global color cleanup: emerald/orange hardcoded → brand-accent dynamic
- Brainstorm page: orange → brand-accent throughout
- PageEntry animation component added to key pages
- Floating AI button: bg-brand-accent instead of hardcoded black
- i18n: all 15 locales updated with new AI/billing keys
- Billing: freemium quota tracking, BYOK, stripe subscription scaffolding
- Admin: integrated into new design
- AGENTS.md + CLAUDE.md project rules added
2026-05-16 12:59:30 +00:00

95 lines
2.4 KiB
Markdown

# Storyboard Extension
**Use when:** Page has multiple sketches (multi-step flows, state changes, transitions)
**Base:** Start with [page-specification.template.md](page-specification.template.md)
---
## What Changes
### 1. Add State Flow Overview (before Page Sections)
After Reference Materials, add:
```markdown
## State Flow Overview
{Brief description of states}
![Overview](Sketches/{page-number}-{page-name}-Overview.jpg)
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ STATE 1 │───▶│ STATE 2 │───▶│ STATE 3 │
└─────────────┘ └─────────────┘ └─────────────┘
| State | Name | Visual | Entry | Actions |
|-------|------|--------|-------|---------|
| **1** | {name} | {color/icon} | {trigger} | {actions} |
| **2** | {name} | {color/icon} | {trigger} | {actions} |
```
---
### 2. State 1 = Normal Page Specification
Document State 1 using the standard page spec structure:
- Page Sections
- Objects with OBJECT IDs
- Groups with nested objects
This is the **baseline** that other states reference.
---
### 3. States 2+ = Differences Only
After State 1, add for each additional state:
```markdown
# State 2: {State Name} — Differences from State 1
![State 2](Sketches/{page-number}-{page-name}-2-{state-name}.jpg)
> **The Story:** {User experience narrative}
| Property | Value |
|----------|-------|
| Purpose | {what this state does} |
| Entry | {trigger from previous state} |
| Previous | State 1 |
| Next | State 3 / {options} |
### Changes from State 1
| OBJECT ID | Change | Details |
|-----------|--------|---------|
| `{existing-id}` | Modified | {what changed} |
| `{existing-id}` | Hidden | {why hidden} |
| `{new-id}` | Added | {new element} |
### State 2 Elements
{Only document NEW objects not in State 1}
#### {New Object}
**OBJECT ID:** `{page-name}-{new-object}`
| Property | Value |
|----------|-------|
| Component | [{Component}]({path}) |
| Translation Key | `{key}` |
| SE | "{text}" |
| EN | "{text}" |
```
---
## Key Principles
1. **State 1 is baseline** — fully documented
2. **States 2+ show only changes** — reuse OBJECT IDs
3. **Same IDs across states**`booking-detail-header` stays the same, just describe what changed
4. **New elements get new IDs** — only in the state they first appear