بنقرة واحدة
using-git-worktrees
병렬 개발, dirty main 보호, auto-dev 격리 작업이 필요할 때 git worktree를 안전하게 사용하는 절차.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
병렬 개발, dirty main 보호, auto-dev 격리 작업이 필요할 때 git worktree를 안전하게 사용하는 절차.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Blog writing operations: concrete drafts, diagnosis, comment strategy, external sources, and recurring gotchas.
사용자 요청을 Blog, Luna, Darwin, Sigma, Ska, Hub/Orchestrator 등 적절한 팀과 런타임으로 라우팅할 때 사용.
Use for non-trivial production code changes that require expert challenge and consensus, test-first implementation, soft and read-only hard verification, runtime and DB consistency checks, refactoring discipline, and an independent code-review gate.
Use when diagnosing or improving Luna investment-team autonomous operation bottlenecks, especially the 30-minute Codex automation loop, live-fire watchdog issues, LLM hot-path overuse, discovery funnel stalls, marketdata connectivity, reconcile blockers, or safe fix planning.
Hub routing, resilience, alarm lifecycle, and Sigma feedback operations.
Darwin research cycle operations: cycle overview, predicate authoring, adopt review, and recurring gotchas.
| name | using-git-worktrees |
| description | 병렬 개발, dirty main 보호, auto-dev 격리 작업이 필요할 때 git worktree를 안전하게 사용하는 절차. |
main worktree에 사용자 변경이 있거나 여러 작업을 병렬로 진행할 때, 변경 범위를 격리해 오염을 막는다.
git status --short로 dirty 파일을 기록한다.codex/ 또는 작업 전용 branch를 사용한다.git checkout --, git reset --hard로 정리하지 않는다.git status --short가 비어 있는지 확인한다.git status --short
git worktree add ../ai-agent-system-<task> -b codex/<task>
git -C ../ai-agent-system-<task> status --short