TopRank Skills

Home / Claw Skills / Others / cae_skill
Official OpenClaw rules 15%

cae_skill

Control local CAE applications on Windows including launching apps, opening files, checking status, closing apps, detecting active and running apps, detecting common executable paths, and saving user-provided executable paths.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 cae_skill 技能。 若已安装,则直接安装 cae_skill 技能。

Overview

Skill Key
doudou459/cae-skill
Author
doudou459
Source Repo
openclaw/skills
Version
-
Source Path
skills/doudou459/cae-skill
Latest Commit SHA
524ae9d9f59ae1e1e9013f22e8989bcd8ffaf201

Extracted Content

SKILL.md excerpt

# CAE Skill

This skill controls supported local CAE applications on Windows.

## Supported apps

- abaqus
- ansys
- ansa
- hyperworks

## What this skill can do

- launch a CAE app
- open a file in a CAE app
- check whether a CAE app is running
- close a CAE app
- get the current active CAE app
- get all running supported CAE apps
- detect an executable path using saved paths and predefined common install paths
- save a user-provided executable path

## Constraints

- Do not scan the whole computer.
- Do not traverse all files on disk.
- Do not read the Windows registry.
- Only use:
  1. saved paths in `config.json`
  2. predefined common install paths in `config.json`
- If the executable cannot be found, ask the user to provide the full executable path.

## Execution

Use `skill_runner.py` as the execution entrypoint.

Payload format:

```json
{
  "skill": "launch_app",
  "args": {
    "app": "abaqus"
  }
}
```

# Supported Actions

## launch_app

Arguments:

- app

- config_file (optional)

##  open_file_in_app

Arguments:

- app
- file_path
- config_file(optional)
- auto_launch(optional)
- wait_seconds(optional)

##  is_app_runing

Arguments:

- app
- config_file(optional)

##  close_app

Arguments:

-  app
- config_file(optional)
- force(optional)

##  get_activate_app

Arguments:

-  config_file(optional)

##  get_running_apps

Arguments:

- config_file(optional)

##  detect_app_path

Arguments:

- app
- config_file(optional)

## set_app_path

Arguments:

- app
- path
- config_file(optional)

# Note

This skill is designed for **local CAE workstation automation**.

It intentionally avoids heavy filesystem scanning to maintain fast response and predictable behavior.

README excerpt

# cae_skill

Windows local CAE control skill.

Supported apps:
- abaqus
- ansys
- ansa
- hyperworks

Capabilities:
- launch_app
- open_file_in_app
- is_app_running
- close_app
- get_active_app
- get_running_apps
- detect_app_path
- set_app_path

Notes:
- does not scan the whole computer
- does not read the Windows registry
- only checks saved paths and predefined common paths
- some software launch commands may need local adjustment depending on version and installation style

Related Claw Skills