aoi-cron-ops-lite
OpenClaw 的 Cron 卫生和成本控制。用于审核/优化计划作业 (cron):检测重复项、嘈杂的通知、沉重的节奏、重复的失败,并提出安全更改建议。默认仅报告(无自动 cron 更新/删除),并且在应用计划更改之前需要明确的用户批准。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~edmonddantesj-aoi-cron-ops-litecURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~edmonddantesj-aoi-cron-ops-lite/file -o edmonddantesj-aoi-cron-ops-lite.md## 概述(中文) OpenClaw 的 Cron 卫生和成本控制。用于审核/优化计划作业 (cron):检测重复项、嘈杂的通知、沉重的节奏、重复的失败,并提出安全更改建议。默认仅报告(无自动 cron 更新/删除),并且在应用计划更改之前需要明确的用户批准。 ## 原文 # AOI Cron Ops (Lite) ## What this skill does - Produces a **single, human-readable cron audit report** from an OpenClaw cron job list. - Flags common ops issues: - duplicate purpose (multiple jobs doing the same thing) - notification spam (too many announce jobs) - over-frequent cadence (high cost / high load) - repeated failures / flaky external dependencies - missing/invalid env prerequisites (e.g., vault file not present) ## Guardrails (non-negotiable) - **Lite = report-only by default.** - Do **not** disable/update/remove cron jobs unless the user explicitly says to apply a specific change. - When proposing changes, prefer **minimal, reversible** edits: - change delivery to `none` - slow cadence - add a digest job ## Quick start (operator) 1) Get current cron list (JSON): - If you have the OpenClaw tool: call `cron(list)` and save output. - If you are on terminal: `openclaw cron list --json > cron_jobs.json` (if available). 2) Run analyzer: ```bash python3 skills/aoi-cron-ops-lite/scripts/analyze_cron_jobs.py --in cron_jobs.json ``` ## Output format (expected) - 10–25 lines: - totals (enabled/disabled) - top risks (1–5) - recommended actions (grouped) - “apply plan” (explicit patches to run, but not executed) ## Pro version boundary (for later) - Pro may auto-apply safe patches (with policy + approvals), generate PR-like diffs for cron config, and maintain a history ledger. - Lite must never auto-apply.