thinkfleetai/thinkfleet-engine

git-worktree

Manage git worktrees for parallel development — create, list, and remove isolated working directories.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill git-worktree

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from thinkfleetai/thinkfleet-engine

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,219 B
  • docs SUMMARY.md 124 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Git Worktree

Manage git worktrees for parallel, isolated development.

Create a worktree

git worktree add .worktrees/IDENTIFIER -b feature/IDENTIFIER main

Creates a new worktree at .worktrees/IDENTIFIER on branch feature/IDENTIFIER based off main.

List worktrees

git worktree list

Shows all active worktrees with their paths, HEAD commits, and branch names.

Remove a worktree

git worktree remove .worktrees/IDENTIFIER --force
git branch -D feature/IDENTIFIER

Removes the worktree directory and deletes the associated branch.

Prune stale worktrees

git worktree prune

Cleans up stale worktree references (e.g., after manually deleting a directory).

Notes

  • Worktrees allow multiple branches to be checked out simultaneously in separate directories.
  • Each worktree has its own working directory but shares the same .git repository.
  • Always confirm before removing worktrees that may contain uncommitted changes.