© 2026 YOLOX SYSTEM. ALL RIGHTS RESERVED.
Gives your agent the ability to set up isolated git worktrees for feature development without switching branches in your main workspace.
When starting a new feature that needs isolation from your current workspace
When working on multiple branches simultaneously without the overhead of git stash
When executing complex implementation plans that require a clean, separate environment
Announce that you are setting up an isolated workspace using git worktrees
Choose a directory location like .worktrees/ and verify it is git-ignored
Create the new worktree and branch using 'git worktree add'
Run project setup (npm install, etc.) and verify a clean test baseline
You
I need to work on the 'auth-feature' in a separate environment.
Agent
I'll set up an isolated worktree for you. I'll first check if '.worktrees/' exists and is properly ignored in your '.gitignore'. Then, I'll create a new worktree at '.worktrees/auth-feature' on a new branch, run your project setup, and verify that all tests pass before I start implementing the feature.
Gives your agent the ability to manage complete Git lifecycles, from branch creation and commits to complex merges and conflict resolution.
Gives your agent the ability to find and invoke specialized skills to ensure tasks are completed following expert guidelines.
Gives your agent the ability to write professional, structured commit messages following conventional standards for clear version control history.
Gives your agent the ability to manage external Git repositories as submodules within your main project for modular dependency management.
Install npm packages directly from GitHub repositories using git URLs for private repos, specific branches, or unreleased versions.
© 2026 YOLOX SYSTEM. ALL RIGHTS RESERVED.