/install build123d-cad
build123d CAD
Parametric 3D CAD via build123d. This skill provides Python scripts for generating and measuring 3D solids. Run them with the exec tool.
Setup (first time only)
cd {baseDir}
uv venv --python 3.12
uv pip install build123d
Commands
All scripts use the venv Python at {baseDir}/.venv/bin/python. All output JSON to stdout.
Generate — export STEP/STL/SVG
{baseDir}/.venv/bin/python {baseDir}/scripts/cad_generate.py \
--script 'from build123d import *
with BuildPart() as result:
Box(100, 60, 40)' \
--format step \
--filename my_box
Output: { "success": true, "artifact_path": "...", "format": "step", "file_size_bytes": N, "bounding_box_mm": {...} }
Measure — dimensions, volume, mass
{baseDir}/.venv/bin/python {baseDir}/scripts/cad_measure.py \
--script 'from build123d import *
with BuildPart() as result:
Cylinder(10, 50)'
Output: { "success": true, "bounding_box_mm": {...}, "volume_mm3": N, "surface_area_mm2": N, "center_of_mass_mm": {...}, "face_count": N, "edge_count": N }
Section — 2D cross-section SVG
{baseDir}/.venv/bin/python {baseDir}/scripts/cad_section.py \
--script '...' \
--plane XY \
--offset 5.0
Output: { "success": true, "artifact_path": "...", "plane": "XY", "offset_mm": 5.0 }
API Reference — build123d cheatsheet
{baseDir}/.venv/bin/python {baseDir}/scripts/cad_api.py
Output: JSON with primitives, operations, selectors, export functions. Call this first if you need to learn what's available.
Validate — interference, clearance, swept-volume collision
Check an assembly of multiple parts for interference, minimum clearance, and moving-part collisions.
{baseDir}/.venv/bin/python {baseDir}/scripts/cad_validate.py \
--script '...' \
--mode full \
--min-clearance 1.0
Modes: static (Boolean intersection between all pairs), clearance (bounding box gap), sweep (rotate moving parts through angular range, check collisions), full (all three, default).
The script must define parts = {"name": solid, ...} dict. Optionally define sweeps list for moving parts:
from build123d import *
with BuildPart() as enclosure:
Box(100, 80, 50)
offset(amount=-3, openings=enclosure.faces().sort_by(Axis.Z)[-1:])
with BuildPart() as pcb:
with Locations((0, 0, 5)):
Box(60, 40, 2)
with BuildPart() as servo_arm:
with Locations((30, 0, 25)):
Box(5, 20, 3)
parts = {
"enclosure": enclosure.part,
"pcb": pcb.part,
"servo_arm": servo_arm.part,
}
sweeps = [
{
"name": "servo_arm",
"axis_origin": (30, 0, 25),
"axis_direction": (0, 1, 0),
"angle_start": -45,
"angle_end": 45,
"angle_step": 5,
},
]
Output: { "verdict": "PASS|WARN|FAIL", "static_interference": {...}, "clearance": {...}, "swept_volume": {...} }
- PASS — no interference, clearance OK
- WARN — clearance below threshold but no hard collision
- FAIL — parts intersect or moving parts collide during sweep
Swept volumes are exported to ~/.openclaw/workspace/cad-output/swept_\x3Cname>.step for visualization.
Script Format
All single-part scripts must assign the final solid to result via a BuildPart context:
from build123d import *
with BuildPart() as result:
Box(100, 60, 40)
fillet(result.edges().filter_by(Axis.Z), radius=5)
with Locations((0, 0, 40)):
CounterBoreHole(radius=5, counter_bore_radius=8, counter_bore_depth=3, depth=40)
For validation scripts, define parts dict (and optionally sweeps list) instead of result.
All dimensions in millimeters. Exported files go to ~/.openclaw/workspace/cad-output/.
Workflow
- If unsure about build123d API, run
cad_api.pyfirst for the cheatsheet. - Write a parameterized script (no magic numbers).
- Run
cad_measure.pyto verify dimensions before exporting. - For multi-part assemblies: run
cad_validate.py --mode fullbefore exporting. Fix any FAIL/WARN before proceeding. - Run
cad_generate.pywith the desired format (step for CAD, stl for 3D printing). - For clearance visualization, run
cad_section.pyat relevant planes. - Report artifact paths and validation verdict.
Design Rules
- Parameterize all dimensions for reusability.
- Add fillets to stress concentrations (min 1mm for plastic, 0.5mm for metal).
- Include mounting features (bosses, standoffs, screw posts) where applicable.
- Specify material and process assumptions in comments.
- Output both the script and the exported file.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install build123d-cad - 安装完成后,直接呼叫该 Skill 的名称或使用
/build123d-cad触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Build123d Cad 是什么?
Parametric 3D CAD via build123d. Generate STEP, STL, SVG from Python scripts. Use when the user asks to design, model, create, or export 3D parts, enclosures... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 424 次。
如何安装 Build123d Cad?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install build123d-cad」即可一键安装,无需额外配置。
Build123d Cad 是免费的吗?
是的,Build123d Cad 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Build123d Cad 支持哪些平台?
Build123d Cad 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Build123d Cad?
由 wngfra(@wngfra)开发并维护,当前版本 v1.1.2。