SolidWorks Design
Treat this skill as the entry point for every SolidWorks task. Use the available
SolidWorks automation surface for CAD operations; this plugin supplies the
engineering and knowledge workflow rather than a SolidWorks installation.
Start the task
On the first SolidWorks request in the current Codex task, resolve the
plugin root from this file and run:
python <plugin-root>/scripts/sw_session.py start
Echo the returned UUID as SESSION_ID in working context. Run this command
only once per Codex task and never replace the ID mid-task.
Establish the design goal, units, geometry-driving dimensions, material,
tolerances or fits, manufacturing process, and deliverables.
Ask one concise question when missing data changes geometry, safety, fit, or
the requested output. Do not guess engineering values. If the user
explicitly delegates a non-geometry default, apply the active KB convention
and disclose it.
Invoke $sw-pre-start, then $sw-kb-api, in that exact order before
opening SolidWorks, generating CAD code, or calling a SolidWorks API.
Plan before editing
Write a compact implementation plan that identifies:
- files and document types to create;
- datums, origins, coordinate systems, and reference geometry;
- ordered sketches and features with named driving dimensions;
- sketch relations and the fully-defined condition;
- material, tolerance, fit, fastener, clearance, and manufacturing decisions;
- assembly mates and intended remaining degrees of freedom;
- measurable acceptance criteria and required exports.
Query the KB standards tables when each material, fit, tolerance, fastener, or
clearance decision is made. Never substitute remembered nominal values when a
standards lookup is available.
Build and verify parts
Create each part separately. For every part:
- Use metric model units unless the user explicitly overrides them.
- Build parametric, fully-defined sketches with stable references and named
dimensions.
- Rebuild after meaningful feature groups and inspect returned API values.
- Before each SolidWorks API method, check the part-specific and global known
errors loaded by
$sw-kb-api; apply a resolved prevention first.
- Assign the verified material and record its source and units.
- Inspect rebuild status, document errors, feature tree, mass properties,
bounding box, and a representative image.
- Use deterministic document validation as pass/fail. Treat screenshots as
visual evidence only.
- Save the native part, export requested formats, then close it before
starting an assembly.
Do not report success when rebuild or document validation has not passed.
Build and verify assemblies
Create an assembly only after all component parts are saved and closed.
Insert components from explicit saved paths, add mates in a stable order, and
verify mate status, interference or clearance requirements, component count,
and remaining degrees of freedom. Rebuild and run deterministic document
validation before saving or exporting.
Drawings and exports
Create requested drawings from the validated final model. Include specified
views, dimensions, tolerances, fits, GD&T, material notes, and title-block
metadata. Export only after final design-rule validation passes.
Prefer project folders named work/ for native working files and exports/
for deliverables unless the user explicitly chooses other paths.
Finish the task
- Invoke
$sw-pre-start Phase 6 with final parameters and resolve every
fail. Record advisories.
- Report native files and exports, explicit units, measured mass and bounding
box, validation result, errors, and limitations.
- Track the corrected feature sequence, every final code artifact, repeatable
failures and resolutions, and non-obvious lessons.
- After delivering the CAD result, invoke
$sw-session-reporter. Do not skip
reporting merely because the KB was offline during the build.
Source: hashgraph-online/awesome-codex-plugins → plugins/Erfouni/solidworks-GPT-plugin/plugins/solidworks-gpt-plugin/skills/solidworks-design/SKILL.md
1---2name: solidworks-design3description: Plan, create, modify, inspect, repair, validate, save, and export SolidWorks parts, assemblies, and drawings. Use for any request involving SolidWorks CAD geometry, engineering drawings or reference images, materials, fits, tolerances, fasteners, mates, mass properties, or STEP/IGES/STL/PDF deliverables. Orchestrates the mandatory knowledge-base pre-start, catalog lookup, deterministic validation, and consent-based session reporting workflow.4---567# SolidWorks Design89Treat this skill as the entry point for every SolidWorks task. Use the available10SolidWorks automation surface for CAD operations; this plugin supplies the11engineering and knowledge workflow rather than a SolidWorks installation.1213## Start the task14151. On the first SolidWorks request in the current Codex task, resolve the16 plugin root from this file and run:1718 ```text19 python <plugin-root>/scripts/sw_session.py start20 ```2122 Echo the returned UUID as `SESSION_ID` in working context. Run this command23 only once per Codex task and never replace the ID mid-task.242. Establish the design goal, units, geometry-driving dimensions, material,25 tolerances or fits, manufacturing process, and deliverables.263. Ask one concise question when missing data changes geometry, safety, fit, or27 the requested output. Do not guess engineering values. If the user28 explicitly delegates a non-geometry default, apply the active KB convention29 and disclose it.304. Invoke `$sw-pre-start`, then `$sw-kb-api`, in that exact order before31 opening SolidWorks, generating CAD code, or calling a SolidWorks API.3233## Plan before editing3435Write a compact implementation plan that identifies:3637- files and document types to create;38- datums, origins, coordinate systems, and reference geometry;39- ordered sketches and features with named driving dimensions;40- sketch relations and the fully-defined condition;41- material, tolerance, fit, fastener, clearance, and manufacturing decisions;42- assembly mates and intended remaining degrees of freedom;43- measurable acceptance criteria and required exports.4445Query the KB standards tables when each material, fit, tolerance, fastener, or46clearance decision is made. Never substitute remembered nominal values when a47standards lookup is available.4849## Build and verify parts5051Create each part separately. For every part:52531. Use metric model units unless the user explicitly overrides them.542. Build parametric, fully-defined sketches with stable references and named55 dimensions.563. Rebuild after meaningful feature groups and inspect returned API values.574. Before each SolidWorks API method, check the part-specific and global known58 errors loaded by `$sw-kb-api`; apply a resolved prevention first.595. Assign the verified material and record its source and units.606. Inspect rebuild status, document errors, feature tree, mass properties,61 bounding box, and a representative image.627. Use deterministic document validation as pass/fail. Treat screenshots as63 visual evidence only.648. Save the native part, export requested formats, then close it before65 starting an assembly.6667Do not report success when rebuild or document validation has not passed.6869## Build and verify assemblies7071Create an assembly only after all component parts are saved and closed.72Insert components from explicit saved paths, add mates in a stable order, and73verify mate status, interference or clearance requirements, component count,74and remaining degrees of freedom. Rebuild and run deterministic document75validation before saving or exporting.7677## Drawings and exports7879Create requested drawings from the validated final model. Include specified80views, dimensions, tolerances, fits, GD&T, material notes, and title-block81metadata. Export only after final design-rule validation passes.8283Prefer project folders named `work/` for native working files and `exports/`84for deliverables unless the user explicitly chooses other paths.8586## Finish the task87881. Invoke `$sw-pre-start` Phase 6 with final parameters and resolve every89 `fail`. Record advisories.902. Report native files and exports, explicit units, measured mass and bounding91 box, validation result, errors, and limitations.923. Track the corrected feature sequence, every final code artifact, repeatable93 failures and resolutions, and non-obvious lessons.944. After delivering the CAD result, invoke `$sw-session-reporter`. Do not skip95 reporting merely because the KB was offline during the build.9697---9899**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/Erfouni/solidworks-GPT-plugin/plugins/solidworks-gpt-plugin/skills/solidworks-design/SKILL.md`