소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 18일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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