用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lukemcqueen/hermes-cortex --skill cron-cost-scheduling命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Cross-server agent health monitoring using binary status vectors — deploy health endpoints on each agent, poll from orchestrator, alert on state transitions.
Wire a self-hosted Langfuse instance to Hermes Agent — generate API keys, configure env vars, enable the bundled plugin, install SDK, and verify traces flow.
Use before enforcement code changes or shared-repo commits.
正在显示 SKILL.md
| name | cron-cost-scheduling |
| version | 1.0.0 |
| category | devops |
| description | Schedule LLM crons around provider peak/off-peak windows. |
When a provider introduces time-of-use pricing (peak vs off-peak rates) and the
user asks whether LLM crons should be rescheduled to save money. Covers the
verification, classification, and decision procedure. Does NOT cover cost
metering (see cron-cost-tracking for the SQLite cost DB) — this is about
scheduling decisions.
Search results carry stale windows for months. The old DeepSeek "off-peak 16:30–00:30 UTC" card appeared in search results alongside the live card (2026-08-18). Always pull the provider's own pricing page and grep the window text:
curl -sL <pricing-url> -o /tmp/provider_pricing.html
grep -oiE '.{80}(peak hours|off-peak|UTC|discount).{80}' /tmp/provider_pricing.html
Docusaurus/Next.js doc pages render fine as static HTML — no browser needed.
If the pricing table only appears without its footnote, grep for utc and
peak separately; the footnote is usually below the table.
Windows are always stated in UTC. Seoul = UTC+9. DeepSeek live card (2026-08-18): "Peak hours are 01:00 - 04:00 and 06:00 - 10:00 UTC (all other hours are off-peak)" → Seoul peak = 10:00–13:00 and 15:00–19:00 KST, off-peak = 19:00–10:00 plus the 13:00–15:00 lunch gap. State the local windows explicitly in the delivery — don't make the user do the conversion.
Expand each cron's hour/minute fields (ranges 9-17, lists 18,20,22,
wildcards) and count peak hits per job. Most night/early-morning crons already
run off-peak — zero change needed; say so instead of proposing mass
rescheduling. Classification table for the DeepSeek case:
references/deepseek-peak-offpeak-2026-08.md.
agent-fixer-workday, cortex-bus-workday,
orch-backlog-driver). Their function beats the pennies (~$0.003–0.007
extra per peak run at flash rates). Rescheduling them to off-peak-only
guts the service to save cents.If cron-cost-tracking isn't deployed, deploy it and collect a week of real
spend rather than trimming on estimates. Cron-run spend is often trivial next
to interactive-session spend — the recommendation should say so.
curl + grep as in step 1 — the page is static HTML.cronjob action='list' output.cron-job-management — naming, install, doctor-sync for any schedule change you do makecron-cost-tracking — the SQLite cost DB that quantifies the actual spend