Agent skill

threejs-helpers

Debug and visualization helpers in three.js Core Helpers (AxesHelper, GridHelper, CameraHelper, light helpers, SkeletonHelper, bounding box helpers, PlaneHelper, PolarGridHelper, ArrowHelper) and Addons Helpers (VertexNormalsHelper, VertexTangentsHelper, RectAreaLightHelper, LightProbeHelper, ViewHelper, OctreeHelper, TextureHelper, PositionalAudioHelper, AnimationPathHelper, RapierHelper). Use only for development and editor overlays—not for shipping art; for gizmo-style manipulation use threejs-controls.

Stars 254
Forks 41

Install this agent skill to your Project

npx add-skill https://github.com/partme-ai/full-stack-skills/tree/main/skills/threejs-skills/threejs-helpers

SKILL.md

When to use this skill

ALWAYS use this skill when the user mentions:

  • Visualizing axes, grids, camera frusta, shadow cameras, light directions
  • Showing skeleton bones, bounding boxes, normals/tangents for mesh inspection
  • Light probe or rect area visualization via helper classes

IMPORTANT: helpers vs production meshes

  • Helpers are debug objects; do not use as final scene geometry.

Trigger phrases include:

  • "AxesHelper", "GridHelper", "CameraHelper", "SkeletonHelper", "VertexNormalsHelper"
  • "辅助线", "法线显示", "包围盒调试"

How to use this skill

  1. Attach helper to the object it describes (e.g., CameraHelper(light.shadow.camera)).
  2. Update when targets move — some helpers need per-frame refresh.
  3. Gate behind debug flags — remove helpers in production builds to save draw calls.
  4. Performance — helpers add draw calls; disable when profiling performance issues.
  5. Addons — import from three/addons/helpers/... paths per threejs-dev-setup.

Example: Debug flag pattern for conditional helpers

javascript
import * as THREE from 'three';

const DEBUG = import.meta.env.DEV; // Vite-style; adapt for your bundler
const debugGroup = new THREE.Group();
debugGroup.visible = DEBUG;
scene.add(debugGroup);

// Add helpers only in development
if (DEBUG) {
  debugGroup.add(new THREE.AxesHelper(5));
  debugGroup.add(new THREE.GridHelper(10, 10));

  // Shadow camera helper for directional light
  const shadowHelper = new THREE.CameraHelper(directionalLight.shadow.camera);
  debugGroup.add(shadowHelper);
}

// Toggle helpers at runtime via console or GUI
// debugGroup.visible = !debugGroup.visible;

See examples/workflow-light-camera-helpers.md.

Doc map (official)

Docs section Representative links
Helpers https://threejs.org/docs/AxesHelper.html
Helpers https://threejs.org/docs/GridHelper.html
Helpers https://threejs.org/docs/CameraHelper.html
Helpers https://threejs.org/docs/SkeletonHelper.html

Scope

  • In scope: Core + Addons helpers for visualization.
  • Out of scope: Production meshes or shipping art (threejs-geometries, threejs-lights); orbit/transform gizmo behavior (threejs-controls); editor UX parity with DCC tools; physics debug beyond helper stubs.

Common pitfalls and best practices

  • Too many helpers obscures view—toggle per subsystem.
  • Wrong attachment parent misaligns helper transforms.
  • Helpers inherit scene graph transforms—parent under a debug group to batch hide/show.
  • Some helpers duplicate geometry cost; strip in production or use #ifdef DEBUG style flags.
  • CameraHelper for shadow cameras must reference light.shadow.camera, not the main view camera.

Documentation and version

Helpers are listed under Helpers (core) and Addons → Helpers in three.js docs. They are for debug only; production meshes and lighting should use real geometry/lights (threejs-geometries, threejs-lights).

Agent response checklist

When answering under this skill, prefer responses that:

  1. Link the helper class (AxesHelper, CameraHelper, …) being used.
  2. State that helpers are not shipping art—strip or gate behind debug flags.
  3. Pair shadow/light helpers with threejs-lights tuning workflows.
  4. Mention performance cost when many helpers are enabled.
  5. Import paths follow threejs-dev-setup addon conventions.

References

Keywords

English: helper, debug, axes, grid, skeleton, normals, light helper, three.js

中文: 辅助、调试、坐标轴、网格、骨架、法线、Helper、three.js

Expand your agent's capabilities with these related and highly-rated skills.

partme-ai/full-stack-skills

ocrmypdf-batch

OCRmyPDF batch processing skill — process multiple PDFs, Docker automation, shell scripting, and CI/CD integration. Use when the user needs to OCR many PDFs, set up automated OCR pipelines, or integrate OCR into workflows.

254 41
Explore
partme-ai/full-stack-skills

ocrmypdf-optimize

OCRmyPDF optimization skill — compress PDFs, configure PDF/A output, JBIG2 encoding, and lossless optimization. Use when the user needs to reduce PDF file size, create archival PDF/A files, or optimize OCR output.

254 41
Explore
partme-ai/full-stack-skills

ocrmypdf-image

OCRmyPDF image processing skill — deskew, rotate, clean, despeckle, remove border from scanned documents. Use when the user needs to improve scanned PDF quality, fix skewed pages, remove noise, or clean up scanned documents before OCR.

254 41
Explore
partme-ai/full-stack-skills

ocrmypdf-api

OCRmyPDF Python API and plugin skill — use OCRmyPDF programmatically from Python, integrate with applications, and extend with plugins (EasyOCR, PaddleOCR, AppleOCR). Use when the user needs to call OCRmyPDF from Python code, build OCR pipelines, or use alternative OCR engines.

254 41
Explore
partme-ai/full-stack-skills

ocrmypdf

OCRmyPDF core skill — add searchable OCR text layer to scanned PDFs, convert images to searchable PDFs, support 100+ languages via Tesseract. Use when the user needs to OCR a PDF, make a scanned PDF searchable, or extract text from scanned documents.

254 41
Explore
partme-ai/full-stack-skills

svelte

Guides Svelte and SvelteKit development including reactive components, stores, transitions, lifecycle hooks, SSR, file-based routing, and deployment. Use when the user needs to build Svelte components, create SvelteKit applications, implement reactivity patterns, or configure Svelte with Vite.

254 41
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results