TH

threejs-agents-model-optimizer

Provides an automated pipeline to reduce 3D model file sizes for web performance.

Install

mkdir -p .claude/skills/threejs-agents-model-optimizer && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/18770" && unzip -o skill.zip -d .claude/skills/threejs-agents-model-optimizer && rm skill.zip

Installs to .claude/skills/threejs-agents-model-optimizer

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Use when optimizing 3D models for web delivery: reducing file size, compressing meshes, optimizing textures, or generating LOD. Provides a complete GLTF optimization pipeline using Draco, KTX2, mesh simplification, and gltf-transform. Keywords: optimize model, reduce file size, Draco compression, KTX2, gltf-transform, mesh simplification, LOD, GLTF optimize, bundle size, model too big, slow loading, compress 3D model.
421 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Advanced

Key capabilities

  • Assess polygon count, texture sizes, file size, and draw calls
  • Optimize meshes through deduplication, flattening, joining, welding, and simplification
  • Optimize textures through resizing, KTX2 compression, and atlasing
  • Compress models using Draco mesh compression and attribute quantization
  • Validate optimized models visually, by file size, and runtime
  • Generate Level of Detail (LOD) models

How it works

The skill assesses model metrics, then applies a pipeline of mesh optimization (deduplication, simplification), texture optimization (KTX2 compression), and compression (Draco). Finally, it validates the optimized model.

Inputs & outputs

You give it
GLTF or GLB 3D model
You get back
optimized GLB model

When to use threejs-agents-model-optimizer

  • Reducing GLTF file size
  • Compressing 3D assets for web
  • Optimizing models for mobile

About this skill

threejs-agents-model-optimizer

Quick Reference

Optimization Pipeline Overview

INPUT (.glb/.gltf)
  |
  v
[1. ASSESS] ── polygon count, texture sizes, file size, draw calls
  |
  v
[2. MESH OPTIMIZE] ── dedup, flatten, join, weld, simplify
  |
  v
[3. TEXTURE OPTIMIZE] ── resize, KTX2 compress, atlas
  |
  v
[4. COMPRESS] ── Draco mesh compression, quantize attributes
  |
  v
[5. VALIDATE] ── visual diff, file size check, runtime test
  |
  v
OUTPUT (optimized .glb)

Target File Size Budgets

PlatformMax File SizeMax PolygonsMax Texture Size
Mobile web2 MB50K triangles1024x1024
Desktop web5 MB200K triangles2048x2048
Desktop app20 MB500K triangles4096x4096
Hero asset (single)1 MB30K triangles1024x1024

Tool Selection

ToolBest ForInstall
gltf-transformFull pipeline, scriptable, Node.js APInpm i @gltf-transform/cli
gltfpackFast one-shot compressionnpm i -g gltfpack
BlenderManual mesh editing, UV repackingBlender 3.6+

Critical Warnings

NEVER skip the assessment step -- optimizing blindly wastes time and can produce worse results than the original.

NEVER apply Draco compression AND meshopt compression to the same file -- they are mutually exclusive. Choose ONE.

NEVER use KTX2 UASTC for diffuse color maps on mobile -- UASTC textures are 8-16 bytes/texel in VRAM. ALWAYS use ETC1S for color maps on mobile targets.

NEVER simplify meshes below 10% of original without visual validation -- aggressive simplification destroys silhouettes and UV mapping.

ALWAYS validate optimized models visually before shipping -- automated metrics cannot catch all visual artifacts.

ALWAYS keep the original unoptimized model in version control -- optimization is lossy and irreversible.


Step 1: Assessment

Before optimizing, ALWAYS gather these metrics:

# Using gltf-transform CLI
npx gltf-transform inspect model.glb

# Key output to check:
# - Mesh count and total triangle count
# - Texture count, dimensions, and format
# - Total file size (uncompressed)
# - Accessor count (indicates potential deduplication)
# - Animation track count

Assessment Decision Tree

File size > target budget?
├── YES: Textures > 50% of file size?
│   ├── YES → Start with texture optimization (Step 3)
│   └── NO → Start with mesh optimization (Step 2)
└── NO: Draw calls > 50?
    ├── YES → Merge meshes (join/flatten)
    └── NO → Only apply compression (Step 4)

