소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 24일 09:09
- 감지된 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 reliable-agent-design명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | reliable-agent-design |
| description | Use when designing or improving LLM agent workflows. |
| version | 1.0.0 |
| category | devops |
| author | Hermes Cortex |
| license | MIT |
| platforms | ["linux","macos"] |
Distilled from Dexter Horthy (HumanLayer, 12-Factor Agents, coined "context engineering") via the David Ondrej podcast (2026-08) and the public 12-factor-agents repo. These are the patterns that separate "demo agent" from "production agent" — use them when building or improving agent workflows in hermes-cortex.
| # | Factor | Essence | hermes-cortex status |
|---|---|---|---|
| 1 | Natural language → tool calls | NLI is the primitive | ✅ tools everywhere |
| 2 | Own your prompts | Versioned, explicit, no hidden strings | ✅ SOUL/AGENTS/skills |
| 3 | Own your context window | Token density, no junk, right format | ⚠️ lean modes exist; no dumb-zone discipline |
| 4 | Tools are structured outputs | Schema-first tool definitions | ✅ MCP tools |
| 5 | Unify execution + business state | One source of truth | ✅ task-db v2 + loop-gov DB |
| 6 | Launch/pause/resume | Durable, resumable workflows | ✅ cron + governance locks |
| 7 | Contact humans with tool calls | request_human_input as a tool (urgency/format/choices) | ✅ clarify tool, pushback gate |
| 8 | Own your control flow | Deterministic DAG, not prompt hopes | ✅ enforcer + hooks |
| 9 | Compact errors into context | Self-heal ≤3 retries, then escalate | ✅ auto-remediation |
| 10 | Small, focused agents | One agent per concern | ✅ 60+ focused crons |
| 11 | Trigger from anywhere | cron/webhook/chat entry points | ✅ full |
| 12 | Stateless reducer | Fold over event history | ⚠️ partially |
| +13 | Pre-fetch context | Deterministically fetch likely-needed context; free CPU ≠ inference | ❌ missing — session-start pre-fetch hook |
Before letting an agent "cook", walk these four stages in order — decisions are cheap up front, expensive after thousands of lines:
Key insight: "If you can tell it a measurable output, the agent will move mountains." Deterministic back-pressure (a number: conversion, latency, resource use) beats LLM-as-judge vibes.
Priority order (see references/dexter-12-factor-agents-research.md for the full research + mapping):
docs/adr/ (explicit decisions: API contract /v2 policy, pricing) + docs/external/ (env var NAMES, service topology, test accounts) — context engineering for every agentreferences/dexter-12-factor-agents-research.md — full video salient points, 12-factor detail, and the hermes-cortex gap analysis