web-3d-asset-pipeline
Prepare and optimize browser-game 3D assets. Use when the user asks for GLB or glTF shipping work, including Blender cleanup and export, collision or LOD setup, compression, texture packaging, and runtime validation.
Best use case
web-3d-asset-pipeline is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Prepare and optimize browser-game 3D assets. Use when the user asks for GLB or glTF shipping work, including Blender cleanup and export, collision or LOD setup, compression, texture packaging, and runtime validation.
Teams using web-3d-asset-pipeline should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/web-3d-asset-pipeline/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How web-3d-asset-pipeline Compares
| Feature / Agent | web-3d-asset-pipeline | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Prepare and optimize browser-game 3D assets. Use when the user asks for GLB or glTF shipping work, including Blender cleanup and export, collision or LOD setup, compression, texture packaging, and runtime validation.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Web 3D Asset Pipeline ## Overview Use this skill for shipped 3D assets, not runtime scene code. The default output format for browser 3D work in this plugin is GLB or glTF 2.0. The goal is predictable runtime assets, not whatever the DCC tool happened to export first. This guidance is engine-agnostic and can serve Three.js, React Three Fiber, Babylon.js, or PlayCanvas. ## Use This Skill When - the task is about GLB or glTF shipping format - the task is about model cleanup, texture packaging, compression, LOD, or collision proxies - the runtime stack is already chosen and the remaining problem is asset quality or size ## Do Not Use This Skill When - the task is about scene, camera, renderer, or game-loop structure - the task is purely about React versus vanilla Three.js routing - the user is still deciding between runtime engines ## Default Pipeline 1. Author and clean the source asset in a DCC tool such as Blender. 2. Export to GLB or glTF 2.0. 3. Optimize with glTF Transform. 4. Validate naming, pivots, transforms, material reuse, and texture budgets. 5. Add collision proxies, LOD strategy, and baked-lighting assumptions as needed. 6. Ship the optimized asset and load it with engine-native GLTF support. ## Format Rules - Default shipping format: GLB or glTF 2.0. - Do not treat FBX, OBJ, or DCC-native formats as the long-term runtime contract. - Apply or normalize transforms before shipping. - Keep units, pivots, and orientation conventions consistent across the whole asset set. ## Optimization Rules - Use glTF Transform for pruning, deduplication, simplification, and packaging. - Use geometry compression intentionally. - Draco is a valid option when decode cost and compatibility fit the runtime. - Meshopt is often a strong default for web delivery. - Compress textures deliberately. - Use KTX2 or BasisU when the runtime stack supports it. - Use WebP or AVIF where they make sense in the broader asset pipeline. - Reuse materials and textures where possible to cut memory and draw-call cost. ## Runtime-Ready Asset Rules - Keep model hierarchy names stable and meaningful. - Set pivots and origins for gameplay interaction, not just for DCC convenience. - Author explicit collision proxies for physics-heavy scenes. - Decide whether lighting is dynamic, baked, or hybrid before final export. - Plan LODs for large environments or repeated props. - Keep texture resolution proportional to on-screen use, not source-art ambition. ## Common Failure Modes - Shipping raw DCC exports without cleanup - Too many unique materials - Texture sizes far above visible need - Missing collision proxies - Scale or pivot mismatches between assets - Runtime code compensating for asset mistakes that should be fixed upstream ## References - Three.js stack: `../../references/threejs-stack.md` - React Three Fiber stack: `../../references/react-three-fiber-stack.md` - GLB loader starter: `../../references/gltf-loading-starter.md` - Rapier starter: `../../references/rapier-integration-starter.md` - 3D asset pipeline reference: `../../references/web-3d-asset-pipeline.md` - Alternative engines: `../../references/alternative-3d-engines.md`
Related Skills
sprite-pipeline
Generate and normalize 2D sprite animations. Use when the user asks for full-strip generation from approved source frames, consistent anchor and scale normalization, or preview assets for browser-game animation.
workflow
Vercel Workflow DevKit (WDK) expert guidance. Use when building durable workflows, long-running tasks, API routes or agents that need pause/resume, retries, step-based execution, or crash-safe orchestration with Vercel Workflow.
verification
Full-story verification — infers what the user is building, then verifies the complete flow end-to-end: browser → API → data → response. Triggers on dev server start and 'why isn't this working' signals.
vercel-storage
Vercel storage expert guidance — Blob, Edge Config, and Marketplace storage (Neon Postgres, Upstash Redis). Use when choosing, configuring, or using data storage with Vercel applications.
vercel-services
Vercel Services — deploy multiple services within a single Vercel project. Use for monorepo layouts or when combining a backend (Python, Go) with a frontend (Next.js, Vite) in one deployment.
vercel-sandbox
Vercel Sandbox guidance — ephemeral Firecracker microVMs for running untrusted code safely. Supports AI agents, code generation, and experimentation. Use when executing user-generated or AI-generated code in isolation.
vercel-queues
Vercel Queues guidance (public beta) — durable event streaming with topics, consumer groups, retries, and delayed delivery. $0.60/1M ops. Powers Workflow DevKit. Use when building async processing, fan-out patterns, or event-driven architectures.
vercel-functions
Vercel Functions expert guidance — Serverless Functions, Edge Functions, Fluid Compute, streaming, Cron Jobs, and runtime configuration. Use when configuring, debugging, or optimizing server-side code running on Vercel.
vercel-flags
Vercel Flags guidance — feature flags platform with unified dashboard, Flags Explorer, gradual rollouts, A/B testing, and provider adapters. Use when implementing feature flags, experimentation, or staged rollouts.
vercel-firewall
Vercel Firewall and security expert guidance. Use when configuring DDoS protection, WAF rules, rate limiting, bot filtering, IP allow/block lists, OWASP rulesets, Attack Challenge Mode, or any security configuration on the Vercel platform.
vercel-cli
Vercel CLI expert guidance. Use when deploying, managing environment variables, linking projects, viewing logs, managing domains, or interacting with the Vercel platform from the command line.
vercel-api
Vercel MCP and REST API expert guidance. Use when the agent needs live access to Vercel projects, deployments, environment variables, domains, logs, or documentation through the MCP server or REST API.