/install cad-skill
\r \r
CAD Skill\r
\r This skill allows an AI assistant to control locally installed CAD applications on Windows.\r \r Supported software currently includes:\r \r
- solidworks\r
- catia\r
- creo\r
- ug (Siemens NX)\r \r The skill enables launching CAD software, opening files with specific applications, checking running status, closing applications, and detecting active CAD windows.\r \r This skill is intended for local workstation automation.\r \r ---\r \r
Important Constraints\r
\r The assistant must follow these constraints when using this skill:\r \r
- Do not scan the entire computer filesystem.\r
- Do not traverse all directories on disk.\r
- Do not read the Windows registry.\r
- Only use paths stored in
config.json.\r - Only check predefined candidate install paths.\r \r If the executable cannot be located:\r \r
- ask the user to provide the full executable path\r
- then call
set_app_pathto store the path.\r \r ---\r \r
Supported Applications\r
\r Currently supported CAD software:\r \r
- solidworks\r
- catia\r
- creo\r
- ug\r \r ---\r \r
Execution\r
\r All commands are executed through:\r \r skill_runner.py\r \r Input payload format:\r \r
{\r
"skill": "launch_app",\r
"args": {\r
"app": "solidworks"\r
}\r
}\r
```\r
\r
\r
\r
# Supported Actions\r
\r
## launch_app\r
\r
Launch a CAD application.\r
\r
Arguments:\r
\r
- app\r
\r
- config_file (optional)\r
\r
## open_file_in_app\r
\r
Open a file using a specified CAD application.\r
\r
Arguments:\r
\r
- app\r
- file_path\r
- config_file(optional)\r
- auto_launch(optional)\r
- wait_seconds(optional)\r
\r
## is_app_runing\r
\r
Check whether a CAD application is currently running.\r
\r
Arguments:\r
\r
- app\r
- config_file(optional)\r
\r
## close_app\r
\r
Close a CAD application.\r
\r
Arguments:\r
\r
- app\r
- config_file(optional)\r
- force(optional)\r
\r
## get_activate_app\r
\r
Detect which CAD application window is currently active.\r
\r
Arguments:\r
\r
- config_file(optional)\r
\r
## get_running_apps\r
\r
Return all currently running supported CAD applications.\r
\r
Arguments:\r
\r
- config_file(optional)\r
\r
## detect_app_path\r
\r
Detect an executable path using only predefined paths and saved paths.\r
\r
Arguments:\r
\r
- app\r
- config_file(optional)\r
\r
## set_app_path\r
\r
Save a user provided executable path into the configuration file.\r
\r
Arguments:\r
\r
- app\r
- path\r
- config_file(optional)\r
\r
# Example Usage\r
\r
Launch SolidWorks:\r
\r
```json\r
{\r
"skill": "launch_app",\r
"args": {\r
"app": "solidworks"\r
}\r
}\r
```\r
\r
open a STEP file in SolidWorks:\r
\r
```json\r
{\r
"skill": "open_file_in_app",\r
"args": {\r
"app": "solidworks",\r
"file_path": "D:\\DESKTOP\\solvi_project\\moca\\moca.STEP",\r
"auto_launch": true,\r
"wait_seconds": 5\r
}\r
}\r
```\r
\r
Save a user provided executable path:\r
\r
```json\r
{\r
"skill": "set_app_path",\r
"args": {\r
"app": "solidworks",\r
"path": "E:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS\\SLDWORKS.exe"\r
}\r
}\r
```\r
\r
# Note\r
\r
This skill is designed for **local CAD workstation automation**.\r
\r
It intentionally avoids heavy filesystem scanning to maintain fast response and predictable behavior.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install cad-skill - After installation, invoke the skill by name or use
/cad-skill - Provide required inputs per the skill's parameter spec and get structured output
What is cad-skill?
Control local CAD applications on Windows including launching apps, opening files, checking status, closing apps, detecting active or running apps, detecting... It is an AI Agent Skill for Claude Code / OpenClaw, with 492 downloads so far.
How do I install cad-skill?
Run "/install cad-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is cad-skill free?
Yes, cad-skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does cad-skill support?
cad-skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created cad-skill?
It is built and maintained by solvi (@doudou459); the current version is v1.0.0.