Page Builder
Installation
SKILL.md
Page Builder Patterns
Universal patterns for building pages. These apply to both public-facing and admin pages.
When to Use
- Building list pages with filtering, search, pagination
- Building detail/edit pages with forms
- Rendering mixed-type feeds or lists
- Any page that fetches and displays data
Core Principle
Remote-First: Put logic in data.remote.ts, keep pages as pure renderers.
See using-remote-functions/REMOTE-FIRST.md for the full pattern.