Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
fandhe-ai avatar

Cadquery

  • 2 installs
  • 2 repo stars
  • Updated August 3, 2026
  • fandhe-ai/agent-reference-skills

Reference the CadQuery Python parametric CAD library for Workplane, Sketch, and Assembly APIs plus STEP/DXF/STL/glTF import and export.

About

A structured reference for CadQuery, a Python parametric 3D CAD scripting library built on OpenCascade, covering Workplane, Sketch, Assemblies with constraint solving, selectors, and multi-format I/O. A developer loads it when scripting CAD models in Python.

  • Workplane API: extrude, revolve, sweep, loft, fillet, chamfer, shell
  • Assembly constraint solver and STEP/DXF/STL/glTF export

Cadquery by the numbers

  • 2 all-time installs (skills.sh)
  • Ranked #1,291 of 1,879 Documentation skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/fandhe-ai/agent-reference-skills --skill cadquery

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2
repo stars2
Last updatedAugust 3, 2026
Repositoryfandhe-ai/agent-reference-skills

What it does

Reference the CadQuery Python parametric CAD library for Workplane, Sketch, and Assembly APIs plus STEP/DXF/STL/glTF import and export.

Files

SKILL.mdMarkdownGitHub ↗

CadQuery リファレンス

CadQuery — OpenCascade ベースの Python 製パラメトリック 3D CAD モデリングライブラリ。 スクリプトとして CAD モデルを記述でき、Workplane / Sketch / Assembly といった抽象レイヤー上で 制約ベースの設計を可能にする。STEP / DXF / STL / glTF など多様な業界標準フォーマットの入出力に対応。 公式ドキュメント (cadquery.readthedocs.io) の全 20 ページを 14 カテゴリに構造化。

ディレクトリ構造

.claude/skills/cadquery/
├── SKILL.md                                  ← このファイル(エントリーポイント)
└── references/
    ├── getting-started/README.md             ← 入門索引(5 ページ)
    ├── workplane/README.md                   ← Workplane page 索引(9 ページ)
    ├── sketch/README.md                      ← Sketch page 索引(2 ページ)
    ├── assemblies/README.md                  ← Assemblies page 索引(4 ページ)
    ├── free-function/README.md               ← Free Function API 索引(9 ページ)
    ├── visualization/README.md               ← Visualization 索引(5 ページ)
    ├── file-io/README.md                     ← File I/O 索引(15 ページ)
    ├── examples/README.md                    ← Examples 索引(9 ページ / 33 例カバー)
    ├── api/README.md                         ← API Reference + Cheatsheet 索引(14 ページ)
    ├── selectors/README.md                   ← Selectors Reference 索引(8 ページ)
    ├── classes/README.md                     ← Class Summary 索引(4 ページ)
    ├── cqgi/README.md                        ← CQGI 索引(7 ページ)
    ├── extending/README.md                   ← Plugin/拡張ガイド索引(10 ページ)
    └── misc/README.md                        ← Citing 索引(1 ページ)

探索手順

1. ユーザーのタスクに最も関連するカテゴリを特定する 2. そのカテゴリの README.md を読む 3. README.md 内の一覧から必要な個別ファイルを選んで読む 4. 必要に応じて関連ページのリンクを辿る

カテゴリ → README.md マッピング

タスク例カテゴリREADME パス
インストール、最初の一歩、設計原則、BREP/Workplane/Selectors の概念理解getting-startedreferences/getting-started/README.md
2D ワイヤ作成(lineTo, polyline, threePointArc 等)、3D 押し出し(extrude, revolve, sweep, loft)、ブール演算(cut, union)、フィレット・シェル、Workplane chain と Stackworkplanereferences/workplane/README.md
制約付きスケッチ(segment, arc, spline, constrain, solve)、フェース構築(rect, circle, polygon, slot)、Workplane との統合sketchreferences/sketch/README.md
部品組立、Assembly tutorial、Object locations、9 種制約(Point/Axis/Plane/PointInPlane/Fixed 等)、Assembly colorsassembliesreferences/assemblies/README.md
Workplane を使わない関数型 API(box/sphere/cylinder, fuse/cut, fillet/chamfer/shell, extrude/revolve/sweep/loft, text 等)free-functionreferences/free-function/README.md
可視化(show 関数、VTK 統合、スクリーンショット、Control points、Styling、Jupyter インライン表示)visualizationreferences/visualization/README.md
ファイル入出力(STEP/DXF/STL/glTF/SVG/AMF/3MF/TJS/VRML)、Assembly export, CQ-editor の show_object 規約file-ioreferences/file-io/README.md
33 個のモデリング例(Plate, Mirroring, Workplanes, Lofts, Holes, Bottle, Lego, Bearing, Enclosure, Braille, Cycloidal Gear 等)examplesreferences/examples/README.md
API 一覧(Sketch / Workplane 2D/3D / File / Iteration / Stack / Selectors / Assemblies のメソッドシグネチャ)、API Cheatsheetapireferences/api/README.md
Selector 文字列構文("%face", ">Z", "<<Y", "+Z", "X", "#X" 等)、組合せ演算子、Nth 系、Topological(ancestors/siblings)selectors
クラス階層(Shape, Vertex, Edge, Wire, Face, Shell, Solid, Compound, CompSolid, Mixin1D/3D, Vector, Matrix, Plane, Location, BoundBox, Color, Material, Selector 階層)classesreferences/classes/README.md
スクリプト実行環境、パラメータ駆動モデリング、show_object/debug、BuildResult、CQModelcqgireferences/cqgi/README.md
Plugin 開発、CadQuery 拡張、OpenCascade 直接呼び出し、Stack 操作、newObject/findSolid、map/apply/invokeextendingreferences/extending/README.md
引用情報(学術用途、Zenodo DOI)miscreferences/misc/README.md

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.