nextjs-code-implementer

Installation
SKILL.md

Next.js Code Implementation

App Router Fundamentals

File Structure

File-based routing with app directory:

app/
├── layout.tsx          # Root layout (required)
├── page.tsx            # Home page (/)
├── loading.tsx         # Loading UI
├── error.tsx           # Error boundary
├── not-found.tsx       # 404 page
├── about/
│   └── page.tsx        # /about route
├── blog/
│   ├── page.tsx        # /blog route
Related skills

More from masanao-ohba/claude-manifests

Installs
9
GitHub Stars
2
First Seen
Jan 29, 2026