Skip to content
Design
Skill

/engineering-drawing

Make an engineering drawing of a part as a PDF - orthographic views with hidden lines and centre marks, real dimensions, hole callouts, notes and a title block on ISO sheets, all projected from the part's geometry so the drawing follows the model. Use when the user asks for a

From plugin
cad
16k14 skills
Install
$ npx -y skills add earthtojake/text-to-cad --skill engineering-drawing --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/engineering-drawing

Context preview

The summary Claude sees to decide when to auto-load this skill.

Make an engineering drawing of a part as a PDF - orthographic views with hidden lines and centre marks, real dimensions, hole callouts, notes and a title block on ISO sheets, all projected from the part's geometry so the drawing follows the model. Use when the user asks for a

SKILL.md

engineering-drawing.SKILL.md
name: engineering-drawing
description: Make an engineering drawing of a part as a PDF - orthographic views with hidden lines and centre marks, real dimensions, hole callouts, notes and a title block on ISO sheets, all projected from the part's geometry so the drawing follows the model. Use when the user asks for a drawing, a dimensioned sheet, shop or manufacturing drawings, a print, or "2D views of this part".

Engineering drawing

Provenance: maintained in [earthtojake/text-to-cad](https://github.com/earthtojake/text-to-cad). Use the installed local skill files as the runtime source of truth.

An engineering drawing is a DOCUMENT derived from a part. `cadgen.eng_drawing` projects views from the part's geometry, places dimensions between points ON that geometry, finds centre marks on it, and lays the result out on an ISO sheet with a frame and a title block. Change the model, rerun the drawing script, and the views, hidden lines and measured values move with it. Nothing on the sheet is drawn by hand, and nothing on it is a number you typed unless you chose to override a value.

**The output is one PDF.** That is what a shop receives and what every operating system opens. No DXF is written, nothing is paired or linked, and there is no CLI: the script is the interface. `$dxf` makes cut layouts and flat patterns, which are toolpaths, not documents; the two are different jobs.

Workflow

1. Get the part. `cadgen.read_step(Path(__file__).parent / "../STEP/part.step")` reads the artifact a `@step` model wrote (run `python <model>.py` first); a live build123d shape works just as well. The drawing documents geometry, it does not build it. 2. Write `<name>_drawing.py` beside the model, from [the template](references/sheet-api.md#template). Import the model facts the dimensions reference (hole pitch, overall size, wall) from the model module rather than retyping them, so moving a feature moves its dimension. 3. Place views with `sheet.three_views(part, iso=True)`, which returns FOUR views: top, front and right in third angle with room for two rows of dimensions, plus an isometric in the free corner. `sheet.three_views(part)` returns three. Use `sheet.view(part, name, at=(x, y))` (sheet millimetres from the bottom-left corner; A3 is 420 × 297, A4 is 297 × 210) only for a custom layout. 4. Dimension what a maker needs, in MODEL coordinates: overall size per view (`view.overall()`), feature positions and sizes (`view.dim`, with `tol=` or `fit=` where the design requires one), holes as callouts (`view.hole`: thru, depth, counterbore, countersink, thread), and notes with leaders (`view.note`). Leave `text` unset so the dimension is measured; give a value only where the model does not define it. Leave `offset` unset too and the dimension takes the next free row outside the view; pass one only to place a dimension deliberately, and remember it is measured from the dimension's own points, not the view's edge. Keep notes few and short; one wider than the sheet's note column is refused, and `notes=` takes a LIST (`notes="BREAK EDGES"` is a sequence of eleven characters, so it is refused too). 5. Run `python <name>_drawing.py`. It prints the PDF it wrote, and **anything it noticed while drawing** — read those first:

  • *"measures blank paper"*: the dimension's model points do not land on the

view's geometry. Almost always the part was built from a corner and the script assumed it was centred. Check the part's bounding box.

  • *"annotation overlaps"*: two callouts print on top of each other, usually

one view's outermost dimension against the label of the view above it. Pass a bigger `three_views(gap=...)` or place one with `offset=`. The text is measured as the renderer draws it, glyph by glyph, so this fires on ink and not on markup: a chain of toleranced dimensions is silent when the values clear each other.

Steps 3 and 5 stand on their own: a sheet of views with no dimensions on it yet is a drawing, and writes its PDF.

When running unattended, set `MPLCONFIGDIR` to a writable directory so matplotlib's font cache does not warn. 6. **Read the PDF** and fix what collides. Check that no dimension text sits on a view, that hidden lines appear where features are behind faces, that every hole has a centre mark, and that no leader crosses the part. Very small dimensions (a few mm) put their value on their own extension line; dimension the larger feature instead. Move `at=` or `offset=` and rerun.

What the sheet contains

  • Layers with meaning: `VISIBLE` (heavy outline), `HIDDEN` (dashed), `CENTER`

(centre marks), `DIM`, `NOTES`, `TITLE`, `SHEET` (frame), each printed at its own weight — 0.5 mm down to 0.18 mm, so thick reads against thin on paper. An edge is drawn once: a silhouette that the kernel returns as both visible and hidden stays on `VISIBLE`. Hidden TANGENT transitions are not drawn at all — a fillet running into a face, or the seam where a cylinder closes on itself, marks nothing a shop can see, and drawn dashed it reads as a hidden edge that is not there (on a bore, as a line down the hole's own axis).

  • Dimensions measured from the geometry, with filled arrowheads and witness

lines, and true-size values at any drawing scale.

  • A title block with title, part number, material, author, scale, units,

projection, revision, `SHEET n OF m` and the drawing function's name; numbered notes above it (the general tolerance, when given, is note 1); a revision table top-right when `revisions=` is given. Text longer than its cell is set smaller, and cut with an ellipsis rather than overrun.

  • PDF bytes that are a function of the content: no creation date is stamped, so

an unchanged drawing rebuilds to an identical file.

What fails loudly

The script raises rather than writing a wrong or missing document:

  • Views that run off the frame,
Read more
Ships withcad

text-to-cad is a library of agent skills for generating, inspecting, sourcing, slicing, and handing off CAD and robot-description artifacts from local project files. CAD URDF SRDF / MoveIt2

Get the whole plugin
Stats
16,276
Stars
1,690
Forks
Active
Maintenance
Python
Language
MIT
License
4h ago
Last commit
5mo ago
Created
21d ago
Added

Repo: earthtojake/text-to-cad

Other skills on cad.

smui
Skill

smui

The former Nord / frosted-glass SMUI styling has been replaced by the neutral light and charcoal dark palette. Follow the current viewer contracts in [the app…

@earthtojake@earthtojakeView Skill
cad-viewer
Skill

cad-viewer

Start CAD Viewer and return review links for CAD and robot-description files. Use when visually reviewing `.step`, `.stp`, `.glb`, `.stl`, `.3mf`, `.dxf`,…

@earthtojake@earthtojakeView Skill
cad
Skill

cad

Create/edit parametric CAD models, organize CAD projects, export STEP/STL/3MF/GLB files, resolve prompt references, and measure geometry with cadgen.

@earthtojake@earthtojakeView Skill
dfam-check
Skill

dfam-check

Measure mesh files against Design for Additive Manufacturing (DfAM) rules and report printability findings per process (FDM, SLS, SLA/DLP, metal PBF, MJF). Use…

@earthtojake@earthtojakeView Skill
dfm
Skill

dfm

Design-for-manufacturing review of a part for sheet metal, CNC machining, or injection molding - bends, reliefs and flat patterns; machining access, internal…

@earthtojake@earthtojakeView Skill