Next.js 16+ complete stack with App Router, Prisma 7, Better Auth, shadcn/ui, TanStack Form, Zustand. Use as the master reference combining all framework skills.
View on GitHubFebruary 2, 2026
Select agents to install to:
npx add-skill https://github.com/fusengine/agents/blob/main/plugins/nextjs-expert/skills/nextjs-stack/SKILL.md -a claude-code --skill nextjs-stackInstallation paths:
.claude/skills/nextjs-stack/# Next.js Complete Stack Master skill combining all framework documentation for modern Next.js development. ## Agent Workflow (MANDATORY) Before ANY implementation, launch in parallel: 1. **fuse-ai-pilot:explore-codebase** - Analyze project structure and existing patterns 2. **fuse-ai-pilot:research-expert** - Verify latest docs for all stack technologies 3. **mcp__context7__query-docs** - Check integration compatibility After implementation, run **fuse-ai-pilot:sniper** for validation. --- ## Overview ### When to Use - Starting a new Next.js 16 project from scratch - Need the complete recommended technology stack - Building production applications with authentication - Implementing forms, state management, and UI components - Understanding how all parts fit together ### Technology Stack | Layer | Technology | Skill Reference | |-------|------------|-----------------| | Framework | Next.js 16 (App Router) | `nextjs-16` | | Database ORM | Prisma 7 | `prisma-7` | | Authentication | Better Auth 1.2 | `better-auth` | | UI Components | shadcn/ui 3.8.0 | `nextjs-shadcn` | | Forms | TanStack Form | `nextjs-tanstack-form` | | State | Zustand | `nextjs-zustand` | | Styling | Tailwind CSS 4 | `tailwindcss` | | i18n | next-intl 4.0 | `nextjs-i18n` | --- ## Stack Decisions ### Why These Technologies | Choice | Reason | |--------|--------| | **Better Auth** over NextAuth.js | TypeScript-first, plugin system, self-hosted | | **Prisma 7** over Drizzle | Mature ecosystem, migrations, studio | | **TanStack Form** over React Hook Form | Modern API, server actions, type safety | | **Zustand** over Redux/Context | Minimal boilerplate, SSR-friendly | | **shadcn/ui** over MUI/Chakra | Copy/paste ownership, Radix primitives | ### Forbidden Patterns - **NextAuth.js** - Use Better Auth instead - **Pages Router** - Use App Router for new projects - **React Hook Form** - Use TanStack Form - **Client Components by default** - Server Components first --- ## SOLID Architecture