Provides 3D web graphics expertise specializing in Three.js, React Three Fiber (R3F), and custom GLSL shader development. Creates immersive 3D experiences for the web with performance optimization and declarative scene management.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionthreejs-proExecute the skills CLI command in your project's root directory to begin installation:
Fetches threejs-pro from 404kidwiz/claude-supercode-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate threejs-pro. Access via /threejs-pro in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
8
total installs
8
this week
75
GitHub stars
0
upvotes
Run in your terminal
8
installs
8
this week
75
stars
Provides 3D web graphics expertise specializing in Three.js, React Three Fiber (R3F), and custom GLSL shader development. Creates immersive 3D experiences for the web with performance optimization and declarative scene management.
Scenario: Building an interactive product configurator for a furniture retailer.
Implementation:
Results:
Scenario: Creating immersive visual effects for a gaming landing page.
Implementation:
Results:
Scenario: Integrating Three.js into existing React e-commerce site.
Implementation:
Results:
What is the project scope?
│
├─ **React Integration?**
│ ├─ Yes → **React Three Fiber (R3F)** (Recommended for 90% of web apps)
│ └─ No → **Vanilla Three.js**
│
├─ **Performance Critical?**
│ ├─ Massive Object Count? → **InstancedMesh**
│ ├─ Complex Physics? → **Rapier (WASM)**
│ └─ Post-Processing? → **EffectComposer / R3F Postprocessing**
│
└─ **Visual Style?**
├─ Realistic? → **PBR Materials + HDR Lighting**
├─ Cartoon? → **Toon Shader / Outline Pass**
└─ Abstract? → **Custom GLSL Shaders**
Draco or Meshopt compression..webp or .ktx2. Max size 2048x2048.useFrame loop.Red Flags → Escalate to graphics-engineer:
Goal: A spinning cube with shadows and orbit controls.
Steps:
Setup
npm install three @types/three @react-three/fiber @react-three/drei
Scene Component (Scene.tsx)
import { Canvas } from '@react-three/fiber';
import { OrbitControls, Stage } from '@react-three/drei';
export default function Scene() {
return (
<Canvas shadows camera={{ position: [0, 0, 5] }}>
<color attach="background" args={['#101010']} />
<ambientLight intensity={0.5} />
<spotLight position={[10, 10, 10]} angle={0.15} penumbra={1} castShadow />
<mesh castShadow receiveShadow rotation={[0, 1, 0]}>
<boxGeometry args={[1, 1, 1]} />
<meshStandardMaterial color="orange" />
</mesh>
<OrbitControls />
</Canvas>
);
}
Goal: Load a heavy GLTF model efficiently.
Steps:
Compression
gltf-pipeline or gltf-transform.gltf-transform optimize input.glb output.glb --compress draco.Loading (R3F)
import { useGLTF } from '@react-three/drei';
export function Model(props) {
const { nodes, materials } = useGLTF('/optimized-model.glb');
return (
<group {...props} dispose={null}>
<mesh geometry={nodes.Cube.geometry} material={materials.Metal} />
</group>
);
}
useGLTF.preload('/optimized-model.glb');
What it looks like:
useFrame(() => { new THREE.Vector3(...) })Why it fails:
Correct approach:
const vec = new THREE.Vector3(); useFrame(() => vec.set(...))What it looks like:
.png textures (10MB each) for a background object.Why it fails:
Correct approach:
1k or 2k textures..jpg for color maps, .png only if alpha needed.What it looks like:
Why it fails:
Correct approach:
AmbientLight + 1 DirectionalLight (Sun).Performance:
Visuals:
Code:
scene.add().useMemo used for expensive calculations.Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
We added threejs-pro from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
threejs-pro has been reliable in day-to-day use. Documentation quality is above average for community skills.
threejs-pro is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
threejs-pro reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for threejs-pro matched our evaluation — installs cleanly and behaves as described in the markdown.
Useful defaults in threejs-pro — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Solid pick for teams standardizing on skills: threejs-pro is focused, and the summary matches what you get after install.
We added threejs-pro from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Keeps context tight: threejs-pro is the kind of skill you can hand to a new teammate without a long onboarding doc.
threejs-pro has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 28