Skip to main content

using-git-worktrees

Facilitates the creation of isolated Git worktrees for feature development, ensuring safe directory selection and verification.

Install this skill

or
97/100

Security score

The using-git-worktrees skill was audited on Aug 18, 2026 and we found 3 security issues across 1 threat category. Review the findings below before installing.

Categories Tested

Security Issues

low line 21

Command substitution pattern

SourceSKILL.md
19
20```bash
21GIT_DIR=$(cd "$(git rev-parse --git-dir)" 2>/dev/null && pwd -P)
22GIT_COMMON=$(cd "$(git rev-parse --git-common-dir)" 2>/dev/null && pwd -P)
23BRANCH=$(git branch --show-current)
low line 22

Command substitution pattern

SourceSKILL.md
20```bash
21GIT_DIR=$(cd "$(git rev-parse --git-dir)" 2>/dev/null && pwd -P)
22GIT_COMMON=$(cd "$(git rev-parse --git-common-dir)" 2>/dev/null && pwd -P)
23BRANCH=$(git branch --show-current)
24```
low line 23

Command substitution pattern

SourceSKILL.md
21GIT_DIR=$(cd "$(git rev-parse --git-dir)" 2>/dev/null && pwd -P)
22GIT_COMMON=$(cd "$(git rev-parse --git-common-dir)" 2>/dev/null && pwd -P)
23BRANCH=$(git branch --show-current)
24```
25
Scanned on Aug 18, 2026
View Security Dashboard
Installation guide →