소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 21일 20:03
- 감지된 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 sweep-verification명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | sweep-verification |
| version | 1.0.0 |
| category | devops |
| description | Verify a decommission sweep removed every file and ref. |
| author | Esther |
| license | MIT |
| platforms | ["linux","macos"] |
Use when asked to "double check / make sure X is completely removed" after a
rename or decommission sweep (legacy-brain → mycortex, service renames).
Performing the sweep is rename-sweep's job; THIS skill is
the independent verification pass that finds the leftovers the sweep missed.
git grep -il <token> -- . (count + list)git ls-files | grep -i <token>grep -rli excluding .git/__pycache__/.venv/node_modules, plus find . -iname '*<token>*'~/.hermes-cortex: grep excluding logs/pycache/backups. Deploy never prunes → stale files linger here (see pitfall 1)cron/jobs.json (0 expected), cron/scripts, plugins/, config.yaml, memories/, SOUL.md, AGENTS.md, skills/ (deployed copies), agent-profiles/*/SOUL.md (profile templates seed other hosts' SOULs — a stale ref here ships to the fleet)sessions/, state-snapshots/, cron/output/ (old run records)loop-events/*.jsonl, loop-governance.db (audit trail — task IDs legitimately mention the token), state/ (dead state files with old keys, e.g. agent-health-data.json — check readers before deleting)SELECT ... WHERE content ILIKE '%<token>%' AND status IN ('pending','in_progress') (active rows should be 0)Every hit is one of three buckets; treat them differently:
| Bucket | Examples | Action |
|---|---|---|
| LIVE | deployed scripts, cron, config, SOUL profiles, registry/health-vector keys, stale deployed files, dead state files | Fix/remove now |
| HISTORICAL | brain lessons, dated skill event records, logs, session dumps, backups (dumps, deploy-backups, scripts-unique-backup-*), loop audit trail, bus archives, curator metadata | Keep — deleting destroys the fleet's record (the file itself may even say "it IS the record") |
| CREDENTIAL | .env values whose NAME contains the token (e.g. CORTEX_BUS_PG_PASS=<legacy>_pg_pass) | Flag only — never touch a live credential mid-task; rotation is a deliberate multi-host change |
The audit's own files classify stale refs as "historical doc/log/skill text → leave as-is (it IS the record)". Deleting history to reach zero violates the keep-logs precedent and permanently destroys knowledge that exists nowhere else (many such files are deployed-only, never in git).
~/.hermes-cortex/services/mycortex/import-<legacy>.py,
stale skill references/*.md, old __pycache__/*.pyc. Find them with
comm -13 <(ls repo-dir | sort) <(ls deployed-dir | sort) — deployed-only
extras are stale unless proven otherwise. Delete stale deployed files even
though git status stays clean.test_no_<token>_refs test that runs
git grep -il <token> fails on its OWN source. Fix:
git grep -il <token> -- . ':(exclude)tests/<guard-file>.py'.grep -rln "<name>" scripts/) before deleting.~/.hermes/agent-profiles/<agent>/SOUL.md
is a template merged into that agent's SOUL — a stale ref there reaches
another host. Check ALL profiles, not just your own.~/.hermes-cortex/scripts/, not the repo. Unit tests pass against repo
source while L2 fails → the fix isn't deployed. Run cortex-update.sh
(ops/scripts/) before L2, then re-run.pytest tests/test_repo_structure.py -q) + full suite.Session detail (legacy-brain sweep, 2026-08-21): references/legacy-brain-sweep-2026-08-21.md