Polygon Count Guidelines

Asset TypeTarget TrianglesNotes
Background prop100-500Minimal detail
Mid-ground object1K-5KVisible but not hero
Hero/focus object10K-50KHigh detail, close-up
Character15K-30KWith LOD chain
Full scene100K-300KAll objects combined
Architectural (BIM)200K-500KSimplified from CAD

Step 2: Mesh Optimization

gltf-transform Mesh Pipeline

ALWAYS run these operations in this order:

# 1. Remove duplicate accessors and unused data
npx gltf-transform dedup input.glb deduped.glb

# 2. Flatten node hierarchy (removes empty nodes)
npx gltf-transform flatten deduped.glb flat.glb

# 3. Join meshes sharing the same material
npx gltf-transform join flat.glb joined.glb

# 4. Weld vertices (merge vertices within tolerance)
npx gltf-transform weld joined.glb welded.glb --tolerance 0.0001

# 5. Simplify mesh (reduce triangle count)
npx gltf-transform simplify welded.glb simplified.glb \
  --ratio 0.5 \
  --error 0.001

# 6. Remove unused resources
npx gltf-transform prune simplified.glb output.glb

Combined Pipeline (Single Command)

npx gltf-transform optimize input.glb output.glb \
  --compress draco \
  --texture-compress ktx2

Mesh Simplification Settings

Quality LevelRatioError ToleranceUse Case
Minimal0.750.0005Subtle reduction, preserves detail
Moderate0.500.001Balanced quality/size
Aggressive0.250.005LOD1/LOD2 generation
Extreme0.100.01LOD3, distant objects only

Weld Settings

ToleranceEffect
0.0001Conservative -- merges only nearly-identical vertices
0.001Standard -- good for most models
0.01Aggressive -- may cause visible seams on hard edges

Step 3: Texture Optimization

Texture Decision Tree

Texture type?
├── Color/Diffuse (baseColorTexture)
│   ├── Mobile → ETC1S (KTX2), max 1024px
│   └── Desktop → UASTC (KTX2), max 2048px
├── Normal map
│   └── ALWAYS UASTC (KTX2) — ETC1S causes visible artifacts on normals
├── ORM (occlusion/roughness/metallic)
│   └── ETC1S (KTX2) — perceptual quality less critical
├── Emissive
│   └── ETC1S (KTX2) — unless HDR, then keep as-is
└── HDR environment
    └── Keep as .hdr or .exr — do NOT KTX2 compress

KTX2 Compression Commands

# ETC1S: smaller file, lower quality (color maps, ORM)
npx gltf-transform ktx2 input.glb output.glb \
  --slots "baseColorTexture,emissiveTexture,occlusionTexture" \
  --filter "baseColorTexture=etc1s" \
  --quality 128

# UASTC: larger file, higher quality (normal maps)
npx gltf-transform ktx2 input.glb output.glb \
  --slots "normalTexture" \
  --filter "normalTexture=uastc"

KTX2: ETC1S vs UASTC

PropertyETC1SUASTC
File sizeVery small (6-8x smaller)Moderate (2-4x smaller)
VRAM usageSmallLarge (8-16 bytes/texel)
QualityGood for colorNear-lossless
Decode speedFastRequires transcoding
Best forColor maps, ORM, emissiveNormal maps, detail textures

Texture Resize

# Resize all textures to max 1024x1024
npx gltf-transform resize input.glb output.glb --width 1024 --height 1024

# Resize only textures larger than 2048px
npx gltf-transform resize input.glb output.glb --width 2048 --height 2048

Step 4: Mesh Compression

Draco Compression

# Default Draco compression
npx gltf-transform draco input.glb output.glb

# Draco with quality settings
npx gltf-transform draco input.glb output.glb \
  --quantize-position 14 \
  --quantize-normal 10 \
  --quantize-texcoord 12 \
  --quantize-color 8

Draco Quantization Bits

AttributeDefaultHigh QualityAggressive
Position14 bits16 bits11 bits
Normal10 bits12 bits8 bits
TexCoord12 bits14 bits10 bits
Color8 bits10 bits6 bits

