nextjs-react19
스타11
포크1
업데이트2026년 4월 5일 15:06
Next.js with React 19 App Router patterns
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Next.js with React 19 App Router patterns
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Biome JavaScript/TypeScript linter and formatter
Hono lightweight web framework on Cloudflare Workers
Cloudflare Workers edge computing platform
Laravel PHP framework best practices
MySQL database best practices and query patterns
React with TypeScript best practices
| name | nextjs-react19 |
| description | Next.js with React 19 App Router patterns |
| model | inherit |
| triggers | [{"file_pattern":"app/**/page.tsx"},{"file_pattern":"app/**/layout.tsx"}] |
Build modern Next.js applications with App Router and React 19 features.
// Server Component
async function BlogPage() {
const posts = await getPosts();
return (
<main>
{posts.map(post => (
<PostCard key={post.id} post={post} />
))}
</main>
);
}
// Client Component
'use client';
function LikeButton({ postId }: { postId: string }) {
const [optimisticLikes, addOptimisticLike] = useOptimistic(
likes,
(state) => state + 1
);
return <button>{optimisticLikes} likes</button>;
}
/react - React TypeScript patterns/typescript - TypeScript fundamentals