Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Threejs Nextjs Skill

ASecurity

Three.js + Next.js (App Router, React 19) integration — SSR pitfalls, GLSL bundling, hydration, WebGL context loss, R3F/drei, WebXR, companion-library decision tree. Version detection first.

6 stars
0 votes
0 copies
0 views
Added 9/20/2026
developmentgoreactnextjsgitapifrontend

Works with

cliapi

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add darellchua2/opencode-config-template --skill threejs-nextjs-skill --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Threejs Nextjs Skill?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Threejs Nextjs Skill
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/darellchua2-threejs-nextjs-skill/badge)](https://www.skillsdirectory.com/skills/darellchua2-threejs-nextjs-skill)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: threejs-nextjs-skill
description: >-
  Three.js + Next.js (App Router, React 19) integration — SSR pitfalls, GLSL
  bundling, hydration, WebGL context loss, R3F/drei, WebXR, companion-library
  decision tree. Version detection first.
license: Apache-2.0
compatibility: opencode
category: Framework-Specific
---

# Three.js + Next.js Integration Guidance

Provenance: built for the chronic friction of Three.js + Next.js App Router / React 19 — three.js ships 10–12 breaking releases/year, R3F v8/v9 is the React 18/19 split, drei lags `three` by months, and Next 16's default Turbopack breaks Webpack-era GLSL patterns.

## CRITICAL: Version detection first (MANDATORY)

Never give version-specific code before confirming versions. Ask the user to run:
`npm ls three @react-three/fiber @react-three/drei @react-three/xr` + `grep -E 'three|react|next' package.json`; or detect from files (package.json → `npm ls` → `require('three').REVISION`; monorepos: per-workspace). Generic architectural guidance (e.g. "use `'use client'`") is safe without versions; concrete imports/JSX are not.

**Version matrix (verified Jul 2026 — refresh with `npm view <pkg> version` before relying on it):** `three` 0.185.1 (addons at `three/addons/*`; WebGPURenderer+TSL present) · `@react-three/fiber` 9.6.1 (**v9 = React 19**, v8 = React 18) · `@react-three/drei` 10.7.7 (**stale, compatibility risk** — uses `three-stdlib`; test before upgrading `three` past drei's tested range) · `@react-three/xr` 6.6.30 (v6 `createXRStore()` + `<XR store>`; v5 API entirely different) · `next` 16 (Turbopack default) · `react` 19 (StrictMode double-mounts → WebGL context loss in non-R3F code).

**Version-sensitive areas**: addons path (`three/examples/jsm` ≤0.155 → `three/addons` 0.156+) · WebGLRenderer vs WebGPURenderer not interchangeable · R3F v8/v9 JSX element mappings differ · GLSL via `raw-loader` = Webpack-only (≤Next 15), breaks under Turbopack · TSL replaces GLSL on the WebGPU path.

## Pitfall catalog (identifier → one-line rule)

**SSR**: `three-in-server-component` — every file transitively importing `three`/`@react-three/*`/WebXR MUST start `'use client'`; load via `next/dynamic(..., { ssr: false })` · `next-image-inside-drei-html` — drei `<Html>` portals bypass Next's Image optimizer: use plain `<img>` inside `<Html>`, or hoist `<Image>` out of the scene.
**Hydration**: `hydration-mismatch-canvas` — Canvas dimensions are runtime-computed; skip SSR or render a static placeholder · StrictMode double-mounts → guard context-loss listeners.
**Bundler (Turbopack)**: `raw-loader` GLSL imports fail — use `?.glsl` type modules or inline template literals; Webpack-only config must be rewritten for Turbopack.
**Resource management**: `persistent-canvas-route-changes` — unmount Canvas or lose WebGL state on route change · `missing-dispose-memory-leak` — imperative `useThree()`/raw Three objects need explicit `.dispose()` (JSX-created objects are managed by R3F); `material clone leak`: `.clone()` materials must be re-registered with the manager · `line-not-disposed-in-overlay-cleanup` (provenance: canvastekk-frontend-nextjs/LEARNINGS) — overlay `THREE.Line`s removed from the scene graph still hold GPU memory until `geometry.dispose()` + material dispose · `perspectivecamera-cast-after-swap` (same provenance) — raycaster must receive the CURRENT camera after any camera swap, never an init-time capture.

**Companion libraries**: zustand (5.x) is the standard state pairing; drei covers most needs — add others (postprocessing, rapier, csg) only when drei lacks the feature. WebXR: v6 `createXRStore()` pattern only.

When stuck, consult the three.js migration guide for the user's exact version before improvising: github.com/mrdoob/three.js/wiki/Migration-Guide.

> Removed 2026-09: expanded pitfall walkthroughs with full before/after code (kept identifier+rule table), framework-detection transcripts, integration-approach essays, WebXR tutorials, research-workflow prose — the version matrix, version-sensitive map, and pitfall rules are the durable content.

Attribution

darellchua2darellchua2
View sourceMore from darellchua2 →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →