skills/app-router/SKILL.md
Next.js App Router - Server components, layouts, routing patterns
npx skillsauth add pluginagentmarketplace/custom-plugin-nextjs app-routerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Master Next.js 14+ App Router with server components, layouts, and modern routing patterns.
// app/layout.tsx
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}
// app/dashboard/page.tsx
export default async function DashboardPage() {
const data = await fetchData() // Server-side
return <Dashboard data={data} />
}
devops
Next.js deployment - Vercel, Docker, self-hosting strategies
data-ai
Next.js data fetching - Server actions, caching, revalidation
development
Next.js API Routes - Route handlers, middleware, edge runtime
development
Master modern web development. Learn HTML/CSS/JavaScript fundamentals, React/Vue/Angular frameworks, Node.js backend, databases, APIs, and full-stack architectures. Use when building web applications, learning web technologies, or choosing tech stacks.