← 返回 Skills 市场
evanfirefly

Crypto Auto Progression

作者 evanfirefly · GitHub ↗ · v0.1.0
cross-platform ⚠ suspicious
325
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install crypto-auto-progression
功能描述
为 crypto-hedge-backtest 启用并维护“真实执行驱动”的自动推进(cron)。当用户要求每N分钟自动推进、自动汇报阶段成果、排查 cron 持续报错、或将自动化流程固化为可复用方案时使用。
使用说明 (SKILL.md)

Crypto Auto Progression

projects/crypto-hedge-backtest 提供可复用的自动推进流程。

目标

  • 用 cron 驱动周期推进,而不是空提醒。
  • 每次触发至少做一项真实执行:跑脚本 / 改代码 / 产出文件
  • 仅在有阶段成果时汇报,避免重复话术刷屏。

标准任务模板

1) 5分钟推进任务(主任务)

  • schedule: every 5m
  • sessionTarget: main
  • payload.kind: systemEvent
  • payload.text 必须强调“真实执行 + 阶段成果汇报 + 无成果不重复提醒”

2) 30分钟健康检查(守护任务)

  • schedule: every 30m
  • 检查最近30分钟是否有真实产出(新文件/新commit/新报告)
  • 无产出要告警并说明阻塞点

3) 每日日报(可选)

  • schedule: cron 30 21 * * * + Asia/Manila
  • 汇总:完成项、关键结果、风险点、明日计划

创建与验证(强制顺序)

  1. 先创建 1个 5分钟主任务。
  2. 立即 cron run --force 手动触发一次。
  3. cron runs 确认 status=ok
  4. 再创建 30 分钟健康检查和每日日报。
  5. cron list 复核 enabled=truenextRunAtMs

故障排查(高频问题)

  • invalid cron.add params ... required property 'name/schedule/sessionTarget/payload'

    • 原因:job 体缺字段或传了空 job:{}
    • 处理:按完整 job 结构重发,禁止盲目重试同一坏请求。
  • openclaw-cn cron disable ... --jsonunknown option '--json'

    • 原因:cron disable 不支持 --json
    • 处理:去掉 --json
  • Binance 拉数偶发 SSL: UNEXPECTED_EOF_WHILE_READING

    • 处理:在数据拉取层加入网络重试 + 指数退避;重试后再继续 scan 链路。

汇报规范(本项目)

  • 有实质成果时汇报:
    • 新增/更新文件
    • 关键指标/结论
    • 下一步动作
  • 状态语句使用二选一:
    • 继续推进中(无需你回复)
    • 我已暂停推进,等待你决策
安全使用建议
This skill will set up recurring jobs that can run scripts, modify project code, and create commits/reports. Before installing: 1) Verify and trust the skill source — it has no homepage or author info. 2) Run it first in an isolated/staging workspace (not your production repo). 3) Require least-privilege credentials (read-only where possible) and hold back credentials for Binance or repo write access until you audit the exact commands and cron job contents. 4) Insist that every automated commit/change be reviewed (change diffs, signed commits, or gated merge). 5) Log and alert on all automated actions and provide a quick kill-switch to disable cron jobs. 6) If you need this functionality, ask the author for an explicit list of required env vars/permissions and for the exact cron job payload templates to review before giving write access.
功能分析
Type: OpenClaw Skill Name: crypto-auto-progression Version: 0.1.0 The skill bundle provides instructions for automating a crypto backtesting project (crypto-hedge-backtest) using OpenClaw's internal cron system. It defines standard task templates for periodic execution, health checks, and reporting, utilizing standard agent commands like 'cron run' and 'cron list' without any evidence of malicious intent, data exfiltration, or unauthorized system access.
能力评估
Purpose & Capability
The name/description (auto progression for a crypto-hedge-backtest) match the SKILL.md: it instructs creating 5m/30m/daily cron jobs to run scripts, produce files/commits, and report results. That capability set is consistent with the stated purpose. However, the instructions expect the agent to perform code changes, runs, and commits (write access to the project), which is a higher privilege than the skill declares; the skill does not document required credentials or repo access which would normally be needed.
Instruction Scope
SKILL.md tells the agent to create cron jobs, run 'cron run --force', inspect 'cron runs' and 'cron list', detect and act on new files/commits/reports, and '跑脚本 / 改代码 / 产出文件' (run scripts / change code / produce files). Those are concrete actions that read and modify project state and may call external services (Binance). The instructions grant broad discretion to modify code and create persistent jobs; they do not limit what files/commands are used or require human review before committing changes.
Install Mechanism
Instruction-only skill with no install spec and no code files — minimal risk from installation (nothing is downloaded or written by an installer).
Credentials
The skill declares no required env vars or credentials, yet its instructions assume access to the project filesystem/repository and reference pulling data from Binance (network calls and potential API keys). This is a mismatch: tasks like fetching Binance data or pushing commits typically require API keys and repository auth, which are not surfaced or justified.
Persistence & Privilege
always:false (normal), but the core behavior is to create and manage recurring cron jobs on the platform (persistent automation). This creates long-lived effects (scheduled runs and potential repeated code changes). The skill does not request explicit confirmation steps or safety limits for those persistent actions.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install crypto-auto-progression
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /crypto-auto-progression 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
Initial release: cron-driven real-execution auto progression runbook
元数据
Slug crypto-auto-progression
版本 0.1.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Crypto Auto Progression 是什么?

为 crypto-hedge-backtest 启用并维护“真实执行驱动”的自动推进(cron)。当用户要求每N分钟自动推进、自动汇报阶段成果、排查 cron 持续报错、或将自动化流程固化为可复用方案时使用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 325 次。

如何安装 Crypto Auto Progression?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install crypto-auto-progression」即可一键安装,无需额外配置。

Crypto Auto Progression 是免费的吗?

是的,Crypto Auto Progression 完全免费(开源免费),可自由下载、安装和使用。

Crypto Auto Progression 支持哪些平台?

Crypto Auto Progression 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Crypto Auto Progression?

由 evanfirefly(@evanfirefly)开发并维护,当前版本 v0.1.0。

💬 留言讨论