npx skills add yonatangross/orchestkit --skill responsive-patterns
owl-listener/designpowers
responsive-patterns
Use when designing complex responsive layouts — breakpoint strategy, layout shifts, content reflow, responsive typography, container queries, and ensuring the experience works across the full device spectrum
Installation
npx skills add owl-listener/designpowers --skill responsive-patterns
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existi…
866.4K installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsAlso in this package
Other skills from owl-listener/designpowers · top by installs.
npx skills add owl-listener/designpowers
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,184 B -
docs
SUMMARY.md236 B
History
- First seen on skills.sh
- First recorded snapshot · 16 installs
SKILL.md
Responsive Patterns
Responsive design is not "make it fit on a phone." It is designing for every context — one-handed on a bus, zoomed to 200% on a desktop, on a tablet in sunlight.
When to Use
- When
ui-compositiondefines a layout that spans breakpoints - When the design-critic flags responsive issues
- When building anything more complex than single-column
Breakpoint Strategy
Content drives breakpoints, not devices. Do not use 768px because "that's tablet." Use the width where your content breaks.
- Start at 320px
- Widen slowly
- When the layout looks wrong — that's a breakpoint
- Name by behaviour, not device
--bp-stack: 0;
--bp-sidebar: 640px;
--bp-columns: 900px;
--bp-wide: 1200px;
Content Priority Shifting
At narrow widths, decide what gets:
- Kept — essential for the task
- Collapsed — behind a toggle
- Deferred — lower in scroll order
- Hidden — removed (last resort)
Document these decisions.
Responsive Typography
--font-size-body: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
--font-size-h1: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
Body text minimum 16px. Line length 45-75 characters. At 200% zoom, no horizontal scroll (WCAG 1.4.10).
Container Queries vs Media Queries
| Use case | Use |
|---|---|
| Page-level layout | @media |
| Component adaptation | @container |
Touch Targets
44x44px minimum at mobile. 8px minimum gap between adjacent targets.
Testing
Test at: 320px, one pixel below each breakpoint, 200% zoom at 1280px, landscape phone, and real devices.
What You Deliver
- Breakpoint definitions with rationale
- Layout behaviour at each breakpoint
- Content priority decisions
- Typography scale with clamp() values
- Touch target verification
Integration
- Informed by:
ui-composition,design-discovery - Feeds into:
design-builder,accessibility-reviewer