Install
openclaw skills install cad-skillControl local CAD applications on Windows including launching apps, opening files, checking status, closing apps, detecting active or running apps, detecting...
openclaw skills install cad-skillThis skill allows an AI assistant to control locally installed CAD applications on Windows.
Supported software currently includes:
The skill enables launching CAD software, opening files with specific applications, checking running status, closing applications, and detecting active CAD windows.
This skill is intended for local workstation automation.
The assistant must follow these constraints when using this skill:
config.json.If the executable cannot be located:
set_app_path to store the path.Currently supported CAD software:
All commands are executed through:
skill_runner.py
Input payload format:
{
"skill": "launch_app",
"args": {
"app": "solidworks"
}
}
Launch a CAD application.
Arguments:
app
config_file (optional)
Open a file using a specified CAD application.
Arguments:
Check whether a CAD application is currently running.
Arguments:
Close a CAD application.
Arguments:
Detect which CAD application window is currently active.
Arguments:
Return all currently running supported CAD applications.
Arguments:
Detect an executable path using only predefined paths and saved paths.
Arguments:
Save a user provided executable path into the configuration file.
Arguments:
Launch SolidWorks:
{
"skill": "launch_app",
"args": {
"app": "solidworks"
}
}
open a STEP file in SolidWorks:
{
"skill": "open_file_in_app",
"args": {
"app": "solidworks",
"file_path": "D:\\DESKTOP\\solvi_project\\moca\\moca.STEP",
"auto_launch": true,
"wait_seconds": 5
}
}
Save a user provided executable path:
{
"skill": "set_app_path",
"args": {
"app": "solidworks",
"path": "E:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS\\SLDWORKS.exe"
}
}
This skill is designed for local CAD workstation automation.
It intentionally avoids heavy filesystem scanning to maintain fast response and predictable behavior.