← 返回 Skills 市场
904
总下载
0
收藏
9
当前安装
14
版本数
在 OpenClaw 中安装
/install simmer-skill-builder
功能描述
Generate complete, installable OpenClaw trading skills from natural language strategy descriptions. Use when your human wants to create a new trading strateg...
安全使用建议
What to check before installing or giving credentials:
- Reconcile the mismatch: the registry metadata reported no required env vars but the package contains a clawhub.json and templates that require SIMMER_API_KEY and the simmer-sdk. Assume the skill needs SIMMER_API_KEY unless the publisher explicitly confirms otherwise.
- Do NOT supply live wallet private keys (WALLET_PRIVATE_KEY, SOLANA_PRIVATE_KEY) or other private signing keys to this skill or to generated skills unless you fully audited the generated code. The Simmer docs note those are only required for specific real venues; generated skills could include them.
- Audit the generated skill folder before running it. The generator will write Python scripts and config files to disk and may instruct the agent to run them. Run scripts in a sandbox or review code manually (look for network endpoints, unexpected POSTs, or obfuscated behavior).
- Use a limited (paper/sim) API key or a read-only credential when testing. The Simmer client supports simulated ('sim') venues — prefer those for initial testing.
- Run scripts/validate_skill.py on any generated skill folder; it includes checks for common pitfalls. Also inspect clawhub.json to ensure automaton.managed and entrypoint are set as you expect.
- Limit the agent's file-write and network permissions if possible; avoid letting it autonomously install or execute newly generated code until you verify it.
Confidence notes: The package contents and templates strongly match the claimed purpose (generating Simmer trading skills), but clear inconsistencies between registry-declared requirements and the included files (and between the templates' expectations and the included clawhub.json) make the package suspicious until those mismatches are explained by the publisher.
功能分析
Type: OpenClaw Skill
Name: simmer-skill-builder
Version: 1.2.3
The bundle is a developer tool designed to assist an AI agent in generating, validating, and publishing trading skills for the Simmer platform. It contains utility scripts for account management (scripts/status.py) and a validator (scripts/validate_skill.py) that enforces best practices in generated code. The instructions in SKILL.md explicitly mandate safety features such as dry-run defaults, mandatory safeguards, and the use of the official Simmer SDK rather than direct API calls. No indicators of data exfiltration, malicious obfuscation, or unauthorized persistence were found; all behaviors are consistent with the stated purpose of a skill-building framework.
能力标签
能力评估
Purpose & Capability
The stated purpose (generate runnable Simmer trading skills) aligns with the included templates, examples, and helper scripts which legitimately need the Simmer SDK and SIMMER_API_KEY. However the registry metadata (requirements reported earlier) lists no env vars or credentials while the included clawhub.json and SKILL.md repeatedly require SIMMER_API_KEY and simmer-sdk. That mismatch is unexpected and worth investigating.
Instruction Scope
SKILL.md instructs the agent to create full skill folders on disk (SKILL.md, clawhub.json, Python script, scripts/status.py), copy boilerplate verbatim, fetch external API docs if needed, and use the SIMMER_API_KEY from the environment. Those actions are coherent for a skill-generator but they grant the skill the ability to write executable code and potentially fetch arbitrary external docs — a broader scope than a read-only helper. Also the SKILL.md template explicitly expects automaton entrypoints and environment tunables; the included clawhub.json in this package does not match that expectation (it has automaton.entrypoint null), an internal inconsistency.
Install Mechanism
No install spec / no network download or third-party package installation specified by the registry. The skill is instruction-driven and contains local helper scripts only (status.py, validate_skill.py). No suspicious external archive downloads or URL-based installers were found.
Credentials
The actual files (clawhub.json, SKILL.md templates, and scripts) require SIMMER_API_KEY and pip dependency simmer-sdk. The registry-level requirements reported earlier showed none — that's an inconsistency. The Simmer SDK docs inside references also note additional sensitive env vars (WALLET_PRIVATE_KEY, SOLANA_PRIVATE_KEY) are required for some 'real' venues; the builder could generate skills that request those keys later. Asking for SIMMER_API_KEY is proportional for a trading-skill generator, but you should NOT provide live wallet private keys or other secrets unless you fully audit the generated skill.
Persistence & Privilege
The skill does not request always:true and does not appear to modify other skills or system-wide agent settings. It will create skill folders and files (normal for a generator) and includes a validate script; these are legitimate for its purpose but you should restrict where it can write and run code.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install simmer-skill-builder - 安装完成后,直接呼叫该 Skill 的名称或使用
/simmer-skill-builder触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.2.3
Skill template now uses simmer_sdk.sizing.size_position() (Kelly + EV gate) instead of the inline calculate_position_size() helper. Merge SIZING_CONFIG_SCHEMA into your CONFIG_SCHEMA for free SIMMER_POSITION_SIZING / SIMMER_KELLY_MULTIPLIER / SIMMER_MIN_EV env vars.
v1.2.2
# simmer-skill-builder 1.2.2
- Updated references/skill-template.md for improved documentation and internal clarity.
- No changes to logic or user-facing features.
- Documentation changes only; skill workflow and API remain unchanged.
v1.2.1
## simmer-skill-builder v1.2.1
- Updated the reference documentation in `references/simmer-api.md` to reflect the latest Simmer SDK API surface.
- No functional or feature changes to the core logic—documentation/reference update only.
v1.2.0
## simmer-skill-builder v1.2.0
- Updated SKILL.md to include a new section documenting support for `tunables` in `clawhub.json`.
- Added instructions to declare every configurable env var in the `tunables` array for better dashboard/autotune integration.
- Provided a JSON example of tunables (types: number, string, boolean) and described required fields (range, default, step, label).
- Clarified that tunables in `clawhub.json` are now the source of truth for configuration surfaced in the skills registry.
- No changes to other files or core logic.
v1.1.0
Rename venue simmer to sim
v1.0.8
AgentSkills format — moved platform config to clawhub.json for cross-agent compatibility
v1.0.7
- Added difficulty field ("beginner") to skill metadata in SKILL.md.
- No other changes to logic, features, or dependencies; documentation content is unchanged.
v1.0.6
- Enforced the requirement that `TRADE_SOURCE` and `SKILL_SLUG` (matching the ClawHub slug exactly) must be tagged on all trades for better skill-level volume tracking.
- Updated Python script requirements to include explicit setting and usage of `SKILL_SLUG` matching the ClawHub slug.
- Clarified usage of trade tags and skill slug in the Hard Rules and Naming Convention sections.
- Minor documentation refinements for consistency and clarity.
v1.0.5
**Added ClawHub publishing step and registry details.**
- Step 6: Added instructions to publish generated skills to ClawHub and information on Simmer Skills Registry syncing.
- Now tells users to use `npx clawhub@latest publish` for distribution.
- Added a note to notify users about registry appearance and provided a link to full publishing documentation.
- Clarified the purpose of the `sdk:<shortname>` trade source tag as volume attribution in the Simmer registry.
- No changes to technical requirements or workflow for skill generation.
v1.0.4
Retry publish
v1.0.3
Sync
v1.0.2
- Updated SKILL.md metadata frontmatter to set version to "1.0.2".
- No other changes made to documentation, workflow, or functionality.
v1.0.1
Update copy to use 'your human' voice consistently
v1.0.0
Simmer Skill Builder 1.0.0 – Initial Release
- Generate full, installable OpenClaw trading skills from plain English trading strategy descriptions.
- Produces ready-to-run skill folders with all required files (SKILL.md, trading script, status scripts).
- Guides users through clarifying strategy logic (signal, entry/exit conditions, market selection, sizing).
- Enforces best practices: dry-run default, trade tagging, safeguards, minimal dependencies, secure API handling.
- Comprehensive instructions for integrating with Simmer SDK and referencing example patterns.
元数据
常见问题
Simmer Skill Builder 是什么?
Generate complete, installable OpenClaw trading skills from natural language strategy descriptions. Use when your human wants to create a new trading strateg... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 904 次。
如何安装 Simmer Skill Builder?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install simmer-skill-builder」即可一键安装,无需额外配置。
Simmer Skill Builder 是免费的吗?
是的,Simmer Skill Builder 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Simmer Skill Builder 支持哪些平台?
Simmer Skill Builder 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Simmer Skill Builder?
由 AD88(@adlai88)开发并维护,当前版本 v1.2.3。
推荐 Skills