AI SummaryThis booster automates the creation of git worktrees for feature development in the Asynkron.JsEngine project, allowing developers to work on isolated branches without switching contexts. It's useful for teams using git worktrees as part of their development workflow.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Asynkron.JsEngine" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (11 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/Asynkron.JsEngine/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/Asynkron.JsEngine/main/.claude/commands/bugreport.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/build.md "https://raw.githubusercontent.com/asynkron/Asynkron.JsEngine/main/.claude/commands/build.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/codex.md "https://raw.githubusercontent.com/asynkron/Asynkron.JsEngine/main/.claude/commands/codex.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/duo.md "https://raw.githubusercontent.com/asynkron/Asynkron.JsEngine/main/.claude/commands/duo.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/layered-test.md "https://raw.githubusercontent.com/asynkron/Asynkron.JsEngine/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/Asynkron.JsEngine/main/.claude/commands/log-progress.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/pre-pr.md "https://raw.githubusercontent.com/asynkron/Asynkron.JsEngine/main/.claude/commands/pre-pr.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/profile.md "https://raw.githubusercontent.com/asynkron/Asynkron.JsEngine/main/.claude/commands/profile.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/roadmap.md "https://raw.githubusercontent.com/asynkron/Asynkron.JsEngine/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/Asynkron.JsEngine/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