AI SummaryGoAgent automates the creation of git worktrees for feature branches, enabling developers to work on isolated features without switching branches. Useful for teams practicing feature-branch workflows who want faster context switching within Claude Code.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "GoAgent" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (6 files) mkdir -p .claude/skills/commands && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/SKILL.md "https://raw.githubusercontent.com/asynkron/GoAgent/main/.claude/commands/wt.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/bugreport.md "https://raw.githubusercontent.com/asynkron/GoAgent/main/.claude/commands/bugreport.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/layered-test.md "https://raw.githubusercontent.com/asynkron/GoAgent/main/.claude/commands/layered-test.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/log-progress.md "https://raw.githubusercontent.com/asynkron/GoAgent/main/.claude/commands/log-progress.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/roadmap.md "https://raw.githubusercontent.com/asynkron/GoAgent/main/.claude/commands/roadmap.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/test-bomb.md "https://raw.githubusercontent.com/asynkron/GoAgent/main/.claude/commands/test-bomb.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Create a git worktree for a feature (project)
Examples
Create a worktree for a new feature: ` /wt type-narrowing ` This will: • Create ../Asynkron.JsEngine-type-narrowing worktree • Create branch feature/type-narrowing • Prompt you to start a new Claude Code session there
Cleanup
When done with the feature (after PR is merged), run from the main repo: `bash git pull origin main git worktree remove ../Asynkron.JsEngine-<featurename> --force git branch -D feature/<featurename> `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster