# 1. Enable worktrees (first time only)
cd ~/scm/my-project
aoe add . -w feat/test -b
# 2. Create parallel sessions in TUI
aoe
# Press 'n' and fill in the "Worktree (optional)" field:
# - Title: UI Changes, Worktree: feat/ui-changes
# - Title: API Changes, Worktree: feat/api-changes
# - Title: Urgent Fix, Worktree: fix/urgent-bug
# Each session will create a new branch and worktree automatically
# 3. View all worktrees
aoe worktree list
# 4. Work and cleanup
aoe remove <session> # Answer Y to delete worktree
# Launch TUI
cd ~/scm/my-app
aoe
# Press 'n' to open new session dialog
# Fill in fields:
# Title: Feature UI (or leave empty for random name)
# Path: . (current directory)
# Group: (optional)
# Tool: claude (or select your tool)
# Worktree (optional): feat/ui-changes
# Press Enter
# Creates:
# ✅ New branch: feat/ui-changes
# ✅ New worktree: ../my-app-worktrees/feat-ui-changes
# ✅ New session attached to worktree
# ✅ Launches you into the session
# Repeat for more parallel sessions