Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:2,713
forks:110
updated:May 6, 2026 at 03:22
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | wt |
| description | Create a git worktree in worktree/ subdirectory with up-to-date master |
| argument-hint | <branch-name> |
| allowed-tools | Bash |
Create a new worktree in worktree/<branch-name> with branch <branch-name>.
# Return to repo root
cd "$(git rev-parse --show-toplevel)"
# Pull latest master
git checkout master
git pull origin master
# Create worktree
git worktree add worktree/"$ARGUMENTS" -b "$ARGUMENTS"
# Initialize submodules (skills-vendor)
git -C worktree/"$ARGUMENTS" submodule update --init --recursive
# Navigate to worktree
cd worktree/"$ARGUMENTS"
# Confirm location and branch
echo ""
echo "✅ Worktree created and ready:"
echo " Location: $(pwd)"
echo " Branch: $(git rev-parse --abbrev-ref HEAD)"
echo ""
echo "You can now work in this isolated environment."
.claude/skills/ workflowscd ../.. && git worktree remove worktree/"$ARGUMENTS"git worktree list