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:0
forks:0
updated:May 6, 2026 at 18:18
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | worktree-setup |
| description | Create git worktree and branch for a new track |
| disable-model-invocation | true |
| argument-hint | ["track-name"] |
You are setting up a git worktree for a RALF agent track. Follow these steps exactly.
The track name is provided in $ARGUMENTS. If not provided, ask the user.
git rev-parse --show-toplevel<parent>/<project-name>-<track-name>feature/<track-name>Check that:
feature/<track-name> does not already exist: git branch --list feature/<track-name>ls <worktree-path>tracks/active/<track-name>.mdIf the branch already exists, ask the user if they want to reuse it or pick a new name. If the track file does not exist, warn the user and ask if they want to continue anyway.
Run:
git worktree add <worktree-path> -b feature/<track-name>
Verify success by checking:
git worktree list
Ask the user if they want to open a draft PR now. If yes:
First push the branch:
git -C <worktree-path> push -u origin feature/<track-name>
Then create the PR:
gh pr create --draft \
--title "[Track] <track-name>: <goal from track file>" \
--body "Track spec: tracks/active/<track-name>.md" \
--head feature/<track-name>
Output:
=== Worktree Ready ===
Worktree path: <worktree-path>
Branch: feature/<track-name>
Track spec: tracks/active/<track-name>.md
PR: <URL or "not created">
To start an agent on this track:
cd <worktree-path>
claude "Read tracks/active/<track-name>.md and begin Phase 1"