一键导入
worktree
실험용 git worktree 생성/관리. Use when the user says "worktree", "실험 환경", "브랜치 분리", or needs an isolated experiment environment.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
실험용 git worktree 생성/관리. Use when the user says "worktree", "실험 환경", "브랜치 분리", or needs an isolated experiment environment.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guided onboarding workflow — modn guide leads the system setup. Use when the user says "tutorial", "onboarding", or is a first-time user.
Process Catalyst detections — verify scope, format output, route to discussion or initiative creation. Internal skill — called when a system improvement opportunity is detected during conversation.
현재 세션의 initiative 맥락을 다음 세션으로 넘기는 핸드오프 문서 작성. Use when the user says "핸드오프", "세션 정리", "다음 세션으로", or session handoff.
Initiative 주제에 대한 리서치를 수행하고 결과를 기록. Internal skill — called by initiative workflow during research phases.
핸드오프 문서를 로드하여 이전 세션의 initiative 맥락을 복원하고 작업을 재개. Use when the user says "이어서 하자", "resume", "지난번 작업 계속", or continuing a previous initiative.
CL-05 User Profile Evolution pipeline. Extracts user patterns and updates profile at Initiative completion.
| name | worktree |
| description | 실험용 git worktree 생성/관리. Use when the user says "worktree", "실험 환경", "브랜치 분리", or needs an isolated experiment environment. |
Skill Type: worktree Version: 1.1.0 Purpose: 독립 실험 환경을 위한 git worktree 생성/관리
아키텍처 변경, A/B 설계 비교, ST별 독립 실험 등 메인 브랜치를 오염시키지 않아야 하는 검증 작업이 빈번하다. git worktree로 독립 작업 디렉토리를 생성하여, 실험 결과가 메인에 반영되지 않는 격리된 환경을 체계적으로 관리한다.
| 항목 | 규칙 |
|---|---|
| 위치 | ../vatty-[slug]-wt (sibling 디렉토리) |
| 브랜치명 | experiment/[slug] |
| 수명 | 실험 완료 후 즉시 제거 (채택 또는 기각) |
| slug 형식 | [initiative]-[topic] kebab-case |
/worktree:create [slug]# worktree 생성
git worktree add ../vatty-[slug]-wt -b experiment/[slug]
생성 후:
../vatty-[slug]-wt/ 디렉토리에서 진행git worktree list로 활성 worktree 목록 확인/worktree:clean [slug]# worktree에서 커밋 완료 후
git merge experiment/[slug] # 또는 cherry-pick
git worktree remove ../vatty-[slug]-wt
git branch -d experiment/[slug]
git worktree remove ../vatty-[slug]-wt
git branch -D experiment/[slug]
experiment/[slug] 브랜치에만 존재. main에 반영하려면 명시적 merge/cherry-pick 필요git worktree list로 완료된 worktree 확인 후 제거| 조건 | 분기 |
|---|---|
| 실험 완료 + 결과 채택 | merge/cherry-pick 후 worktree 제거 |
| 실험 완료 + 결과 기각 | worktree + branch 즉시 제거 |
| 동시 활성 worktree 2개 이상 | context 분산 경고, 기존 worktree 정리 제안 |
git worktree list에 완료된 worktree 존재 | 정리 권고 |
None -- main context execution. git worktree 명령은 오케스트레이터가 Bash로 직접 수행한다.
worktree: experiment/[slug] 명시 권장research/internal/에 기록 후 worktree 제거worktree: experiment/[slug] 명시 권장