소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 27일 14:37
- 감지된 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 shared-repo-push-gates명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | shared-repo-push-gates |
| description | Shared-repo push blocked? Know the gates that block you. |
| version | 1.0.0 |
| author | Hermes Cortex (Esther) |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["git","push","governance","dogfood","concurrent","pii","enforcement"],"related_skills":["change-checklist","survey-before-action","git-deployment-workflow"]}} |
The shared fleet repo enforces commit/push gates. Know how they behave BEFORE pushing — most rejections are environmental (another session's working tree), not a problem with your diff.
~/hermes-cortex (the shared fleet repo)~/.hermes/skills)git diff HEAD --name-only, so a concurrent session's
unstaged/untracked files (e.g. a peer's in-flight script in
ops/scripts/) trip "code changes without docs" + "doctor reports N
failure" and block even a clean docs-only push. The dogfood run it
triggers then fails its own git pull --rebase step on those same
unstaged changes.write_file/skill_manage into the repo or ~/.hermes/skills). A
legitimate public site not on the allowlist gets flagged (2026-08-24: a
doc referencing a new public site was blocked as "non-public server URL
host"). Workaround: reference the site in prose without the scheme, and
use allowlisted hosts (github.com) for real links. Never try to bypass
the gate.adversarial-verifier skill required for commits while any
ops/scripts/ working-tree change exists — even for docs-only commits.
Load the skill, run
python3 ~/.hermes-cortex/scripts/adversarial-verify.py --file <your-staged-files> --level A2 --gate,
then commit.begin_change in a session whose lock was later purged
by restart/cortex-update. Symptom: push blocked with "doctor reports N
failure" + ❌ PENDING cycles, even after dogfood passes. Fix: query
mcp_loop_governance_cycle_query(unreviewed=true), feedback_accept
(or feedback_override) every orphaned PENDING cycle, re-run doctor to
0 fail, then push. The current task's own cycle (lock held) is INFO, not
a blocker.❌ Deploy sync /
❌ <plugin> content). After committing a repo change to a deployed
artifact (plugin, script), run bash ~/.hermes-cortex/scripts/cortex-dogfood.sh --force
(pull → deploy → doctor → verify) BEFORE git push — the gate runs the
doctor itself and will otherwise block.git status --short. Foreign unstaged/untracked files
present → expect the gate to block; plan for a later push.git add <yours>) — never git add -A in a
shared tree.git status --short before debugging your commit.git push origin main succeeds unchanged.