ss-page
SolidScaffold a new mobile page/screen using the StyleSeed layout patterns
Web & Frontend 464 stars
50 forks Updated yesterday MIT
Install
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Mobile Page Scaffolder
## 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 */}
</PageContent>
<BottomNav items={[/* nav items */]} activeIndex={0} />
</PageShell>
)
}
```
3. Layout rules:
- Container: `max-w-[430px]` (mobile viewport)
- Page background: `bg-background`
- Section horizontal padding: `px-6`
- Section vertical spacing: `space-y-6`
- Bottom padding for nav: `pb-24`
- Cards: `...
Details
- Author
- bitjaru
- Repository
- bitjaru/styleseed
- Created
- 2 months ago
- Last Updated
- yesterday
- Language
- TypeScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Web & Frontend Featured
ui-page
Scaffold a new mobile-first page using StyleSeed Toss layout patterns, section rhythm, and existing shell components.
40,440 Updated today
sickn33 Web & Frontend Solid
ss-pattern
Generate a composed UI pattern (card layout, list, form section, grid, etc.) using design system primitives
464 Updated yesterday
bitjaru Web & Frontend Listed
page-scaffold
Use when the user invokes /page-scaffold followed by a description of a new page to add. This runs a site-aware brainstorming phase, produces a spec doc, then implements via frontend-design, screenshot-feedback, and code-navigation-system. Triggers on an agent call, "/page-scaffold", or any phrase relating to page scaffolding.
0 Updated 1 weeks ago
Kevinnnnn-ai