arrange

Improves layout, spacing, and visual hierarchy in frontend interface designs.

Updated Mar 24, 2026
One-click install
npx skills add https://github.com/Ssrrb/cerramos-codebase --skill arrange-ssrrb
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: arrange
Source: https://github.com/Ssrrb/cerramos-codebase/tree/main/.codex/skills/arrange
Command: npx skills add https://github.com/Ssrrb/cerramos-codebase --skill arrange-ssrrb

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Interfaces often feel off due to monotonous grids, arbitrary spacing values, and weak visual hierarchy, even when colors and fonts are fine. This Skill diagnoses those layout problems and applies systematic fixes to create intentional, rhythmic compositions. ## Core Features & Use Cases - Layout Assessment: Audits spacing consistency, visual hierarchy via the squint test, grid structure, rhythm, and density to identify weaknesses. - Systematic Improvement: Establishes spacing scales, chooses Flexbox vs Grid appropriately, breaks card-grid monotony, and manages depth with semantic z-index and shadow scales. - Verification: Validates results with squint tests, rhythm checks, hierarchy clarity, and responsiveness across screen sizes. - Use Case: A dashboard page uses identical icon-plus-heading card grids everywhere with random padding values. Use this Skill to restructure it with a consistent spacing scale, varied section rhythm, and clear content hierarchy. ## Quick Start Use the arrange skill to review and improve the layout and spacing of my dashboard page.

Frequently Asked Questions about arrange

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix inconsistent spacing in a web UI?▼

Adopt a defined spacing scale such as a Tailwind scale, rem-based tokens, or custom properties, and stop using arbitrary values. Use gap for sibling spacing instead of margins, and apply clamp() for fluid spacing on larger screens.

When should I use Flexbox vs CSS Grid for layout?▼

Use Flexbox for one-dimensional layouts like nav bars, button groups, and card internals. Use Grid for two-dimensional page structures and dashboards where rows and columns need coordinated control. Prefer the simplest tool for the job.

How do I create visual hierarchy without adding more colors?▼

Use space and weight first: generous whitespace around key elements draws the eye, and tight grouping with generous section separation creates clear groupings. Add color or size contrast only when simpler means are insufficient.

Why does my interface feel off even with good colors and fonts?▼

Layout problems are often the root cause: arbitrary spacing values, equal padding everywhere, identical repeated card grids, and everything centered. Fixing rhythm, hierarchy, and structure usually resolves the issue.

What is the squint test for visual hierarchy?▼

Blur your vision of the page and check whether you can still identify the most important element, the second most important, and clear content groupings. If hierarchy disappears when blurred, spacing and weight need adjustment.