Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

sausg

v1.0.1

SAUSG(结构通用分析与设计软件)自动计算与操作工具。用于弹塑性计算、非线性分析、动力时程分析、隔震减震设计、钢结构分析等。当用户提及 SAUSG、SAUSAGE、OpenSAUSG、SAUSGDelta、SAUSGJG、SAUSGPI、SAUSGZeta 等相关软件,或要求进行弹塑性计算、读取计算结果时使用此技能。

0· 121·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for jiasu1017-beep/sausg.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "sausg" (jiasu1017-beep/sausg) from ClawHub.
Skill page: https://clawhub.ai/jiasu1017-beep/sausg
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install sausg

ClawHub CLI

Package manager switcher

npx clawhub@latest install sausg
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The name/description (SAUSG automation for running calculations and reading results) matches what the included scripts actually do: search for SAUSG installs, launch specific SAUSG module executables, run calculations, parse result files (.FRQ, .NSF, .DOCX). No unrelated credentials, network calls, or cloud services are requested.
Instruction Scope
SKILL.md tells the agent to run the three provided Python scripts to open models, run calculations, and read results. The scripts perform filesystem scans (search D:, C:, E:, F: for SAUSG folders), read and delete result files (cleanup feature), detect running calculation processes, spawn SAUSG executables, and parse local result and Word files. This is within the stated purpose, but the code constructs shell commands (subprocess.run / Popen with shell=True) using user-supplied paths which could be risky if untrusted input is passed. Also there are small inconsistencies in default directory versions between SKILL.md and the scripts (2027 vs 2026).
Install Mechanism
There is no install spec and no network downloads; the skill is instruction-only plus bundled Python scripts. Nothing is fetched from external URLs or written to system-wide locations by an installer.
Credentials
The skill requests no environment variables, no credentials, and no config paths. All file and executable access is local and directly related to running SAUSG and reading its outputs.
Persistence & Privilege
always is false and the skill does not request elevated persistence. It runs on-demand and launches local executables; it does not modify other skills or global agent settings.
Assessment
This skill appears to do what it claims (local automation for SAUSG). Before installing or running it, consider: 1) It expects a Windows environment and will search local drives and launch SAUSG executables — only use it on machines where SAUSG is installed and trusted. 2) The scripts spawn local processes with shell=True and build command strings containing file paths; avoid passing untrusted or attacker-controlled model paths to prevent command injection risks. 3) The skill performs cleanup of old result files by default (SKILL.md mentions this) — if you need to preserve results, use the provided --no-cleanup option or inspect the code to confirm behavior. 4) The scripts optionally parse Word (.docx) files using python-docx if installed; installing that dependency is optional but may be required for some features. 5) Minor inconsistencies in default directories (SKILL.md vs code) mean you should verify the configured path before running. If you are unsure, review the three included Python files locally or run them in a controlled/sandbox environment with test data first.

Like a lobster shell, security has layers — review code before you run it.

latestvk97fp32hk1z6891b2txxzgcrpn83mmeg
121downloads
0stars
2versions
Updated 1mo ago
v1.0.1
MIT-0

SAUSG 自动计算与操作指南

SAUSG(结构通用分析与设计软件)是一款专业的结构工程分析与设计软件,包含多个专业模块。

触发关键词

当用户提及以下内容时,自动使用本 Skill:

  • 弹塑性计算、非线性分析、动力时程分析
  • SAUSG、SAUSAGE 相关操作
  • 隔震、减震、加固、钢结构分析
  • 读取/查看计算结果

快速开始

命令格式

# 用指定模块打开模型(默认 OpenSAUSG)
python <skill>/scripts/sausg_open.py <模型路径> [模块名称] [软件目录]

# 运行结构计算
python <skill>/scripts/sausg_calc.py <模型路径> [软件目录] [--no-cleanup]

# 读取计算结果
python <skill>/scripts/sausg_result.py <模型目录> [模型名称]

<skill>.claude/skills/sausg

模块名称

输入模块
open, 通用OpenSAUSG.exe
sausage, 非线性SAUSAGE.exe
delta, 钢结构SAUSGDelta.exe
jg, 加固SAUSGJG.exe
pi, 隔震SAUSGPI.exe
zeta, 减震SAUSGZeta.exe

示例

# 用隔震模块打开模型
python .claude/skills/sausg/scripts/sausg_open.py Project/Model.ssg 隔震

# 运行计算
python .claude/skills/sausg/scripts/sausg_calc.py Project/Model.ssg

# 读取结果
python .claude/skills/sausg/scripts/sausg_result.py Project/Model Model

自然语言

用户可以直接说:

  • "用隔震软件打开模型" → 调用 SAUSGPI.exe
  • "运行非线性计算" → 调用 SAUSAGE.exe
  • "读取P2的结果" → 调用结果读取脚本

软件信息

功能说明

1. 自动搜索软件

系统自动搜索 D 盘及其他盘符下的 SAUSGXXXX 文件夹,提取版本号并选择最新版本。

2. 计算清理

默认会清理模型目录下的旧结果文件(.BCR, .BEM, .MSG 等)和结果文件夹(StaticResult/, EarthQuakeResult/, DesignResult/)。使用 --no-cleanup 可跳过清理。

3. 结果输出

计算完成后自动输出:

  • 基本周期 (T1, T2, T3...)
  • 圆频率 (ω) 和频率 (f)
  • 楼层总重、底部反力
  • 基底剪力(含剪重比)
  • 最大层间位移角
  • 计算报告文件名

4. 批量计算

必须顺序执行,等待前一个计算完成后再启动下一个。系统会自动检测是否有计算程序正在运行。

注意事项

  1. 禁止同时运行多个计算 - 系统会检测并阻止
  2. 计算时间较长 - 请耐心等待,结果保存在模型同目录下
  3. 编码兼容 - 支持 cmd 和 PowerShell,自动处理中文编码

Comments

Loading comments...