github.com/AzizBelhassan/timeverse
| Skill | Added | Review |
|---|---|---|
nextjs-advanced-routing .agents/skills/nextjs-advanced-routing/SKILL.md Guide for advanced Next.js App Router patterns including Route Handlers, Parallel Routes, Intercepting Routes, Server Actions, error boundaries, draft mode, and streaming with Suspense. CRITICAL for server actions (action.ts, actions.ts files, 'use server' directive), setting cookies from client components, and form handling. Use when requirements involve server actions, form submissions, cookies, mutations, API routes, `route.ts`, parallel routes, intercepting routes, or streaming. Essential for separating server actions from client components. | — | |
nextjs-anti-patterns .agents/skills/nextjs-anti-patterns/SKILL.md | — | |
nextjs-app-router-fundamentals .agents/skills/nextjs-app-router-fundamentals/SKILL.md Guide for working with Next.js App Router (Next.js 13+). Use when migrating from Pages Router to App Router, creating layouts, implementing routing, handling metadata, or building Next.js 13+ applications. Activates for App Router migration, layout creation, routing patterns, or Next.js 13+ development tasks. | — | |
nextjs-client-cookie-pattern .agents/skills/nextjs-client-cookie-pattern/SKILL.md Pattern for client components calling server actions to set cookies in Next.js. Covers the two-file pattern of a client component with user interaction (onClick, form submission) that calls a server action to modify cookies. Use when building features like authentication, preferences, or session management where client-side triggers need to set/modify server-side cookies. | — | |
nextjs-dynamic-routes-params .agents/skills/nextjs-dynamic-routes-params/SKILL.md Guide for Next.js App Router dynamic routes and pathname parameters. Use when building pages that depend on URL segments (IDs, slugs, nested paths), accessing the `params` prop, or fetching resources by identifier. Helps avoid over-nesting by defaulting to the simplest route structure (e.g., `app/[id]` instead of `app/products/[id]` unless the URL calls for it). | — | |
nextjs-pathname-id-fetch .agents/skills/nextjs-pathname-id-fetch/SKILL.md Focused pattern for fetching data using URL parameters in Next.js. Covers creating dynamic routes ([id], [slug]) and accessing route parameters in server components to fetch data from APIs. Use when building pages that display individual items (product pages, blog posts, user profiles) based on a URL parameter. Complements nextjs-dynamic-routes-params with a simplified, common-case pattern. | — | |
nextjs-server-client-components .agents/skills/nextjs-server-client-components/SKILL.md Guide for choosing between Server Components and Client Components in Next.js App Router. CRITICAL for useSearchParams (requires Suspense + 'use client'), navigation (Link, redirect, useRouter), cookies/headers access, and 'use client' directive. Activates when prompt mentions useSearchParams, Suspense, navigation, routing, Link component, redirect, pathname, searchParams, cookies, headers, async components, or 'use client'. Essential for avoiding mixing server/client APIs. | — | |
nextjs-server-navigation .agents/skills/nextjs-server-navigation/SKILL.md Guide for implementing navigation in Next.js Server Components using Link component and redirect() function. Covers the difference between server and client navigation methods. Use when adding links, redirects, or navigation logic in server components without converting them to client components unnecessarily. | — | |
nextjs-use-search-params-suspense .agents/skills/nextjs-use-search-params-suspense/SKILL.md Pattern for using useSearchParams hook with Suspense boundary in Next.js. Covers the required combination of 'use client' directive and Suspense wrapper when accessing URL query parameters in client components. Use when building search interfaces, filters, pagination, or any feature that needs to read/manipulate URL query parameters client-side. | — | |
r3f-animation .agents/skills/r3f-animation/SKILL.md React Three Fiber animation - useFrame, useAnimations, spring physics, keyframes. Use when animating objects, playing GLTF animations, creating procedural motion, or implementing physics-based movement. | — | |
r3f-fundamentals .agents/skills/r3f-fundamentals/SKILL.md React Three Fiber fundamentals - Canvas, hooks (useFrame, useThree), JSX elements, events, refs. Use when setting up R3F scenes, creating components, handling the render loop, or working with Three.js objects in React. | — | |
r3f-geometry .agents/skills/r3f-geometry/SKILL.md React Three Fiber geometry - built-in shapes, BufferGeometry, instancing with Drei. Use when creating 3D shapes, custom meshes, point clouds, lines, or optimizing with instanced rendering. | — | |
r3f-interaction .agents/skills/r3f-interaction/SKILL.md React Three Fiber interaction - pointer events, controls, gestures, selection. Use when handling user input, implementing click detection, adding camera controls, or creating interactive 3D experiences. | — | |
r3f-lighting .agents/skills/r3f-lighting/SKILL.md React Three Fiber lighting - light types, shadows, Environment component, IBL. Use when adding lights, configuring shadows, setting up environment lighting, or optimizing lighting performance. | — | |
r3f-loaders .agents/skills/r3f-loaders/SKILL.md React Three Fiber asset loading - useGLTF, useLoader, Suspense patterns, preloading. Use when loading 3D models, textures, HDR environments, or managing loading states. | — | |
r3f-materials .agents/skills/r3f-materials/SKILL.md React Three Fiber materials - PBR materials, Drei materials, shader materials, material properties. Use when styling meshes, creating custom materials, working with textures, or implementing visual effects. | — | |
r3f-physics .agents/skills/r3f-physics/SKILL.md React Three Fiber physics with Rapier - RigidBody, colliders, forces, joints, sensors. Use when adding physics simulation, collision detection, character controllers, or creating interactive physics-based experiences. | — | |
r3f-postprocessing .agents/skills/r3f-postprocessing/SKILL.md React Three Fiber post-processing - @react-three/postprocessing, bloom, DOF, screen effects. Use when adding visual effects, color grading, blur, glow, or creating custom screen-space shaders. | — | |
r3f-shaders .agents/skills/r3f-shaders/SKILL.md React Three Fiber shaders - GLSL, shaderMaterial, uniforms, custom effects. Use when creating custom visual effects, modifying vertices, writing fragment shaders, or extending built-in materials. | — | |
r3f-textures .agents/skills/r3f-textures/SKILL.md React Three Fiber textures - useTexture, texture loading, environment maps, texture configuration. Use when loading images, working with PBR texture sets, cubemaps, HDR environments, or optimizing texture usage. | — |