responsive-design — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited responsive-design (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Rules and patterns for creating responsive web designs in Figma across mobile, tablet, and desktop breakpoints. Covers auto-layout strategy, sizing patterns, and common pitfalls.
Design rules are delivered by _workflow.designPreflight (from get_mode). For detailed rules by category, call get_design_guidelines(category).
For the full responsive layout reference at runtime:
get_creation_guide(topic: "responsive")| Breakpoint | Width | Columns | Padding |
|---|---|---|---|
| Mobile | 375px | 1 | 16px |
| Tablet | 768px | 2 | 24px |
| Desktop | 1280px | 3–4 | 32–64px |
| Context | Horizontal | Vertical |
|---|---|---|
| Page container | FIXED (breakpoint width) | HUG |
| Content area | FILL | HUG |
| Sidebar | FIXED (240–300px) | FILL |
| Cards in grid | layoutGrow: 1 (equal width) | HUG |
| Full-width sections | FILL | HUG |
Build one frame per breakpoint, side by side:
create_frame (wrapper, HORIZONTAL, itemSpacing: 40, clipsContent: false)
├── Mobile frame (375 × HUG)
├── Tablet frame (768 × HUG)
└── Desktop frame (1280 × HUG)Design the mobile layout first — it forces content prioritization.
Expand to 2-column layouts where appropriate. Keep single-column for forms and focused content.
Add sidebar navigation, expand grids to 3–4 columns, increase padding.
Use verify_design on each breakpoint frame to check for overflow and layout issues.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.