← 返回 Skills 市场
31
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install cda-data-synth
功能描述
CDA 因果数据合成器——根据领域描述自动生成 CDA 架构可消费的因果数据集。 生成 Entity-State Graph(JSON 格式)、CausalEdge 列表、带时间戳的观测轨迹、哈密顿量约束参数。 覆盖热力学、力学、流体、多域耦合等物理域,支持生成训练数据、验证数据、基准测试数据。 当用户需要为 C...
使用说明 (SKILL.md)
\r \r
CDA 因果数据合成器(Data Synthesizer)\r
\r 为 Causal Dynamics Architecture 架构生成标准格式的合成因果数据集。\r \r
核心定位\r
\r CDA 架构的输入不是 Token 序列,而是 Entity-State Graph(实体-状态因果图)。本技能解决从"领域描述"到"架构可消费数据"的桥梁问题。\r \r 数据格式所有权:本技能定义并维护 CDA 的数据序列化协议。Code Lab 技能依赖此协议生成代码。\r \r
工作流程\r
\r
用户描述场景\r
↓\r
1. 解析领域类型(热力学/力学/流体/多域耦合)\r
↓\r
2. 设计实体拓扑(entities + edges 骨架)\r
↓\r
3. 参数化机制函数(mechanism parameters)\r
↓\r
4. 运行前向仿真生成轨迹(trajectory snapshots)\r
↓\r
5. 序列化为 JSON 格式输出\r
```\r
\r
## 输出格式规范\r
\r
所有输出必须符合 `references/data-format-spec.md` 中定义的 JSON Schema。\r
\r
核心输出文件类型:\r
- `*.graph.json` — 静态因果图(实体 + 边 + 属性)\r
- `*.trajectory.json` — 时序轨迹(多时刻快照序列)\r
- `*.hamiltonian.json` — 哈密顿量参数(势能函数 + 守恒量)\r
- `*.meta.json` — 数据集元信息(域类型、规模、物理约束摘要)\r
\r
## 参考文件\r
\r
| 文件 | 内容 |\r
|------|------|\r
| `references/data-format-spec.md` | **核心协议**:Entity-State Graph 的完整 JSON Schema 定义 |\r
| `references/synthesis-protocols.md` | 各物理域的数据合成协议(热力学/力学/流体/耦合) |\r
| `references/thermal-building-example.json` | 热力学示例:建筑温度仿真数据集 |\r
\r
## 数据合成原则\r
\r
1. **物理一致性**:合成数据必须满足能量守恒、质量守恒等物理约束\r
2. **因果真实性**:因果边的方向和机制函数必须反映真实物理规律\r
3. **可验证性**:每条因果边都附带 ground truth,便于验证因果发现算法\r
4. **可扩展性**:从简单场景(3-5 实体)到复杂场景(100+ 实体)渐进生成\r
\r
## 域类型与对应的物理约束\r
\r
| 域 | 广义坐标 q | 共轭动量 p | 典型机制函数 | 守恒量 |\r
|----|-----------|-----------|-------------|--------|\r
| 热力学 | 温度 T | 热流 J_q | 傅里叶定律、牛顿冷却 | 能量 |\r
| 力学 | 位移 x | 动量 p | 胡克定律、阻尼力 | 能量、动量 |\r
| 流体 | 压力场 P | 质量流 J_m | Navier-Stokes 简化 | 质量、动量 |\r
| 电路 | 电荷 Q | 电流 I | 欧姆定律、基尔霍夫定律 | 电荷、能量 |\r
\r
## 与 CDA 主技能的关系\r
\r
```\r
CDA(主技能)\r
├── 理论参考:架构设计、公式、路线图\r
├── CDA Data Synthesizer(本技能)\r
│ └── 数据生成:Entity-State Graph → JSON\r
└── CDA Code Lab\r
└── 代码生成:读取数据 → 仿真/训练代码\r
```\r
\r
## 使用指南\r
\r
1. 用户描述目标场景(如"一个有三台压缩机和两个冷库的制冷系统")\r
2. 读取 `references/data-format-spec.md` 获取格式规范\r
3. 读取 `references/synthesis-protocols.md` 获取对应域的合成协议\r
4. 参考示例文件了解完整数据集结构\r
5. 生成符合规范的 JSON 数据文件,输出到用户指定目录\r
安全使用建议
This skill appears coherent and limited in scope: it contains format specifications, synthesis protocols, and an example and only asks the agent to generate JSON datasets following those specs. Before installing, consider: (1) validate any generated dataset before using it in safety- or production-critical systems (physics fidelity, energy/mass conservation, numeric stability); (2) the skill will write files to a directory you specify — ensure you choose a safe output path and review outputs for sensitive data; (3) the SKILL.md claims 'ownership' of the protocol — if other skills rely on this protocol, confirm they use the same authoritative spec; (4) although no credentials or network calls are present, always review future versions for added install steps or external endpoints. Overall the package is internally consistent and low-risk.
功能分析
Type: OpenClaw Skill
Name: cda-data-synth
Version: 1.0.0
The skill bundle is a specialized data synthesizer for the Causal Dynamics Architecture (CDA), designed to generate JSON-based physics datasets. The files (SKILL.md, data-format-spec.md, and synthesis-protocols.md) contain schema definitions, physical formulas, and pseudo-code for simulating domains like thermodynamics and mechanics. No malicious intent, data exfiltration, or unauthorized execution capabilities were found; the content is strictly aligned with its stated purpose of scientific data generation.
能力评估
Purpose & Capability
Name/description match the actual contents: an instruction-only synthesizer with data-format/spec/protocol references and an example dataset. No unrelated credentials, binaries, or capabilities are requested.
Instruction Scope
SKILL.md instructs the agent to parse user scenario descriptions, consult the included spec/protocol docs, and produce JSON outputs in the declared CDA schema. It does not instruct reading unrelated system files, contacting external endpoints, or exfiltrating data.
Install Mechanism
No install spec and no code files — the skill is instruction-only, so nothing is written to disk by an installer and no external packages are pulled in.
Credentials
No required environment variables, credentials, or config paths are declared; the resources requested are proportional to a data-generation/instruction-only skill.
Persistence & Privilege
always:false and standard autonomous invocation allowed. The skill does not request persistent system-wide privileges or modify other skills/configurations.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install cda-data-synth - 安装完成后,直接呼叫该 Skill 的名称或使用
/cda-data-synth触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of CDA Data Synthesizer:
- Generates synthetic causal datasets for CDA architecture from domain descriptions.
- Outputs standardized JSON files: Entity-State Graph, trajectory snapshots, Hamiltonian parameters, and metadata.
- Supports multiple physical domains: thermodynamics, mechanics, fluid dynamics, and multi-domain coupling.
- Ensures physical consistency, true causality, verifiability, and scalability in generated data.
- Provides a clear workflow and protocol references for data generation and formatting.
元数据
常见问题
CDA Data Synth 是什么?
CDA 因果数据合成器——根据领域描述自动生成 CDA 架构可消费的因果数据集。 生成 Entity-State Graph(JSON 格式)、CausalEdge 列表、带时间戳的观测轨迹、哈密顿量约束参数。 覆盖热力学、力学、流体、多域耦合等物理域,支持生成训练数据、验证数据、基准测试数据。 当用户需要为 C... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 31 次。
如何安装 CDA Data Synth?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install cda-data-synth」即可一键安装,无需额外配置。
CDA Data Synth 是免费的吗?
是的,CDA Data Synth 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
CDA Data Synth 支持哪些平台?
CDA Data Synth 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 CDA Data Synth?
由 波动几何(@wangjiaocheng)开发并维护,当前版本 v1.0.0。
推荐 Skills