# Git Agent Sync A CLI tool that manages isolated git worktrees for AI coding agents. ## Installation ```bash npm install -g git-agent-sync ``` ## Usage ### Create a new agent workspace ```bash git-agent-sync create ``` This creates an isolated git worktree for the specified AI agent. ### List all workspaces ```bash git-agent-sync list ``` ### Check workspace status ```bash git-agent-sync status ``` ### Generate diff for review ```bash git-agent-sync diff ``` ### Merge changes back to main ```bash git-agent-sync merge ``` ### Destroy a workspace ```bash git-agent-sync destroy ``` ## License MIT