ソース情報
- リポジトリ
- dlt-hub/dlt
- ソースの最終更新活動
- 2026年2月18日 10:43
- 検出された SKILL.md の言語
- 英語
- スター
- 5,747
- フォーク
- 587
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/dlt-hub/dlt --skill switch-worktreeコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Create or reuse a git worktree for a pull request or branch so reviews and work happen in isolation
Triage, plan, and implement a fix or feature for a GitHub issue end-to-end
Create a git worktree with a new branch for implementing a fix or feature for a GitHub issue
SOC 職業分類に基づく
SKILL.md を表示中
| name | switch-worktree |
| description | Switch the current session to work in an existing git worktree |
| argument-hint | <worktree-name> |
Switch the current session to an existing worktree.
If $ARGUMENTS is empty, list available worktrees and ask the user to pick one:
git worktree list
Otherwise, let NAME = $ARGUMENTS. The worktree path is <repo-root>/.worktrees/<NAME>.
Verify the worktree exists in git worktree list output. If not, stop with an error.
Let WORKTREE = the absolute path to the worktree.
cd WORKTREE
Then verify the switch took effect:
pwd
If pwd does not show WORKTREE, stop with an error — the cwd did not persist.
Switched to worktree: WORKTREE
Branch: <current branch from git branch --show-current>