소스 정보
- 저장소
- 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 pipeline-debugging명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | pipeline-debugging |
| description | Check the data store and service logs before changing code. |
| version | 1.0.0 |
| category | devops |
| author | Gisu |
| license | MIT |
| platforms | ["linux"] |
| aliases | ["iswc-debugging","cisnet-debugging"] |
Pipeline bugs have three layers of truth:
These three are often different. The most common debugging mistake is changing code based on assumptions that the database and logs would contradict in seconds.
Before any code change, query the database tables that hold the entity's processing state. This reveals:
For the client ISWC/CIS-Net pipeline:
SELECT w.socworkcde, i.iswc, s.status, s.rejection_reason
FROM tblworkinfo w
LEFT JOIN tbliswc i ON i.dbkey = w.dbkey
LEFT JOIN tbliswcsync s ON s.dbkey = w.dbkey
WHERE w.socworkcde = '<work-code>';
Find the service-agent that processes the pipeline stage and grep for the entity's identifier:
# Find the logs
find /service/root -name "*.log" | head -20
# Grep for the entity
grep -ri '<entity-id>' /service/root/ 2>/dev/null
Key signals:
Map what the DB, logs, and code each say. If they disagree, the data store and logs are more reliable than the code — they show what actually happened.
Example from a real session: The code said "work exists in CIS-Net with no ISWC → send UPDATE." The DB said "status=REJECTED, no ISWC." The Tomcat ISWC Agent logs said "401 Unauthorized on updateAgentRun — agent crashing before processing." The actual root cause was an expired API key, not a code bug.
Only make code changes when the code is demonstrably wrong (DB + logs confirm the code path is incorrect). If the DB shows "service never processed the entity" and the logs show "service crashed on startup," fix the service — not the pipeline code.
After the fix, re-query the DB and re-check the logs to confirm the entity was processed. Don't claim the fix works until you can cite:
iswc_or_error nil fix was 2 lines
and fixed the "unknown error" cascade. Most pipeline fixes are small
when you identify the right break point.references/iswc-cisnet-pipeline-debugging-2026-07-29.md — full session
narrative for the client ISWC/CIS-Net pipeline debugging session