Agent skill
nextjs-development
Specialized skill for developing with Next.js 16, including cache components, server actions, routing, and modern React patterns. Use when working on app router, server components, or Next.js specific features.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/nextjs-development-artiefy-artiefy
SKILL.md
Next.js Development Skill
This skill provides specialized knowledge and patterns for developing with Next.js 16 in the Artiefy project.
When to Use This Skill
- Implementing new routes or pages in the app router
- Working with Server Components and Server Actions
- Configuring cache components and data fetching
- Handling layouts, error boundaries, and loading states
- Optimizing performance with Next.js 16 features
Key Patterns and Conventions
App Router Structure
- Use
src/app/for all routes - Role-based routing:
/super-admin,/admin,/educadores,/estudiantes - Server Components by default, mark client components with
'use client'
Server Actions
- Place in
src/server/directory - Use for form submissions and data mutations
- Validate with Zod schemas
Data Fetching
- Server Components: Direct database queries
- Client Components: Use SWR for data fetching and caching
- Follow
Docs/doc-nextjs16/guia-swr-nextjs.mdfor SWR patterns
Cache Components
- Use
cacheComponents: falsein next.config.mjs (current setting) - Implement manual caching with
unstable_cachewhen needed - Reference
Docs/doc-nextjs16/cache-components.md
Examples
Creating a New Route
// src/app/admin/new-page/page.tsx
export default function NewPage() {
return (
<div>
<h1>New Admin Page</h1>
</div>
);
}
Server Action
// src/server/actions/createUser.ts
'use server';
import { z } from 'zod';
import { db } from '@/server/db';
const schema = z.object({
name: z.string().min(1),
email: z.string().email(),
});
export async function createUser(formData: FormData) {
const data = schema.parse(Object.fromEntries(formData));
await db.insert(users).values(data);
}
Client Component with SWR
'use client';
import useSWR from 'swr';
export function UserList({ initialData }) {
const { data: users } = useSWR('/api/users', fetcher, {
fallbackData: initialData,
});
return (
<ul>
{users.map((user) => (
<li key={user.id}>{user.name}</li>
))}
</ul>
);
}
Resources
- Next.js 16 Documentation
- Project guides in
Docs/doc-nextjs16/ - ESLint config:
eslint.config.mjs - TypeScript config:
tsconfig.json
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?