Agent skill · Frontend

ui-page

Scaffold a new mobile page/screen using the StyleSeed layout patterns

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill ui-page --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ui-page/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Mobile Page Scaffolder ## When to Use Use this skill when you need scaffold a new mobile page/screen using the StyleSeed layout patterns. ## When NOT to use - For a single composed pattern within an existing page → use `/ss-pattern` - For desktop-only screens — this skill is mobile-first - For multi-page navigation structure → use `/ss-flow` first - For tweaking an existing page — edit the file directly Create a new page: **$0** Description: $ARGUMENTS ## Instructions 1. Read the design system reference: - `CLAUDE.md` for file structure and conventions - `components/patterns/page-shell.tsx` for page layout - `components/patterns/top-bar.tsx` for header pattern - `components/patterns/bottom-nav.tsx` for navigation 2. Page structure template: ```tsx import { PageShell, PageContent } from "@/components/patterns/page-shell" import { TopBar, TopBarAction } from "@/components/patterns/top-bar" import { BottomNav } from "@/components/patterns/bottom-nav" export default function PageName() { return ( <PageShell> <TopBar logo={/* logo or page title */} subtitle={/* optional subtitle */} actions={/* optional action buttons */} /> <PageContent> {/* Page sections with space-y-6 */} </PageCon

What's inside
Steps it walks through
  1. When to Use
  2. When NOT to use
  3. Instructions
  4. Limitations
More from agentic-awesome-skills
All skills →
About this skill
What does the ui-page skill do?

Scaffold a new mobile page/screen using the StyleSeed layout patterns

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill ui-page --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going