skills/smithery.ai/app-specific-patterns

app-specific-patterns

Installation
SKILL.md

App Specific Patterns (apps/app)

For general testing patterns, see the global .claude/skills/learned/essential-test-patterns and .claude/skills/learned/essential-test-design skills.

Next.js Pages Router

File Naming

Pages must use .page.tsx suffix:

pages/
├── _app.page.tsx           # App wrapper
├── [[...path]]/index.page.tsx  # Catch-all wiki pages
└── admin/index.page.tsx    # Admin pages

getLayout Pattern

Installs
1
First Seen
Mar 21, 2026
app-specific-patterns from smithery.ai