designer/creating-page-layouts/SKILL.md
Design immersive, high-end page structures using Bento Grids, Asymmetry, and Sticky Scrolling. Reject the "Generic SaaS Template."
npx skillsauth add 7a336e6e/skills creating-page-layoutsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
4 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create layouts that feel "editorial" and "curated." Move beyond the standard "Hero -> 3 Columns -> Footer" stack. The user should feel they are exploring a space, not just scrolling a list.
Stop using the standard "SaaS Sandwich" (Center Header, Center Hero, 3 Cards).
margin-top: -50px).Organize content into a cohesive "Box Grid" (like Apple/Linear bento slides).
.bento-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 200px;
gap: var(--space-4);
}
.bento-item-tall { grid-row: span 2; }
.bento-item-wide { grid-column: span 2; }
Use position: sticky to keep context while scrolling.
Don't trap everything in max-w-4xl.
gap generously. Dense content needs high gap.designer/designing-ui-system/SKILL.mddevelopment
Implement features using the Red-Green-Refactor cycle to ensure testability and correctness from the start.
data-ai
Manage the `tasks.md` ledger with strict locking and collision avoidance protocols to allow multiple agents to work in parallel safely.
development
The git-workflow skill defines branching conventions, commit message formats, and pull request standards that all agents must follow for consistent version control.
development
The environment-config skill standardizes how agents manage environment variables, secrets, and application configuration across local development and deployed environments.