Higher bits = better quality, larger file. 14-bit position is sufficient for most models.

Quantize Without Draco

# Quantize attributes (reduces file size without Draco dependency)
npx gltf-transform quantize input.glb output.glb

Loading Draco-Compressed Models in Three.js

import { GLTFLoader } from 'three/addons/loaders/GLTFLoader.js';
import { DRACOLoader } from 'three/addons/loaders/DRACOLoader.js';

const dracoLoader = new DRACOLoader();
// ALWAYS set the decoder path — Draco uses WASM
dracoLoader.setDecoderPath('https://www.gstatic.com/draco/versioned/decoders/1.5.6/');
dracoLoader.preload();

const gltfLoader = new GLTFLoader();
gltfLoader.setDRACOLoader(dracoLoader);

gltfLoader.load('model-draco.glb', (gltf) => {
  scene.add(gltf.scene);
});

// ALWAYS dispose when done
dracoLoader.dispose();

Loading KTX2-Compressed Textures

import { KTX2Loader } from 'three/addons/loaders/KTX2Loader.js';

const ktx2Loader = new KTX2Loader();
// ALWAYS set the transcoder path — KTX2 uses WASM basis_transcoder
ktx2Loader.setTranscoderPath('https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/libs/basis/');
ktx2Loader.detectSupport(renderer);

const gltfLoader = new GLTFLoader();
gltfLoader.setKTX2Loader(ktx2Loader);

Step 5: Validation

Validation Checklist

After optimization, ALWAYS verify:

  1. File size -- meets target budget from Step 1
  2. Visual quality -- load in Three.js viewer, compare to original
  3. Bounding box -- same dimensions as original (no scale errors)
  4. Materials -- all textures load, no missing maps
  5. Animations -- all clips play correctly (if applicable)
  6. Performance -- measure draw calls, frame time
# Compare file sizes
ls -la original.glb optimized.glb

# Validate GLTF structure
npx gltf-transform inspect optimized.glb

# Check for errors
npx gltf-transform validate optimized.glb

LOD Generation

LOD Chain Strategy

LOD LevelScreen CoverageTriangle RatioDistance
LOD0>30% screen1.0 (full)Near
LOD110-30% screen0.5Medium
LOD23-10% screen0.25Far
LOD3<3% screen0.10Very far

Generating LODs with gltf-transform

# Generate LOD chain
npx gltf-transform simplify model.glb lod0.glb --ratio 1.0
npx gltf-transform simplify model.glb lod1.glb --ratio 0.5 --error 0.001
npx gltf-transform simplify model.glb lod2.glb --ratio 0.25 --error 0.005
npx gltf-transform simplify model.glb lod3.glb --ratio 0.10 --error 0.01

Three.js LOD Implementation

import * as THREE from 'three';

const lod = new THREE.LOD();

// ALWAYS add LODs from highest to lowest detail
lod.addLevel(meshLOD0, 0);    // distance 0 = closest
lod.addLevel(meshLOD1, 10);   // switch at 10 units
lod.addLevel(meshLOD2, 30);   // switch at 30 units
lod.addLevel(meshLOD3, 80);   // switch at 80 units

scene.add(lod);

// In render loop — ALWAYS call update for LOD switching
lod.update(camera);

gltfpack Alternative

For quick one-shot optimization without a pipeline:

# Install
npm install -g gltfpack

# Opti

---

*Content truncated.*

When not to use it

  • When the assessment step is skipped
  • When applying Draco compression and meshopt compression to the same file
  • When simplifying meshes below 10% of original without visual validation

Limitations

  • Never skip the assessment step
  • Never apply Draco compression AND meshopt compression to the same file
  • Never simplify meshes below 10% of original without visual validation

How it compares

This skill provides a structured, multi-step pipeline for GLTF optimization using specialized tools like gltf-transform and Draco, offering more targeted and effective optimization than general 3D model processing.

Compared to similar skills

threejs-agents-model-optimizer side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
threejs-agents-model-optimizer (this skill)03moReviewAdvanced
vercel-react-native-skills216moNo flagsIntermediate
mobile-games116moNo flagsIntermediate
vr-ar36moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry