with one click
worktree
Git worktree 관리 + 커밋 자동 기록. "워크트리", "worktree", "작업 분기" 키워드에 활성화.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Git worktree 관리 + 커밋 자동 기록. "워크트리", "worktree", "작업 분기" 키워드에 활성화.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | worktree |
| description | Git worktree 관리 + 커밋 자동 기록. "워크트리", "worktree", "작업 분기" 키워드에 활성화. |
프로젝트에 git worktree 시스템을 설정하고, 매 커밋마다 이력을 자동 기록합니다.
| 스크립트 | 용도 |
|---|---|
wt-init.sh | 프로젝트에 worktree 시스템 초기화 |
wt-create.sh <name> | 새 워크트리 생성 |
wt-list.sh | 워크트리 목록 + 커밋 이력 조회 |
wt-switch.sh <name> | 워크트리로 이동 |
wt-cleanup.sh <name> | 워크트리 제거 |
bash ~/.codex/skills/worktree/scripts/wt-init.sh
이 명령은:
.worktrees/ 디렉토리 생성 (log/, active/, hooks/, archived/).gitignore에 .worktrees/ 추가bash ~/.codex/skills/worktree/scripts/wt-create.sh feature-auth
# 특정 브랜치 기반:
bash ~/.codex/skills/worktree/scripts/wt-create.sh hotfix-login main
cd $(bash ~/.codex/skills/worktree/scripts/wt-switch.sh feature-auth)
bash ~/.codex/skills/worktree/scripts/wt-list.sh
bash ~/.codex/skills/worktree/scripts/wt-cleanup.sh feature-auth
# 미커밋 변경 강제 제거:
bash ~/.codex/skills/worktree/scripts/wt-cleanup.sh feature-auth --force
<project>/
├── .worktrees/ ← .gitignore에 추가됨
│ ├── hooks/wt-log.sh ← self-contained 커밋 기록기
│ ├── log/ ← 커밋별 상세 기록
│ │ └── 2026-03-02_abc1234.md
│ ├── active/ ← git worktree 디렉토리들
│ │ └── feature-auth/
│ ├── archived/ ← 제거된 워크트리 기록
│ └── HISTORY.md ← 전체 커밋 이력 테이블
└── .git/hooks/post-commit ← wt-log.sh 호출
초기화 후 어떤 worktree에서 커밋하든 자동으로:
.worktrees/log/YYYY-MM-DD_<hash>.md — 상세 기록 (변경 파일, diff stats).worktrees/HISTORY.md — 한 줄 요약 테이블.worktrees/는 로컬 전용 (.gitignore에 추가됨).worktrees/hooks/wt-log.sh가 독립 동작Nano Banana 2로 이미지 생성/편집. 블로그 이미지, 썸네일, 아이콘, 다이어그램 등. "이미지 생성", "그려줘", "만들어줘" 키워드에 활성화.
Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-blocking operations.
TypeScript 및 빌드 에러를 점진적으로 수정. "빌드 에러", "build error", "컴파일 에러" 키워드에 활성화.
변경사항 커밋, 푸시, PR 생성을 한 번에 수행. "커밋", "PR", "푸시" 키워드에 활성화.
컨텍스트 관리 가이드. Codex 세션에서의 효율적인 컨텍스트 관리 방법 안내. "컨텍스트", "세션 관리" 키워드에 활성화.
현재 프로젝트의 코드 변경사항을 분석하여 /docs/ 폴더에 문서를 자동 생성합니다. "문서화", "docs", "문서 생성" 키워드에 활성화.