소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 19일 05:47
- 감지된 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-output-diagnostics명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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-output-diagnostics |
| version | 1.0.0 |
| category | devops |
| description | Use when a cron delivery is flagged or looks wrong. |
| author | Hermes Cortex |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["cron","diagnostics","watchdog","quality","silent","triage"],"related_skills":["cron-quality-gate","cron-format-standard","cron-job-management"]}} |
Use when a cron delivery looks wrong: a quality-watchdog alert (🟠/🟡/🔴), a suspiciously short or oddly-formatted response, or repeated identical cron outputs. Triage before touching anything — most flags are either a one-off model deviation or a watchdog false positive, not a broken job.
Pull the ## Response section from recent output files
(~/.hermes/cron/output/<job-id>/2026-*.md) and compare byte-hashes:
fallback_providers in ~/.hermes/config.yaml for known-bad models
(e.g. qwen2.5-coder:3b) and pin provider/model explicitly.The quality watchdog (agent-cron-quality-watchdog, every 10 min) evaluates
only the LATEST output file per LLM-driven job. Known verdicts:
| Flag | Likely verdict |
|---|---|
🟠 short response (<100 chars) whose content is ["SILENT"] / [ SILENT ] / '[SILENT]' | FALSE POSITIVE — JSON/whitespace-wrapped healthy no-op. The watchdog's [SILENT] exemption is a LITERAL match (response == "[SILENT]"), so wrapped variants fall through to the short-response garbage check. Still a real contract breach: the wrapped variant was DELIVERED to the user (suppression requires the exact bare token). |
| 🟠 identical alert repeating every 10 min | ONE stale bad run, not N failures — the watchdog has NO dedup; it re-flags the same latest output until the job's next run replaces it. Check the output file timestamp before reacting. |
🔴 QUALITY_G_BLOCKED | Agent self-blocked (model stall / gate failed) — real. |
| 🔴 known-bad fallback model | Real (garbage delivered with last_status: ok during provider outage). Fix: hermes fallback remove. |
The watchdog script lives at ops/scripts/health/ — orchestrator-only
(shared repo; the pre-commit hook blocks ops/scripts/ staging for workers).
Workers do NOT edit it. The compliant path:
cronjob action='update':
require the bare [SILENT] literal — "never JSON-wrapped, quoted, or in a
code block" — plus a quality-gate self-check item ("is [SILENT] the bare
literal token?"). Note: install-script prompt edits do NOT propagate to
existing jobs — the live update is the only lever.bash ~/.hermes-cortex/scripts/contact-orchestrator.sh \
"📝 PROPOSAL: <what>" "<patch description incl. exact line numbers>" normal
→ lands in the shared inbox_orchestrator (verified working 2026-08-19).
3. Verify: re-read the stored prompt from ~/.hermes/cron/jobs.json;
the next scheduled tick replaces the stale output; run the doctor
(cortex-doctor.py --quiet) and confirm no new warnings.
2026-08-19: agent-inbox-workday JSON-wrapped-SILENT false positive — full
evidence trail and the proposed watchdog normalization:
references/silent-json-wrapper-case.md.
cronjob action='run' to "test" the fix. Manual
runs are tool-restricted by design (no governance MCP tools; enforcer
fail-closes writes) and can half-process real inbox messages. The natural
tick is the real dogfood — verify from its output file afterward.~/.hermes-cortex/scripts/) —
it is overwritten by cortex-update.sh, and the repo source is
orchestrator-only. Never --no-verify around it.deliver: "origin" on cron jobs created from a script/CLI context
delivers nowhere — a silent watchdog can look healthy while being
invisible. Confirm the alert destination when triaging.