/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.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install cad-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/cad-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
cad-skill 是什么?
Control local CAD applications on Windows including launching apps, opening files, checking status, closing apps, detecting active or running apps, detecting... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 492 次。
如何安装 cad-skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install cad-skill」即可一键安装,无需额外配置。
cad-skill 是免费的吗?
是的,cad-skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
cad-skill 支持哪些平台?
cad-skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 cad-skill?
由 solvi(@doudou459)开发并维护,当前版本 v1.0.0。