docs(session): add restart-safe recovery workflow

Context:

- codex cli 중단 후에도 작업 품질과 맥락을 안정적으로 복구하기 위해

Changes:

- docs/00~07, 90 문서 세트 추가/정리

- commit convention 문서 및 .gitmessage-session.txt 템플릿 추가

- scripts/session/recover-context.sh 추가

- package.json에 session:recover 스크립트 추가

Validation:

- npm run session:recover

Session-State: session recovery docs, template, and script are in place

Session-Next: apply this commit format to feature and refactor commits

Session-Risks: legacy commits before this change do not include session trailers
This commit is contained in:
2026-02-27 13:27:20 +09:00
parent d2be0b866a
commit ecb17a485a
14 changed files with 519 additions and 1 deletions

25
docs/README.md Normal file
View File

@@ -0,0 +1,25 @@
# Docs Index
Codex CLI가 중간에 끊겨도 같은 품질로 작업을 이어가기 위한 운영 문서 모음입니다.
## 우선 읽기 순서
1. [00_project_brief.md](./00_project_brief.md)
2. [01_ui_guidelines.md](./01_ui_guidelines.md)
3. [02_arch_fsd_rules.md](./02_arch_fsd_rules.md)
4. [03_routes_map.md](./03_routes_map.md)
5. [90_current_state.md](./90_current_state.md)
## 추가 실무 가이드
- [04_coding_rules.md](./04_coding_rules.md)
- [05_handoff_checklist.md](./05_handoff_checklist.md)
- [06_commit_convention.md](./06_commit_convention.md)
- [07_session_recovery.md](./07_session_recovery.md)
## 운영 원칙
- 구현 범위는 항상 UI 목업 + 더미 데이터 + 토스트 수준으로 유지한다.
- `page.tsx`는 조합만 담당하고 비즈니스 로직은 `features/widgets/entities`로 이동한다.
- 작업 종료 시 `90_current_state.md`를 반드시 업데이트한다.
- 세션 복구는 `npm run session:recover`로 시작한다.