원클릭으로
worktree
Prepare any git worktree by copying shared files from the main checkout using git common-dir metadata.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Prepare any git worktree by copying shared files from the main checkout using git common-dir metadata.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use git-cz or Commitizen to create semantic git commits and configure repositories for guided commit message generation. Use when the user asks to run `git cz`, `git-cz`, set up Commitizen, customize changelog.config.js, or produce non-interactive conventional commits.
Enforce secure and reproducible GitHub Actions workflows by pinning every action to an immutable commit SHA with an explicit version comment.
Docker and Docker Compose best practices for reliable local/dev deployments and multi-arch image publishing. Use when writing or reviewing Dockerfiles, Compose files, or CI publish workflows.
Elixir and Phoenix best practices for interactive development, debugging, testing, and routine code changes. Use when writing, reviewing, or troubleshooting Elixir application code, Mix tasks, Ecto code, or Phoenix features.
Create, update, and review Architecture Decision Records using the MADR minimal template.
Maintain CHANGELOG entries following Keep a Changelog 1.1.0 with project-aligned versioning. Use when creating, updating, or reviewing changelog content for releases.
| name | worktree |
| description | Prepare any git worktree by copying shared files from the main checkout using git common-dir metadata. |
Prepare a worktree by copying shared local files from the main checkout.
.envAGENTS.override.mdMAIN_ROOT="$(cd "$(git rev-parse --git-common-dir)/.." && pwd)"test -f "$MAIN_ROOT/$file"mkdir -p "$(dirname "$file")"cp "$MAIN_ROOT/$file" "$file"