#!/bin/bash
cd /home/claude/repos/openclaw
git worktree remove --force /tmp/curo-clean-wt 2>/dev/null || true
# Restore the main working tree to the branch it was on before this task.
git checkout feat/amd-encounters-mtd-script 2>&1 || true
# Drop the now-unneeded local feature branches.
git branch -D feat/ai-curogram-mcp-skill 2>/dev/null || true
git branch -D feat/ai-curogram-mcp-skill-clean 2>/dev/null || true
git worktree prune
git branch --show-current
echo CLEANUP_DONE
