AC Workspace Manager Manage git worktrees for isolated autonomous development. Purpose Provides workspace isolation using git worktrees, enabling parallel development and safe rollback without affecting the main branch. Quick Start Worktree Strategy Workflow 1. Create : New worktree from main branch 2. Develop : All changes in isolated workspace 3. Review : Review changes before merge 4. Merge : Merge back to main 5. Cleanup : Remove worktree API Integration - Used by: for session isolation - Uses: for rollback points API Reference See for full implementation. ---