step-parts
earthtojake/text-to-cad
Search and download off-the-shelf CAD parts from step.parts catalog—actuators, motors, connectors, fasteners, and more.
What is step-parts?
Queries the step.parts API to find, evaluate, and download purchasable CAD components by name, standard, or attribute. Use this before creating placeholder geometry to resolve part names, fetch canonical STEP files, and verify checksums.
- Search step.parts catalog by fuzzy tokens, standards, aliases, and facets (category, family, standard, tag)
- Resolve ambiguous part names and model aliases (e.g., STS3215 → ST3215, Feetech variants)
- Download canonical STEP files with SHA256 checksum verification
- Inspect part attributes (thread, length, bore, material, dimensions) from API records
- Retry network failures once before reporting unavailability
- Hand off downloaded STEP files to $cad-viewer skill when installed
How to install step-parts
npx skills add https://github.com/earthtojake/text-to-cad --skill step-parts- Python 3.x (for bundled download_step_part.py script)
- Network access to https://api.step.parts and https://www.step.parts
- Optional: $cad-viewer skill installed for automatic CAD file handoff
How to use step-parts
- 1.Identify the part name, model number, standard, or attribute (e.g., 'M3 socket head 12mm')
- 2.Call the search endpoint or use scripts/download_step_part.py with query terms and optional facet filters
- 3.Review returned records (id, name, standard, attributes) to confirm the best match
- 4.If a STEP file is needed, download via stepUrl and verify the SHA256 checksum
- 5.Pass the local file path to $cad-viewer to display the part in CAD Viewer
Use cases
- Find and download an M3 socket head cap screw STEP file before modeling a fastened assembly
- Search for a Feetech servo by fuzzy model number and retrieve its exact dimensions and STEP geometry
- Discover standard bearings, connectors, or electronics boards matching design requirements
- Verify part availability and attributes before committing to a simplified placeholder model
- Batch download multiple matching parts from a single search result
- CAD/mechanical engineers designing assemblies with off-the-shelf components
- Hardware developers needing accurate STEP geometry for purchased parts
- Agents (Claude Code, Cursor) automating part discovery in CAD workflows
step-parts FAQ
The API ANDs query tokens, so start specific but not overconstrained (e.g., 'M3 SHCS 12'). For actuators, retry common aliases, dropped letters, vendor names, and family facets before treating a result as a miss.
Use scripts/download_step_part.py with --download flag, or fetch the stepUrl from the API record directly. The script verifies SHA256 checksums when available.
Retry once with network permission. If still unreachable, record the miss and use documented placeholder geometry. Do not report unavailability unless the API was reachable and returned no candidates.
Yes. Use repeatable --tag, --category, --family, or --standard flags with the downloader script, or pass facet parameters to /v1/parts. Standards can be queried as 'ISO 4762' or 'ISO4762'.
Always hand the file path to $cad-viewer if installed. It will open CAD Viewer and return links to the file. If $cad-viewer is unavailable, report that instead of silently skipping the handoff.
Full instructions (SKILL.md)
Source of truth, from earthtojake/text-to-cad.
name: step-parts description: Find, evaluate, and download common purchasable CAD parts from step.parts, including named off-the-shelf actuators, servos, motors, electronics boards, connectors, screws, bolts, nuts, washers, bearings, standoffs, and other catalog components. Use when Codex needs to search the hosted step.parts catalog before creating simplified placeholder geometry, resolve fuzzy part names, standards, aliases, or dimensions, choose a matching part, fetch a canonical .step file, verify checksums, or use the step.parts API/OpenAPI/catalog endpoints for standard part discovery.
CAD Parts
Provenance: maintained in earthtojake/text-to-cad. Use the installed local skill files as the runtime source of truth; the repository link is only for provenance and release review.
Overview
Use the hosted step.parts machine endpoints instead of scraping HTML or relying on local repository files. Treat https://api.step.parts as the canonical API origin and https://www.step.parts as the site/static-asset origin unless the user provides a different hosted mirror. Network/DNS failures are inconclusive: if api.step.parts cannot be reached from the sandbox, retry once with network permission before reporting a miss or using placeholder geometry. Do not describe a part as unavailable unless the API was reachable and returned no relevant candidates.
When a CAD assembly includes named off-the-shelf actuators, servos, motors, electronics boards, connectors, or other purchasable components, search step.parts before creating simplified placeholder geometry. For named servos, motors, and actuators, search both exact model strings and common aliases/vendor spellings before giving up. For example, STS3215 may also appear as ST3215, 3215, Waveshare Feetech ST3215, or under family=feetech. If the API was reachable and no exact or near-exact match is available, record the search miss and then use a documented envelope or simplified stand-in.
Quick Workflow
- Interpret the requested part into search terms and optional facets:
qfor fuzzy tokens, standards, aliases, dimensions, source/product URLs, and attribute names/values.category,family,standard, ortagwhen the user gives an exact facet.
- Search
/v1/partsand inspectitems,total, andfacets. For actuator model numbers, retry likely aliases, dropped letters, vendor names, and relevant family facets before treating an empty result as a miss. - If results are ambiguous, present the best few options with
id,name,standard, and key attributes before choosing. If one result clearly matches, return the selected record details without downloading unless the user asked for a local STEP file. - When an exact or near-exact off-the-shelf actuator model is found, prefer downloading and using its STEP file unless there is a clear assembly-time reason to use a simplified envelope. Record that choice explicitly.
- When the user asks to download or save a STEP file, download its
stepUrl, then verify the file with the record'ssha256when present. - Return the local path when downloaded, plus the selected part id and page/API URLs so the user can trace provenance.
CAD Viewer Handoff
After completing step.parts work that creates or updates a local .step or .stp file, you must ALWAYS hand the explicit file path to $cad-viewer when that skill is installed. $cad-viewer must start CAD Viewer if it is not already running and return link(s) to the relevant created or updated file(s); if $cad-viewer is unavailable or startup fails, report that instead of silently omitting the handoff.
Bundled Downloader
Use scripts/download_step_part.py for deterministic search, download, and checksum verification:
python scripts/download_step_part.py "M3 socket head 12" --download
python scripts/download_step_part.py --id iso4762_socket_head_cap_screw_m3x12 --download
python scripts/download_step_part.py "bearing 608zz" --limit 5
Useful options:
--origin: overridehttps://api.step.partsonly when the user provides another hosted API origin.--tag,--category,--family,--standard: repeatable facet filters.--out-dir: override the download directory when the user asks for a specific destination.--all: with--download, download every result on the returned page as individual STEP downloads.--overwrite: replace an existing output file.
The script prints JSON to stdout. For searches, it prints matched records. For downloads, it prints saved file paths, checksums, and source URLs.
API Reference
Read references/step-parts-api.md when you need endpoint details, field meanings, or query semantics. Prefer:
/v1/partsfor filtered search with absolute asset URLs./v1/parts/{id}for one enriched record.- Returned
stepUrlfor STEP downloads. /v1/catalog/parts.index.jsonfor a compact discovery index./v1/catalog/schemafor field and family attribute meanings./v1/openapi.jsonwhen generating a client or tool.
Search Guidance
- Query tokens are ANDed by the API, so start specific but not overconstrained. For example, use
M3 SHCS 12before adding exact family and standard filters. - Values within one facet are ORed together, and selected
tag,category,family, andstandardfields are ANDed together. Use exact facets to narrow within known categories, then rank manually by name and attributes. - Standards can be queried as
ISO 4762,ISO4762, or the exactstandard.designation. - The
attributesobject contains family-specific facts such asthread,lengthMm,bore1Mm,material,profileSeries,slotSizeMm, and dimensions in millimeters. - Part, GLB, and PNG URL patterns are predictable on
https://www.step.parts; STEP URLs are environment-aware and may resolve to GitHub LFS media in production. Use catalog/APIstepUrlfor downloads.
Related skills
More from earthtojake/text-to-cad and the wider catalog.
cad
Create, modify, and validate parametric CAD parts and assemblies from natural language, technical drawings, or STEP files.
sdf
Generate, validate, and hand off SDFormat models and worlds for Gazebo and other simulators.
urdf
Generate and validate URDF robot descriptions from Python sources with frame-aware kinematic modeling.
srdf
MoveIt2 SRDF generation, validation, and planning-semantics workflow for robot manipulation.
sendcutsend
Preflight validation for SendCutSend.com DXF and STEP/STP orders against official specs and ordering rules.
cad-viewer
Start a local CAD Viewer and generate review links for STEP, STL, implicit CAD, G-code, URDF, and other model files.