Claude Code skill and diagnostics-first Build123d wrapper for LLM-driven CAD iteration.
Project description
cad-khana
A CLI tool and agent skill for designing 3D-printable mechanisms in Build123d, built for LLM-driven iteration.
khana (ख़ाना) is a Hindustani suffix meaning "house" or "workshop" — as in kar-khana (factory) or dawa-khana (pharmacy). cad-khana is a place for CAD.
Status: early. API may still churn.
What it does
cad-khana wraps Build123d with a diagnostics-first workflow. You
(or an LLM agent) write Python scripts that declare parts and
assemblies; the khana CLI runs them, exports STL/STEP, and writes
a structured diagnostics.json reporting interferences, clearances,
wall thickness, and overhangs. Assertions in the script become build
failures when violated, so geometric constraints are enforced, not
hoped for.
The tool is designed to close a specific gap: LLMs can reason about
CAD geometry from code but need explicit feedback on the things a
human would catch visually. Computed diagnostics cover the scalar
questions; khana render produces PNGs a multimodal agent can read
for shape-level questions that numbers don't express well.
Why it exists
Existing code-CAD tools (OpenSCAD, CadQuery, Build123d) assume a human with a render window. For agent-driven design, a different feedback loop works better:
- Agent writes a Build123d script.
khana buildruns it, exports geometry, writes diagnostics.- Agent reads diagnostics, edits the script, repeats.
- When a shape-level question arises that diagnostics can't answer,
the agent runs
khana renderand reads the PNGs directly. - When the design is clean, a human reviews it in the OCP viewer.
Humans stay in the loop for taste and physical-world validation; correctness iteration happens in code.
CLI
khana build <path> # run script, export, write diagnostics.json
khana check <path> # diagnostics only, no export
khana view <path> # build + push to OCP viewer
khana render <path> # orthographic/iso PNGs for the agent to read
khana diff <old> <new> # diff two diagnostics.json files
Install
Claude Code skill (recommended for agent use)
Copy both skills into your project (loads only in this project's context):
git clone --depth=1 https://github.com/cyberchitta/cad-khana /tmp/cad-khana
cp -r /tmp/cad-khana/skills/cad-khana .claude/skills/
cp -r /tmp/cad-khana/skills/cad-khana-setup .claude/skills/
rm -rf /tmp/cad-khana
Or for all projects (loads everywhere):
git clone --depth=1 https://github.com/cyberchitta/cad-khana /tmp/cad-khana
cp -r /tmp/cad-khana/skills/cad-khana ~/.claude/skills/
cp -r /tmp/cad-khana/skills/cad-khana-setup ~/.claude/skills/
rm -rf /tmp/cad-khana
Then ask Claude to run /cad-khana-setup — it installs the khana CLI via uv tool install and removes itself. After that, the cad-khana skill is loaded automatically when you ask Claude for CAD work.
Manual install
From a local checkout (for development):
uv sync
uv run khana build assembly.py
As a global tool from GitHub:
uv tool install git+https://github.com/cyberchitta/cad-khana
Viewer setup (for humans)
khana view pushes geometry to the OCP CAD Viewer, a standalone web
server. The easiest host is the
VS Code extension,
which embeds the viewer in an editor pane.
Any editor that can launch a task and open a browser tab also works:
run python -m ocp_vscode (from the cad-khana environment) to start
the viewer, then bind khana view to a task (e.g. a Zed
tasks.json).
The viewer is only needed for khana view; khana build, khana check, and khana render work without it.
Example
from build123d import *
from cad_khana.core.assembly import Assembly
from cad_khana.core.build import build
def housing(width: float = 40, depth: float = 30, height: float = 20):
with BuildPart() as p:
Box(width, depth, height)
return p.part
def lever(length: float = 25):
with BuildPart() as p:
Box(length, 5, 3)
return p.part
assembly = (
Assembly()
.add("housing", housing(), location=Location((0, 0, 0)))
.add("lever", lever(), location=Location((0, 0, 12)))
.assert_no_interference("lever", "housing")
.assert_clearance("lever", "housing", min_mm=0.2)
.assert_min_wall("housing", min_mm=1.5)
)
build(assembly, out="outputs/")
Project documents
CLAUDE.md— operational instructions for agents working on this repo.NOTES.md— design rationale, key decisions, open questions.skills/cad-khana/SKILL.md— agent-facing guide to using the tool.skills/cad-khana-setup/SKILL.md— one-shot installer skill that self-deletes after runninguv tool install.
License
Apache-2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cad_khana-0.0.2.tar.gz.
File metadata
- Download URL: cad_khana-0.0.2.tar.gz
- Upload date:
- Size: 113.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a43c05e7569f7adeaf33b7cb935d3d9bd356bb533c103537099f278474c89465
|
|
| MD5 |
589a2a1d994607f0912f6313c3d1d1a9
|
|
| BLAKE2b-256 |
84fc9474e66e22de9b3e15403ed2f52b45beffe97deaa1c3003a8ce4b3ca628e
|
File details
Details for the file cad_khana-0.0.2-py3-none-any.whl.
File metadata
- Download URL: cad_khana-0.0.2-py3-none-any.whl
- Upload date:
- Size: 22.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64aa75e368bae35d253f466056d17225e823848477a34d19be711b0308702ea3
|
|
| MD5 |
17ebe5694962cdf6fcd50ff76cf72697
|
|
| BLAKE2b-256 |
3a668bb9872e31b6c370610ed3eada768397c8cfee8f0c1cb088622827a941d4
|