소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 19일 19:49
- 감지된 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 doc-size-budget명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | doc-size-budget |
| description | Slim docs to byte targets (SOUL 10K, AGENTS gates) safely. |
| version | 1.0.0 |
| author | Hermes Cortex |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["docs","compression","size-budget","soul","agents","governance"],"related_skills":["doc-freshness","soul-refinement","documentation-auditing"]}} |
Instruction docs (SOUL.md, AGENTS.md) carry byte budgets enforced by the doctor (SOUL: WARN >15K, FAIL >20K) or by explicit user targets ("get SOUL to 10k"). Shrinking them is not free-form editing: enforcement layers count specific markers, titles, and headings, and the merge tool that propagates template → deployed copies is add-only — a wrong trim permanently WARNs/FAILs every deployed copy fleet-wide.
| Layer | What it counts | Wrong trim's consequence |
|---|---|---|
Doctor _extract_soul_markers | - ** list bullets ONLY (Core Traits) | Consolidating trait bullets = permanent reverse-drift WARN on every deployed copy (soul-merge never removes them) |
Doctor check_soul_sync | ### N. Title principle headings (title-key matched) | Removing a canonical title = FAIL "missing canonical principles" |
soul-merge _find_missing_subpoints | **marker** prefix anywhere in a principle body | Renaming/merging markers = OLD marker stays + NEW one added on deployed = duplication, not consolidation |
| agents-doc-audit | heading regexes (^## Identity, ^## Core Mission, …) | Removing a heading = commit-gate FAIL |
Safe to compress freely (proven 2026-08-19: SOUL template 14,737 → 10,032 B):
### Book — is the daily-bible
cron's next-book anchor); archive the rest to ~/brain/<agent>/bible/.Luke 2026-08-19: "You are literally WASTING MONEY!" — an agent looped rewriting the same file from memory while claiming to compress; byte count never changed.
str.replace), then wc -c. Never rewrite the whole file from memory
each iteration — the model silently re-pastes identical bytes.applied: n / total) before declaring progress. Print a per-section size
breakdown to find the real fat instead of guessing.read_file the original; measure wc -c; enumerate the
mandatory anchors (headings) and marker lines that must survive.re.findall(r'^### \d+\.', text, re.M)), trait bullets
(r'^- \*\*([^*]+)\*\*'), sub-point markers (r'^\*\*([^*]+)\*\*'), and
every mandatory section heading. Save the counts.str.replace, counting hits and misses. Re-measure.soul-merge.py --check for idempotency.soul-merge.py (updates
deployed), run the doctor (check_soul_sync PASS, size ≤ WARN), run
agents-doc-audit.py --repo . --json (missing sections == []).cortex-update.sh BEFORE git push (doc changes: the enforcement chain is
commit → deploy → push).- ** bullet names; shorten only their prose.wc -c docs/templates/SOUL.md ≤ target; deployed ≤ 15,360 (WARN) / 20,480 (FAIL)✅ SOUL.md template sync, ✅ SOUL.md canonical 12, ✅ SOUL.md reverse drift, no FAILssoul-merge.py --check → exit 0 ("up to date")agents-doc-audit.py --repo . --json → missing_sections: []git log --oneline -1 origin/main shows the pushed commit