Install
$ agentstack add skill-rawwerks-vibecad-render-glb ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Render GLB to Image
Render 3D GLB files to PNG images so agents can visually verify their work.
Zero-Setup with bunx
bunx render-glb model.glb output.png
No installation required. First run downloads the tool, subsequent runs are instant.
Why This Matters
Agents can generate 3D models but typically can't see them. This creates a visual verification loop:
- Generate model → export GLB
- Render GLB → PNG
- Read PNG → see what you built
- Iterate if needed
Basic Usage
# Render with defaults (good for most cases)
bunx render-glb model.glb preview.png
# Then read the image to see your work
# (use Read tool on preview.png)
Options
bunx render-glb [options]
Options:
--width Image width in pixels (default: 800)
--height Image height in pixels (default: 600)
--background Background color (default: #808080)
Visual Verification Workflow
When building 3D models, use this pattern:
# 1. Build your model
from build123d import Box, Sphere, export_gltf
model = Box(20, 20, 20) + Sphere(radius=15)
export_gltf(model, "./model.glb", binary=True)
# 2. Render to image
bunx render-glb model.glb preview.png
# 3. Read the image (using Read tool)
# Now you can SEE what you built and verify it's correct
Integration with CAD Skills
This skill complements:
- build123d - Python CAD modeling
- Any tool that exports GLB format
Typical workflow:
- Use CAD skill to generate geometry
- Export to GLB
- Use render-glb to verify visually
- Iterate if model isn't correct
Links
- npm: https://www.npmjs.com/package/render-glb
- GitHub: https://github.com/rawwerks/render-glb
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: rawwerks
- Source: rawwerks/VibeCAD
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.