Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

skill-freecad技能 FreeCAD

Agent Skill

skill-freecad 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,992

周安装

566

GitHub Stars

2

下载量

4,392
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-freecad(技能 FreeCAD)
来源仓库:https://github.com/ninja7v/skill-freecad
安装命令:
openclaw skills install skill-freecad
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-freecad

简介

skill-freecad 通过 JSON 参数驱动 FreeCAD 创建或修改 3D CAD 模型。

  • 适用于工程设计、原型开发或参数化建模场景。
  • 支持脚本化操作,提升重复性建模任务效率。
  • 安装命令为 openclaw skills install skill-freecad,仅限 OpenClaw 使用。
  • 需确保 FreeCAD 环境已正确安装并配置好 Python 接口。

SKILL.md

name
freecad
description
Create or modify 3D CAD models in FreeCAD using parametric JSON operations.
metadata
{ "openclaw": { "requires": { "bins": ["python"] } } }

FreeCAD Skill

Description

Create or modify 3D CAD models in FreeCAD using parametric operations.

When to use

Use when user asks to:

  • create objects (primitives like box, cylinder, sphere, cone, torus)
  • modify geometry (scale, translate, rotate, fillets, cut, fuse, etc.)
  • generate CAD files
  • perform complex multi-step CAD operations

Input (JSON)

{ "operation": "create_primitive | boolean | transform | batch | export | inspect | modifier | array | profile", "parameters": { ... } }

Output (JSON return)

On success, the script prints a JSON payload to stdout containing the names, bounding boxes, and metadata of all active objects. This acts as your visual feedback interface.

Instructions

  1. Convert user request into JSON. You may use batch to combine steps.
  2. Call:

python {baseDir}/scripts/cad_engine.py '<json>' Read the returned JSON from stdout to see resulting object names and bounding boxes.

  1. Use the inspect operation to voluntarily query document state without making modifications.

Rules

  • NEVER generate FreeCAD code yourself
  • ONLY call the engine
  • ALWAYS pass structured JSON
  • For complex shapes, break down the request into basic primitives, transforms, and booleans using the batch operation.

Output

  • model.FCStd
  • model.step

Examples

Create a Primitive: { "operation": "create_primitive", "parameters": { "type": "box", "length": 100, "width": 100, "height": 50, "name": "MyBox", "position": [0, 0, 0] } }

Batch CSG (Cut a hole in a box): { "operation": "batch", "parameters": { "steps": [ { "operation": "create_primitive", "parameters": { "type": "box", "length": 50, "width": 50, "height": 10, "name": "BaseBox" } }, { "operation": "create_primitive", "parameters": { "type": "cylinder", "radius": 5, "height": 10, "name": "HoleCyl", "position": [25, 25, 0] } }, { "operation": "boolean", "parameters": { "type": "cut", "base": "BaseBox", "tool": "HoleCyl", "name": "ResultShape" } } ] } }

Scale: { "operation": "scale_object", "parameters": { "scale_factor": 0.8 } }

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.87%
按下载量换算3,771

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills