From claude-unity-harness
Loads session context by reading .claude/project-memory.json, .claude/claude-progress.txt, and git history. Usage: /context-load Runs the standard session startup routine: read project memory, check git log, verify current state, then present what to work on next. Run at the start of every work session to get up to speed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-unity-harness:context-loadhaikuThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
git rev-parse --show-toplevel 2>/dev/null || pwd
출력된 경로를 PROJECT_ROOT 로 기억한다.
이후 모든 파일 읽기는 절대 경로를 사용한다:
<PROJECT_ROOT>/.claude/project-memory.json 등
<PROJECT_ROOT>/.claude/project-memory.json Read (있으면 — 가장 구조화된 컨텍스트).
없으면 → <PROJECT_ROOT>/.claude/claude-progress.txt Read.
둘 다 없으면 → "/setup 으로 프로젝트를 초기화하세요." 출력 후 종료.
<PROJECT_ROOT>/.claude/feature_list.json 파일 Read (있으면).
passes: false 인 항목 수와 다음 작업할 기능 확인.
git log --oneline -10 2>/dev/null || echo "git 이력 없음"
## 세션 복구 완료
### 마지막 작업
(.claude/claude-progress.txt 의 세션 이력 최근 항목)
### 현재 진행 상황
(.claude/claude-progress.txt 의 현재 진행 상황)
### 최근 커밋
(git log 결과)
### 다음 작업
(.claude/feature_list.json 의 passes: false 중 최우선 항목)
### 알려진 이슈
(.claude/claude-progress.txt 의 알려진 이슈)
"1번 작업부터 시작할까요?" 또는 "어떤 작업을 시작할까요?" 질문.
npx claudepluginhub cwp10/claude-unity-harness --plugin claude-unity-harnessRecalls project context via ctx CLI: loads context packet, reads TASKS.md/DECISIONS.md, lists recent sessions, presents structured readback of last session, active tasks, recent decisions, next steps. For memory questions or session starts.
Restores session context from a previous Claude Code session after context resets, compaction, or new conversations. Checks for handoff files and project state to resume work.