소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 24일 01:10
- 감지된 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 config-drift-diagnostics명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | config-drift-diagnostics |
| version | 1.0.0 |
| category | devops |
| description | Container configs stale? Compare vs source in 3 locations. |
| author | Gisu |
| license | MIT |
| platforms | ["linux","macos"] |
A Docker container is failing with auth errors (401, JDBC password failure)
and you suspect the config inside doesn't match the source .env or templates.
.env → envsubst → generated configs → Dockerfile COPY → container image
A stale image is the most common drift source: .env or templates updated,
generate-configs re-run, but image never rebuilt.
# (1) What the container has
docker exec <c> grep key /path/to/config.properties
# (2) What build SHOULD produce
grep key generated/.../config.properties
# (3) What .env says
grep VARIABLE .env
| Result | Interpretation |
|---|---|
| (1)≠(2) | Image built from stale generated — rebuild |
| (2)≠(3) | generate-configs not re-run — regenerate first |
| All match | Problem is elsewhere |
stat generated/.../config.properties
docker inspect <c> --format '{{.Created}}'
Config generated AFTER container created = stale image.
cd <project>
source .env
./run generate-configs
./run build <service>
docker compose up -d <service>
docker exec <c> grep key /path/to/config.properties
curl ... # returns non-401?
| Variant | Symptom | Fix |
|---|---|---|
| DB password | JDBC auth failure | regenerate + rebuild |
| API key | 401 on API calls | regenerate + rebuild |
| Wrong env | Prod creds on stage | Set CLIENT_ENVIRONMENT + rebuild |
docker compose up -d without --build — does NOT rebuild