소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 24일 10:24
- 감지된 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 task-queue-workflow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
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.
| name | task-queue-workflow |
| version | 1.0.0 |
| category | devops |
| description | Use when claiming task-db slices under task model v3. |
| author | Hermes Cortex |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["tasks","task-model-v3","orchestrator","worker","claim","verify","review","board"],"related_skills":["orch-backlog-driver","postgres-schema-design","loop-governance","change-test-loop"]}} |
docs/design/task-model-v3.md; schema: ops/services/tasks/schema/v009__task-model-v3.sql + v010__task-model-v3-matrix-fix.sqlTwo tiers, not role-locked domains (Luke 2026-08-24):
pending → (claim) → in_progress → (report) → review → (verify) → completed
└── (unclaim) ──┘ └── (verify --reject) → in_progress
review = worker-done-AWAITING-VERIFICATION. Not done. The orchestrator's
evening pass (19:00) clears it; a slice stuck >24h in review gets
auto-re-queued by the handler's stale sweep (Arm 3) — never auto-completed.task-db.py list --claimable # the worker queue: pending slices, no assignee, by priority
task-db.py claim <slice-id> # atomic pending→in_progress, assignee=me (self-only)
task-db.py unclaim <slice-id> --reason "<gap>" # return to pending (blocker, tool gap) — never fake progress
task-db.py report <slice-id> --evidence "<test output / measured numbers>"
# in_progress→review, awaiting orchestrator verify
task-db.py verify <slice-id> --approve --note "<what was checked>"
task-db.py verify <slice-id> --reject --note "<the gap>" # → back to in_progress
task-db.py list --board # counts + per-agent + review queue
profile_of(session_user) IN ('moses','esther'); workers get false.p_assignee must equal profile_of(session_user);
you can claim only FOR YOURSELF, never assign work to others.created_by must match the
caller; you can't unclaim or report someone else's work._require_v4 (schema 9). On an
older host, run bash cortex-update.sh first (the version-gated runner
applies v009/v010).Slices can run as parallel candidates: orch-compete-run.py <slice-id> --plan "APPROACH: ..." (≥2 approaches). Candidates judged DETERMINISTICALLY:
acceptance criteria met → fewest adversarial findings → lowest cost →
fastest. Never "which sounds better" (consistent with O4 autonomy rules).
references/v009-schema-lessons.md — the SQL/RLS gotchas behind the schema
(SECURITY DEFINER + session_user, column-derivation CHECK, guarded grants)docs/design/task-model-v3.md — the full design