render
earthtojake/text-to-cad
Render CAD and robot files in CAD Explorer with review links and snapshots.
What is render?
Opens generated or modified CAD and robot-description files (STEP, STL, GLB, URDF, SRDF, SDF, etc.) in CAD Explorer for visual review. Use this after CAD generation, URDF/SRDF workflows, or when you need to inspect 3D models, create snapshots, or generate parameter-animation GIFs.
- Start or reuse CAD Explorer viewer with automatic port management and liveness checks
- Return shareable Explorer URLs for live review of CAD and robot files
- Generate headless snapshots (PNG/GIF) with customizable themes, cameras, and dimensions
- Support STEP module parameter animation and interactive parameter visualization
- Render sections, wireframes, and labeled/dimensioned views via snapshot CLI
- Integrate MoveIt2 server for interactive IK and path-planning controls in SRDF reviews
How to install render
npx skills add https://github.com/earthtojake/text-to-cad --skill render- Node.js and npm installed
- Python 3 for snapshot CLI
- Workspace root path (optional but recommended for multi-file projects)
How to use render
- 1.Install the skill: npx skills add https://github.com/earthtojake/text-to-cad --skill render
- 2.Pass explicit file paths to the skill (STEP, STL, GLB, URDF, SRDF, SDF, DXF, etc.)
- 3.For live review: use `npm --prefix scripts/viewer run dev:ensure -- --file path/to/model.step` to start or reuse the viewer
- 4.For snapshots: use `python3 scripts/snapshot --input path/to/model.step --output /tmp/model.png --theme technical` with optional flags for camera, view labels, or parameters
- 5.For animated parameter GIFs: supply `--params` with animate object specifying parameter ranges, duration, FPS, and loop settings
- 6.Return the printed Explorer URL or snapshot file path to the user
Use cases
- Review a STEP file generated by a CAD skill and share the Explorer link
- Create a technical diagnostic snapshot of an assembly with high-contrast theme
- Generate an animated GIF showing STEP module parameter ranges (e.g., drive angle 0–1260°)
- Inspect a URDF robot model and verify joint structure before simulation
- Render a DXF file with custom thickness or bend options for manufacturing review
- CAD and mechanical engineers reviewing generated designs
- Roboticists validating URDF/SRDF robot descriptions
- Agents in CAD, URDF, SRDF, or SDF generation workflows
- Teams needing visual handoff and snapshot documentation
render FAQ
STEP, STP, GLB, STL, 3MF, DXF, URDF, SRDF, and SDF files.
No. Use `dev:ensure` which automatically probes, reuses existing servers, and binds to the first available port. Do not use raw `vite dev` or `vite preview` for agent handoffs.
Use `python3 scripts/snapshot --input model.step --output model.gif --params '{"values":{...},"animate":{"param":{"from":0,"to":360}},"durationSeconds":6,"fps":18,"loop":true}'` to animate STEP module sidecar parameters.
Use snapshots for generation review, visual feedback, and documentation. Use live Explorer links for handoff and when the user needs interactive controls (e.g., MoveIt2 IK planning).
Only if the user needs interactive IK or path-planning controls. Plain SRDF Explorer links and generation review do not require it.
Full instructions (SKILL.md)
Source of truth, from earthtojake/text-to-cad.
name: render
description: Start or reuse the CAD Explorer viewer, return review links, and create saved snapshots for explicit CAD and robot-description files. Use when rendering or visually reviewing .step, .stp, .glb, .stl, .3mf, .dxf, .urdf, .srdf, or .sdf files, especially when handed off from CAD, URDF, SRDF, or SDF generation skills.
Render
Use this skill to open generated or modified CAD and robot-description files in CAD Explorer. The expected input is one or more explicit file paths that already exist or were just generated by another skill.
Supported files: .step, .stp, .glb, .stl, .3mf, .dxf, .urdf, .srdf, .sdf.
Handoff Contract
- Accept explicit file paths from CAD, URDF, SRDF, SDF, SendCutSend, or standard-part workflows.
- Start or reuse CAD Explorer with
dev:ensure; do not assume a fixed port. Treatdev:ensureas the viewer liveness check for returned links. - Treat port reuse as mandatory: if
dev:ensurereports local binding/probing denial such asEPERMorEACCES, rerun the samedev:ensurecommand with the needed local-binding permission/escalation instead of choosing a new port yourself. - Do not use
npm run dev -- --port ..., rawvite dev, or rawvite previewfor normal agent handoffs; those bypass the reuse policy and can leave duplicate localhost Explorer servers running. - Return the printed Explorer URL for each requested file.
- For generation review or visual feedback, prefer the snapshot CLI over opening the viewer manually or using Playwright. Viewer links are still returned for handoff/live review.
- Generate GIFs only for CAD STEP-module parameter animation review. Otherwise use still snapshots, not GIFs.
- If startup fails, report the failure and let the owning skill continue with its non-GUI validation.
Commands
From this skill directory:
npm --prefix scripts/viewer run dev:ensure -- --file path/to/model.step
For saved headless snapshots, use the skill-level snapshot wrapper. It delegates into the viewer package's scripts/viewer/snapshot implementation:
python3 scripts/snapshot --job path/to/render-job.json
python3 scripts/snapshot --job -
Shortcut flags are available for common theme snapshots only:
python3 scripts/snapshot \
--input path/to/model.step \
--output /tmp/model.png \
--mode view \
--theme technical \
--camera iso \
--view-labels
STEP module sidecar parameters can be supplied with --params for stills or animated parameter GIFs:
python3 scripts/snapshot \
--input path/to/model.step \
--output /tmp/model.png \
--params '{"drive":180,"ringVisible":false}'
python3 scripts/snapshot \
--input path/to/model.step \
--output /tmp/model.gif \
--params '{"values":{"ringVisible":true},"animate":{"drive":{"from":0,"to":1260}},"durationSeconds":6,"fps":18,"loop":true}'
The snapshot CLI defaults to --theme technical, a flat, high-contrast theme intended for visual diagnosis rather than presentation. --theme accepts a built-in theme name, an inline JSON theme object, or a path to a JSON theme file; set theme.display.mode to solid or wireframe for surface/wire output. --params targets Explorer .step.js STEP module sidecar parameters, not Python/build123d regeneration parameters. The snapshot CLI chooses default dimensions by request context when width/height are omitted: diagnostic stills 1600x1200, simple unlabeled parts 1200x900, sections/labeled/dimensioned views at least 1600x1200, complex assemblies 1800x1200 or 1920x1440 via render.sizeProfile, presentation renders 2400x1600 or 2800x1800 via render.sizeProfile, STEP-module parameter GIFs 960x640, and contact sheets at least 2400 px wide. Keep transparent snapshots presentation-oriented unless transparency answers a concrete overlap, collision, or internal-relationship question. Use JSON jobs for custom theme settings, selections, sections, orbit settings, robot joint values, STEP module params, DXF thickness/bend options, and multi-output snapshots. Supported render modes are view, orbit, section, and list. Supported inputs are .step, .stp, .glb, .stl, .3mf, .dxf, .urdf, .srdf, and .sdf.
When the workspace root is known, pass it explicitly:
npm --prefix scripts/viewer run dev:ensure -- \
--workspace-root /path/to/workspace \
--file path/to/model.step
Use foreground Vite only for manual Explorer development:
npm --prefix scripts/viewer run dev
dev:ensure probes and checks registered local CAD Explorer servers across its full port range first, reuses one with a matching scan root whenever possible, and only then starts a detached Vite server on the first available port. Use the URL it prints.
MoveIt2 Controls
For SRDF Explorer reviews, start the MoveIt2 server only when the user needs interactive IK or path-planning controls. SRDF generation and plain Explorer links do not require it.
From this skill directory:
scripts/moveit2_server/setup.sh
scripts/moveit2_server/check-moveit2-server.sh
scripts/moveit2_server/run-moveit2-server.sh
The server defaults to ws://127.0.0.1:8765/ws. CAD Explorer connects to that URL in local dev unless EXPLORER_MOVEIT2_WS_URL or the browser ?moveit2Ws= query override is set.
For protocol and reporting details, read references/moveit2-server.md.
Useful Explorer environment variables:
EXPLORER_PORT
EXPLORER_PORT_END
EXPLORER_ROOT_DIR
EXPLORER_DEFAULT_FILE
EXPLORER_WORKSPACE_ROOT
EXPLORER_GITHUB_URL
EXPLORER_MOVEIT2_WS_URL
EXPLORER_ALLOWED_HOSTS
EXPLORER_SERVER_REGISTRY
When exposing CAD Explorer through remotehost/Tailscale Serve, set EXPLORER_ALLOWED_HOSTS to the Serve hostname before starting or restarting dev:ensure:
EXPLORER_ALLOWED_HOSTS=macbook-pro-108.tail3c8ded.ts.net \
npm --prefix scripts/viewer run dev:ensure -- \
--workspace-root /path/to/workspace \
--root-dir models \
--file path/to/model.urdf
Before returning the remote link, verify the host-header path locally:
curl -I -H 'Host: macbook-pro-108.tail3c8ded.ts.net' \
'http://127.0.0.1:PORT/?file=path/to/model.urdf'
The expected response is 200 OK.
If a remote phone loads the page shell but shows a blank/black screen through a Vite dev server, try a production preview before deeper rendering changes. Build with the same scan root and default file, start vite preview with the same EXPLORER_ALLOWED_HOSTS hostname, verify the Host-header path, then repoint remotehost/Tailscale Serve to the preview port:
EXPLORER_WORKSPACE_ROOT=/path/to/workspace \
EXPLORER_ROOT_DIR=models \
EXPLORER_DEFAULT_FILE=robots/elrobot/elrobot-follower.urdf \
npm --prefix scripts/viewer run build
cd scripts/viewer
EXPLORER_WORKSPACE_ROOT=/path/to/workspace \
EXPLORER_ROOT_DIR=models \
EXPLORER_DEFAULT_FILE=robots/elrobot/elrobot-follower.urdf \
EXPLORER_ALLOWED_HOSTS=macbook-pro-108.tail3c8ded.ts.net \
EXPLORER_PORT=4202 \
npm exec vite preview -- --host 127.0.0.1 --port 4202 --strictPort
This removes Vite's dev client and HMR websocket from the phone path while preserving the same ?file= URL.
Keep GUI work lightweight: start the server only when a link/review is needed, prefer dev:ensure for agent workflows, and do not stop an existing Explorer server unless the user asks.
Related skills
More from earthtojake/text-to-cad and the wider catalog.

sdf
Generate, validate, and hand off SDFormat models and worlds for Gazebo and other simulators.

sendcutsend
Preflight validation for SendCutSend.com DXF and STEP/STP orders against official specs and ordering rules.

srdf
MoveIt2 SRDF generation, validation, and planning-semantics workflow for robot manipulation.

step-parts
Search and download off-the-shelf CAD parts from step.parts catalog—actuators, motors, connectors, fasteners, and more.

urdf
Generate and validate URDF robot descriptions from Python sources with frame-aware kinematic modeling.

effect-ts
Use this skill whenever working in a repository that uses Effect, even if the current task is in a new file or the user does not explicitly ask for Effect help. Apply it to any work that should follow the repository's Effect patterns, conventions, architecture, or supporting tooling. Also use it for questions about Effect patterns, services, layers, schemas, streams, runtimes, or typed error handling.