[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-git-cleanup":3,"mdc-7hjfy5-key":32,"related-org-trail-of-bits-git-cleanup":3923,"related-repo-trail-of-bits-git-cleanup":4083},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":27,"sourceUrl":30,"mdContent":31},"git-cleanup","clean up local git branches","Safely analyzes and cleans up local git branches and worktrees by categorizing them as merged, squash-merged, superseded, or active work.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"trail-of-bits","Trail of Bits","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftrail-of-bits.png","trailofbits",[13,17],{"name":14,"slug":15,"type":16},"Maintenance","maintenance","tag",{"name":18,"slug":19,"type":16},"Git","git",6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-07-17T06:05:12.075728",null,541,[26],"agent-skills",{"repoUrl":21,"stars":20,"forks":24,"topics":28,"description":29},[26],"Trail of Bits Claude Code skills for security research, vulnerability detection, and audit workflows","https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fgit-cleanup\u002Fskills\u002Fgit-cleanup","---\nname: git-cleanup\ndescription: \"Safely analyzes and cleans up local git branches and worktrees by categorizing them as merged, squash-merged, superseded, or active work.\"\ndisable-model-invocation: true\nallowed-tools: Bash Read Grep AskUserQuestion\n---\n\n# Git Cleanup\n\nSafely clean up accumulated git worktrees and local branches by categorizing them into: safely deletable (merged), potentially related (similar themes), and active work (keep).\n\n## When to Use\n\n- When the user has accumulated many local branches and worktrees\n- When branches have been merged but not cleaned up locally\n- When remote branches have been deleted but local tracking branches remain\n\n## When NOT to Use\n\n- Do not use for remote branch management (this is local cleanup only)\n- Do not use for repository maintenance tasks like gc or prune\n- Not designed for headless or non-interactive automation (requires user confirmations at two gates)\n\n## Core Principle: SAFETY FIRST\n\n**Never delete anything without explicit user confirmation.** This skill uses a gated workflow where users must approve each step before any destructive action.\n\n## Critical Implementation Notes\n\n### Squash-Merged Branches Require Force Delete\n\n**IMPORTANT:** `git branch -d` will ALWAYS fail for squash-merged branches because git cannot detect that the work was incorporated. This is expected behavior, not an error.\n\nWhen you identify a branch as squash-merged:\n- Plan to use `git branch -D` (force delete) from the start\n- Do NOT try `git branch -d` first and then ask again for `-D` - this wastes user confirmations\n- In the confirmation step, show `git branch -D` for squash-merged branches\n\n### Group Related Branches BEFORE Categorization\n\n**MANDATORY:** Before categorizing individual branches, group them by name prefix:\n\n```bash\n# Extract common prefixes from branch names\n# e.g., feature\u002Fauth-*, feature\u002Fapi-*, fix\u002Flogin-*\n```\n\nBranches sharing a prefix (e.g., `feature\u002Fapi`, `feature\u002Fapi-v2`, `feature\u002Fapi-refactor`) are almost certainly related iterations. Analyze them as a group:\n\n1. Find the oldest and newest by commit date\n2. Check if newer branches contain commits from older ones\n3. Check which PRs merged work from each\n4. Determine if older branches are superseded\n\nPresent related branches together with a clear recommendation, not scattered across categories.\n\n### Thorough PR History Investigation\n\nDon't rely on simple keyword matching. For `[gone]` branches:\n\n```bash\n# 1. Get the branch's commits that aren't in default branch\ngit log --oneline \"$default_branch\"..\"$branch\"\n\n# 2. Search default branch for PRs that incorporated this work\n# Search by: branch name, commit message keywords, PR numbers\ngit log --oneline \"$default_branch\" | grep -iE \"(branch-name|keyword|#[0-9]+)\"\n\n# 3. For related branch groups, trace which PRs merged which work\ngit log --oneline \"$default_branch\" | grep -iE \"(#[0-9]+)\" | head -20\n```\n\n## Workflow\n\n### Phase 1: Comprehensive Analysis\n\nGather ALL information upfront before any categorization:\n\n```bash\n# Get default branch name\ndefault_branch=$(git symbolic-ref refs\u002Fremotes\u002Forigin\u002FHEAD \\\n  2>\u002Fdev\u002Fnull | sed 's@^refs\u002Fremotes\u002Forigin\u002F@@' || echo \"main\")\n\n# Protected branches - never analyze or delete\nprotected='^(main|master|develop|release\u002F.*)$'\n\n# List all local branches with tracking info\ngit branch -vv\n\n# List all worktrees\ngit worktree list\n\n# Fetch and prune to sync remote state\ngit fetch --prune\n\n# Get merged branches (into default branch)\ngit branch --merged \"$default_branch\"\n\n# Get recent PR merge history (squash-merge detection)\ngit log --oneline \"$default_branch\" | grep -iE \"#[0-9]+\" | head -30\n\n# For EACH non-protected branch, get unique commits and sync status\nfor branch in $(git branch --format='%(refname:short)' \\\n  | grep -vE \"$protected\"); do\n  echo \"=== $branch ===\"\n  echo \"Commits not in $default_branch:\"\n  git log --oneline \"$default_branch\"..\"$branch\" 2>\u002Fdev\u002Fnull \\\n    | head -5\n  echo \"Commits not pushed to remote:\"\n  git log --oneline \"origin\u002F$branch\"..\"$branch\" 2>\u002Fdev\u002Fnull \\\n    | head -5 || echo \"(no remote tracking)\"\ndone\n```\n\n**Note on branch names:** Git branch names can contain characters that break shell expansion. Always quote `\"$branch\"` in commands.\n\n### Phase 2: Group Related Branches\n\n**Do this BEFORE individual categorization.**\n\nIdentify branch groups by shared prefixes:\n\n```bash\n# List branches and extract prefixes\ngit branch --format='%(refname:short)' | sed 's\u002F-[^-]*$\u002F\u002F' | sort | uniq -c | sort -rn\n```\n\nFor each group with 2+ branches:\n\n1. **Compare commit histories** - Which branches contain commits from others?\n2. **Find merge evidence** - Which PRs incorporated work from this group?\n3. **Identify the \"final\" branch** - Usually the most recent or most complete\n4. **Mark superseded branches** - Older iterations whose work is in main or in a newer branch\n\n**SUPERSEDED requires evidence, not just shared prefix:**\n- A PR merged the work into main, OR\n- A newer branch contains all commits from the older branch\n- Name prefix alone is NOT sufficient — similarly named branches may contain independent work\n\nExample analysis for `feature\u002Fapi-*` branches:\n\n```markdown\n### Related Branch Group: feature\u002Fapi-*\n\n| Branch | Commits | PR Merged | Status |\n|--------|---------|-----------|--------|\n| feature\u002Fapi | 12 | #29 (initial API) | Superseded - work in main |\n| feature\u002Fapi-v2 | 8 | #45 (API improvements) | Superseded - work in main |\n| feature\u002Fapi-refactor | 5 | #67 (refactor) | Superseded - work in main |\n| feature\u002Fapi-final | 4 | None found | Superseded by above PRs |\n\n**Recommendation:** All 4 branches can be deleted - work incorporated via PRs #29, #45, #67\n```\n\n### Phase 3: Categorize Remaining Branches\n\nFor branches NOT in a related group, categorize individually:\n\n```\nIs branch merged into default branch?\n├─ YES → SAFE_TO_DELETE (use -d)\n└─ NO → Is tracking a remote?\n        ├─ YES → Remote deleted? ([gone])\n        │        ├─ YES → Was work squash-merged? (check main for PR)\n        │        │        ├─ YES → SQUASH_MERGED (use -D)\n        │        │        └─ NO → REMOTE_GONE (needs review)\n        │        └─ NO → Local ahead of remote? (check: git log origin\u002F\u003Cbranch>..\u003Cbranch>)\n        │                ├─ YES (has output) → UNPUSHED_WORK (keep)\n        │                └─ NO (empty output) → SYNCED_WITH_REMOTE (keep)\n        └─ NO → Has unique commits?\n                ├─ YES → LOCAL_WORK (keep)\n                └─ NO → SAFE_TO_DELETE (use -d)\n```\n\n**Category definitions:**\n\n| Category | Meaning | Delete Command |\n|----------|---------|----------------|\n| SAFE_TO_DELETE | Merged into default branch | `git branch -d` |\n| SQUASH_MERGED | Work incorporated via squash merge | `git branch -D` |\n| SUPERSEDED | Part of a group, work verified in main via PR or in newer branch | `git branch -D` |\n| REMOTE_GONE | Remote deleted, work NOT found in main | Review needed |\n| UNPUSHED_WORK | Has commits not pushed to remote | Keep |\n| LOCAL_WORK | Untracked branch with unique commits | Keep |\n| SYNCED_WITH_REMOTE | Up to date with remote | Keep |\n\n### Phase 4: Dirty State Detection\n\nCheck ALL worktrees and current directory for uncommitted changes:\n\n```bash\n# For each worktree path\ngit -C \u003Cworktree-path> status --porcelain\n\n# For current directory\ngit status --porcelain\n```\n\n**Display warnings prominently:**\n\n```markdown\nWARNING: ..\u002Fproj-auth has uncommitted changes:\n  M  src\u002Fauth.js\n  ?? new-file.txt\n\nThese changes will be LOST if you remove this worktree.\n```\n\n### GATE 1: Present Complete Analysis\n\nPresent everything in ONE comprehensive view. Group related branches together:\n\n```markdown\n## Git Cleanup Analysis\n\n### Related Branch Groups\n\n**Group: feature\u002Fapi-* (4 branches)**\n| Branch | Status | Evidence |\n|--------|--------|----------|\n| feature\u002Fapi | Superseded | Work merged in PR #29 |\n| feature\u002Fapi-v2 | Superseded | Work merged in PR #45 |\n| feature\u002Fapi-refactor | Superseded | Work merged in PR #67 |\n| feature\u002Fapi-final | Superseded | Older iteration, diverged |\n\nRecommendation: Delete all 4 (work is in main)\n\n---\n\n### Individual Branches\n\n**Safe to Delete (merged with -d)**\n| Branch | Merged Into |\n|--------|-------------|\n| fix\u002Ftypo | main |\n\n**Safe to Delete (squash-merged, requires -D)**\n| Branch | Merged As |\n|--------|-----------|\n| feature\u002Flogin | PR #42 |\n\n**Needs Review ([gone] remotes, no PR found)**\n| Branch | Last Commit |\n|--------|-------------|\n| experiment\u002Fold | abc1234 \"WIP something\" |\n\n**Keep (active work)**\n| Branch | Status |\n|--------|--------|\n| wip\u002Fnew-feature | 5 unpushed commits |\n\n### Worktrees\n| Path | Branch | Status |\n|------|--------|--------|\n| ..\u002Fproj-auth | feature\u002Fauth | STALE (merged) |\n\n---\n\n**Summary:**\n- 4 related branches (feature\u002Fapi-*) - recommend delete all\n- 1 merged branch - safe to delete\n- 1 squash-merged branch - safe to delete\n- 1 needs review\n- 1 to keep\n\nWhich would you like to clean up?\n```\n\nUse AskUserQuestion with clear options:\n- Delete all recommended (groups + merged + squash-merged)\n- Delete specific groups\u002Fcategories\n- Let me pick individual branches\n\n**Do not proceed until user responds.**\n\n### GATE 2: Final Confirmation with Exact Commands\n\nShow the EXACT commands that will run, with correct flags:\n\n```markdown\nI will execute:\n\n# Merged branches (safe delete)\ngit branch -d fix\u002Ftypo\n\n# Squash-merged branches (force delete - work is in main via PRs)\ngit branch -D feature\u002Flogin\ngit branch -D feature\u002Fapi\ngit branch -D feature\u002Fapi-v2\ngit branch -D feature\u002Fapi-refactor\ngit branch -D feature\u002Fapi-final\n\n# Worktrees\ngit worktree remove ..\u002Fproj-auth\n\nConfirm? (yes\u002Fno)\n```\n\n**IMPORTANT:** This is the ONLY confirmation needed for deletion. Do not add extra confirmations if `-D` is required.\n\n### Phase 5: Execute\n\nRun each deletion as a **separate command** so partial failures don't block remaining deletions. Report the result of each:\n\n```bash\ngit branch -d fix\u002Ftypo\ngit branch -D feature\u002Flogin\ngit branch -D feature\u002Fapi\ngit branch -D feature\u002Fapi-v2\ngit branch -D feature\u002Fapi-refactor\ngit branch -D feature\u002Fapi-final\ngit worktree remove ..\u002Fproj-auth\n```\n\nIf a deletion fails, report the error and continue with remaining deletions.\n\n### Phase 6: Report\n\n```markdown\n## Cleanup Complete\n\n### Deleted\n- fix\u002Ftypo\n- feature\u002Flogin\n- feature\u002Fapi\n- feature\u002Fapi-v2\n- feature\u002Fapi-refactor\n- feature\u002Fapi-final\n- Worktree: ..\u002Fproj-auth\n\n### Remaining (4 branches)\n| Branch | Status |\n|--------|--------|\n| main | current |\n| wip\u002Fnew-feature | active work |\n| experiment\u002Fold | needs review |\n```\n\n## Safety Rules\n\n1. **Never invoke automatically** - Only run when user explicitly uses `\u002Fgit-cleanup`\n2. **Two confirmation gates only** - Analysis review, then deletion confirmation\n3. **Use correct delete command** - `-d` for merged, `-D` for squash-merged\u002Fsuperseded\n4. **Never touch protected branches** - main, master, develop, release\u002F* (filtered programmatically)\n5. **Block dirty worktree removal** - Refuse without explicit data loss acknowledgment\n6. **Group related branches** - Don't scatter them across categories\n\n## Rationalizations to Reject\n\nThese are common shortcuts that lead to data loss. Reject them:\n\n| Rationalization | Why It's Wrong |\n|-----------------|----------------|\n| \"The branch is old, it's probably safe to delete\" | Age doesn't indicate merge status. Old branches may contain unmerged work. |\n| \"I can recover from reflog if needed\" | Reflog entries expire. Users often don't know how to use reflog. Don't rely on it as a safety net. |\n| \"It's just a local branch, nothing important\" | Local branches may contain the only copy of work not pushed anywhere. |\n| \"The PR was merged, so the branch is safe\" | Squash merges don't preserve branch history. Verify the *specific* commits were incorporated. |\n| \"I'll just delete all the `[gone]` branches\" | `[gone]` only means the remote was deleted. The local branch may have unpushed commits. |\n| \"The user seems to want everything deleted\" | Always present analysis first. Let the user choose what to delete. |\n| \"The branch has commits not in main, so it has unpushed work\" | \"Not in main\" ≠ \"not pushed\". A branch can be synced with its remote but not merged to main. Always check `git log origin\u002F\u003Cbranch>..\u003Cbranch>`. |\n",{"data":33,"body":36},{"name":4,"description":6,"disable-model-invocation":34,"allowed-tools":35},true,"Bash Read Grep AskUserQuestion",{"type":37,"children":38},"root",[39,47,53,60,80,86,104,110,121,127,134,153,158,206,212,222,254,282,306,311,317,330,567,573,579,584,1349,1367,1373,1381,1386,1485,1490,1533,1541,1559,1571,1854,1860,1865,1875,1883,2049,2055,2060,2147,2155,2201,2207,2212,3058,3063,3081,3089,3095,3100,3243,3259,3265,3277,3427,3432,3438,3675,3681,3765,3771,3776,3917],{"type":40,"tag":41,"props":42,"children":43},"element","h1",{"id":4},[44],{"type":45,"value":46},"text","Git Cleanup",{"type":40,"tag":48,"props":49,"children":50},"p",{},[51],{"type":45,"value":52},"Safely clean up accumulated git worktrees and local branches by categorizing them into: safely deletable (merged), potentially related (similar themes), and active work (keep).",{"type":40,"tag":54,"props":55,"children":57},"h2",{"id":56},"when-to-use",[58],{"type":45,"value":59},"When to Use",{"type":40,"tag":61,"props":62,"children":63},"ul",{},[64,70,75],{"type":40,"tag":65,"props":66,"children":67},"li",{},[68],{"type":45,"value":69},"When the user has accumulated many local branches and worktrees",{"type":40,"tag":65,"props":71,"children":72},{},[73],{"type":45,"value":74},"When branches have been merged but not cleaned up locally",{"type":40,"tag":65,"props":76,"children":77},{},[78],{"type":45,"value":79},"When remote branches have been deleted but local tracking branches remain",{"type":40,"tag":54,"props":81,"children":83},{"id":82},"when-not-to-use",[84],{"type":45,"value":85},"When NOT to Use",{"type":40,"tag":61,"props":87,"children":88},{},[89,94,99],{"type":40,"tag":65,"props":90,"children":91},{},[92],{"type":45,"value":93},"Do not use for remote branch management (this is local cleanup only)",{"type":40,"tag":65,"props":95,"children":96},{},[97],{"type":45,"value":98},"Do not use for repository maintenance tasks like gc or prune",{"type":40,"tag":65,"props":100,"children":101},{},[102],{"type":45,"value":103},"Not designed for headless or non-interactive automation (requires user confirmations at two gates)",{"type":40,"tag":54,"props":105,"children":107},{"id":106},"core-principle-safety-first",[108],{"type":45,"value":109},"Core Principle: SAFETY FIRST",{"type":40,"tag":48,"props":111,"children":112},{},[113,119],{"type":40,"tag":114,"props":115,"children":116},"strong",{},[117],{"type":45,"value":118},"Never delete anything without explicit user confirmation.",{"type":45,"value":120}," This skill uses a gated workflow where users must approve each step before any destructive action.",{"type":40,"tag":54,"props":122,"children":124},{"id":123},"critical-implementation-notes",[125],{"type":45,"value":126},"Critical Implementation Notes",{"type":40,"tag":128,"props":129,"children":131},"h3",{"id":130},"squash-merged-branches-require-force-delete",[132],{"type":45,"value":133},"Squash-Merged Branches Require Force Delete",{"type":40,"tag":48,"props":135,"children":136},{},[137,142,144,151],{"type":40,"tag":114,"props":138,"children":139},{},[140],{"type":45,"value":141},"IMPORTANT:",{"type":45,"value":143}," ",{"type":40,"tag":145,"props":146,"children":148},"code",{"className":147},[],[149],{"type":45,"value":150},"git branch -d",{"type":45,"value":152}," will ALWAYS fail for squash-merged branches because git cannot detect that the work was incorporated. This is expected behavior, not an error.",{"type":40,"tag":48,"props":154,"children":155},{},[156],{"type":45,"value":157},"When you identify a branch as squash-merged:",{"type":40,"tag":61,"props":159,"children":160},{},[161,174,194],{"type":40,"tag":65,"props":162,"children":163},{},[164,166,172],{"type":45,"value":165},"Plan to use ",{"type":40,"tag":145,"props":167,"children":169},{"className":168},[],[170],{"type":45,"value":171},"git branch -D",{"type":45,"value":173}," (force delete) from the start",{"type":40,"tag":65,"props":175,"children":176},{},[177,179,184,186,192],{"type":45,"value":178},"Do NOT try ",{"type":40,"tag":145,"props":180,"children":182},{"className":181},[],[183],{"type":45,"value":150},{"type":45,"value":185}," first and then ask again for ",{"type":40,"tag":145,"props":187,"children":189},{"className":188},[],[190],{"type":45,"value":191},"-D",{"type":45,"value":193}," - this wastes user confirmations",{"type":40,"tag":65,"props":195,"children":196},{},[197,199,204],{"type":45,"value":198},"In the confirmation step, show ",{"type":40,"tag":145,"props":200,"children":202},{"className":201},[],[203],{"type":45,"value":171},{"type":45,"value":205}," for squash-merged branches",{"type":40,"tag":128,"props":207,"children":209},{"id":208},"group-related-branches-before-categorization",[210],{"type":45,"value":211},"Group Related Branches BEFORE Categorization",{"type":40,"tag":48,"props":213,"children":214},{},[215,220],{"type":40,"tag":114,"props":216,"children":217},{},[218],{"type":45,"value":219},"MANDATORY:",{"type":45,"value":221}," Before categorizing individual branches, group them by name prefix:",{"type":40,"tag":223,"props":224,"children":229},"pre",{"className":225,"code":226,"language":227,"meta":228,"style":228},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Extract common prefixes from branch names\n# e.g., feature\u002Fauth-*, feature\u002Fapi-*, fix\u002Flogin-*\n","bash","",[230],{"type":40,"tag":145,"props":231,"children":232},{"__ignoreMap":228},[233,245],{"type":40,"tag":234,"props":235,"children":238},"span",{"class":236,"line":237},"line",1,[239],{"type":40,"tag":234,"props":240,"children":242},{"style":241},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[243],{"type":45,"value":244},"# Extract common prefixes from branch names\n",{"type":40,"tag":234,"props":246,"children":248},{"class":236,"line":247},2,[249],{"type":40,"tag":234,"props":250,"children":251},{"style":241},[252],{"type":45,"value":253},"# e.g., feature\u002Fauth-*, feature\u002Fapi-*, fix\u002Flogin-*\n",{"type":40,"tag":48,"props":255,"children":256},{},[257,259,265,267,273,274,280],{"type":45,"value":258},"Branches sharing a prefix (e.g., ",{"type":40,"tag":145,"props":260,"children":262},{"className":261},[],[263],{"type":45,"value":264},"feature\u002Fapi",{"type":45,"value":266},", ",{"type":40,"tag":145,"props":268,"children":270},{"className":269},[],[271],{"type":45,"value":272},"feature\u002Fapi-v2",{"type":45,"value":266},{"type":40,"tag":145,"props":275,"children":277},{"className":276},[],[278],{"type":45,"value":279},"feature\u002Fapi-refactor",{"type":45,"value":281},") are almost certainly related iterations. Analyze them as a group:",{"type":40,"tag":283,"props":284,"children":285},"ol",{},[286,291,296,301],{"type":40,"tag":65,"props":287,"children":288},{},[289],{"type":45,"value":290},"Find the oldest and newest by commit date",{"type":40,"tag":65,"props":292,"children":293},{},[294],{"type":45,"value":295},"Check if newer branches contain commits from older ones",{"type":40,"tag":65,"props":297,"children":298},{},[299],{"type":45,"value":300},"Check which PRs merged work from each",{"type":40,"tag":65,"props":302,"children":303},{},[304],{"type":45,"value":305},"Determine if older branches are superseded",{"type":40,"tag":48,"props":307,"children":308},{},[309],{"type":45,"value":310},"Present related branches together with a clear recommendation, not scattered across categories.",{"type":40,"tag":128,"props":312,"children":314},{"id":313},"thorough-pr-history-investigation",[315],{"type":45,"value":316},"Thorough PR History Investigation",{"type":40,"tag":48,"props":318,"children":319},{},[320,322,328],{"type":45,"value":321},"Don't rely on simple keyword matching. For ",{"type":40,"tag":145,"props":323,"children":325},{"className":324},[],[326],{"type":45,"value":327},"[gone]",{"type":45,"value":329}," branches:",{"type":40,"tag":223,"props":331,"children":333},{"className":225,"code":332,"language":227,"meta":228,"style":228},"# 1. Get the branch's commits that aren't in default branch\ngit log --oneline \"$default_branch\"..\"$branch\"\n\n# 2. Search default branch for PRs that incorporated this work\n# Search by: branch name, commit message keywords, PR numbers\ngit log --oneline \"$default_branch\" | grep -iE \"(branch-name|keyword|#[0-9]+)\"\n\n# 3. For related branch groups, trace which PRs merged which work\ngit log --oneline \"$default_branch\" | grep -iE \"(#[0-9]+)\" | head -20\n",[334],{"type":40,"tag":145,"props":335,"children":336},{"__ignoreMap":228},[337,345,400,409,418,427,483,491,500],{"type":40,"tag":234,"props":338,"children":339},{"class":236,"line":237},[340],{"type":40,"tag":234,"props":341,"children":342},{"style":241},[343],{"type":45,"value":344},"# 1. Get the branch's commits that aren't in default branch\n",{"type":40,"tag":234,"props":346,"children":347},{"class":236,"line":247},[348,353,359,364,370,376,381,386,390,395],{"type":40,"tag":234,"props":349,"children":351},{"style":350},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[352],{"type":45,"value":19},{"type":40,"tag":234,"props":354,"children":356},{"style":355},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[357],{"type":45,"value":358}," log",{"type":40,"tag":234,"props":360,"children":361},{"style":355},[362],{"type":45,"value":363}," --oneline",{"type":40,"tag":234,"props":365,"children":367},{"style":366},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[368],{"type":45,"value":369}," \"",{"type":40,"tag":234,"props":371,"children":373},{"style":372},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[374],{"type":45,"value":375},"$default_branch",{"type":40,"tag":234,"props":377,"children":378},{"style":366},[379],{"type":45,"value":380},"\"",{"type":40,"tag":234,"props":382,"children":383},{"style":355},[384],{"type":45,"value":385},"..",{"type":40,"tag":234,"props":387,"children":388},{"style":366},[389],{"type":45,"value":380},{"type":40,"tag":234,"props":391,"children":392},{"style":372},[393],{"type":45,"value":394},"$branch",{"type":40,"tag":234,"props":396,"children":397},{"style":366},[398],{"type":45,"value":399},"\"\n",{"type":40,"tag":234,"props":401,"children":403},{"class":236,"line":402},3,[404],{"type":40,"tag":234,"props":405,"children":406},{"emptyLinePlaceholder":34},[407],{"type":45,"value":408},"\n",{"type":40,"tag":234,"props":410,"children":412},{"class":236,"line":411},4,[413],{"type":40,"tag":234,"props":414,"children":415},{"style":241},[416],{"type":45,"value":417},"# 2. Search default branch for PRs that incorporated this work\n",{"type":40,"tag":234,"props":419,"children":421},{"class":236,"line":420},5,[422],{"type":40,"tag":234,"props":423,"children":424},{"style":241},[425],{"type":45,"value":426},"# Search by: branch name, commit message keywords, PR numbers\n",{"type":40,"tag":234,"props":428,"children":430},{"class":236,"line":429},6,[431,435,439,443,447,451,455,460,465,470,474,479],{"type":40,"tag":234,"props":432,"children":433},{"style":350},[434],{"type":45,"value":19},{"type":40,"tag":234,"props":436,"children":437},{"style":355},[438],{"type":45,"value":358},{"type":40,"tag":234,"props":440,"children":441},{"style":355},[442],{"type":45,"value":363},{"type":40,"tag":234,"props":444,"children":445},{"style":366},[446],{"type":45,"value":369},{"type":40,"tag":234,"props":448,"children":449},{"style":372},[450],{"type":45,"value":375},{"type":40,"tag":234,"props":452,"children":453},{"style":366},[454],{"type":45,"value":380},{"type":40,"tag":234,"props":456,"children":457},{"style":366},[458],{"type":45,"value":459}," |",{"type":40,"tag":234,"props":461,"children":462},{"style":350},[463],{"type":45,"value":464}," grep",{"type":40,"tag":234,"props":466,"children":467},{"style":355},[468],{"type":45,"value":469}," -iE",{"type":40,"tag":234,"props":471,"children":472},{"style":366},[473],{"type":45,"value":369},{"type":40,"tag":234,"props":475,"children":476},{"style":355},[477],{"type":45,"value":478},"(branch-name|keyword|#[0-9]+)",{"type":40,"tag":234,"props":480,"children":481},{"style":366},[482],{"type":45,"value":399},{"type":40,"tag":234,"props":484,"children":486},{"class":236,"line":485},7,[487],{"type":40,"tag":234,"props":488,"children":489},{"emptyLinePlaceholder":34},[490],{"type":45,"value":408},{"type":40,"tag":234,"props":492,"children":494},{"class":236,"line":493},8,[495],{"type":40,"tag":234,"props":496,"children":497},{"style":241},[498],{"type":45,"value":499},"# 3. For related branch groups, trace which PRs merged which work\n",{"type":40,"tag":234,"props":501,"children":503},{"class":236,"line":502},9,[504,508,512,516,520,524,528,532,536,540,544,549,553,557,562],{"type":40,"tag":234,"props":505,"children":506},{"style":350},[507],{"type":45,"value":19},{"type":40,"tag":234,"props":509,"children":510},{"style":355},[511],{"type":45,"value":358},{"type":40,"tag":234,"props":513,"children":514},{"style":355},[515],{"type":45,"value":363},{"type":40,"tag":234,"props":517,"children":518},{"style":366},[519],{"type":45,"value":369},{"type":40,"tag":234,"props":521,"children":522},{"style":372},[523],{"type":45,"value":375},{"type":40,"tag":234,"props":525,"children":526},{"style":366},[527],{"type":45,"value":380},{"type":40,"tag":234,"props":529,"children":530},{"style":366},[531],{"type":45,"value":459},{"type":40,"tag":234,"props":533,"children":534},{"style":350},[535],{"type":45,"value":464},{"type":40,"tag":234,"props":537,"children":538},{"style":355},[539],{"type":45,"value":469},{"type":40,"tag":234,"props":541,"children":542},{"style":366},[543],{"type":45,"value":369},{"type":40,"tag":234,"props":545,"children":546},{"style":355},[547],{"type":45,"value":548},"(#[0-9]+)",{"type":40,"tag":234,"props":550,"children":551},{"style":366},[552],{"type":45,"value":380},{"type":40,"tag":234,"props":554,"children":555},{"style":366},[556],{"type":45,"value":459},{"type":40,"tag":234,"props":558,"children":559},{"style":350},[560],{"type":45,"value":561}," head",{"type":40,"tag":234,"props":563,"children":564},{"style":355},[565],{"type":45,"value":566}," -20\n",{"type":40,"tag":54,"props":568,"children":570},{"id":569},"workflow",[571],{"type":45,"value":572},"Workflow",{"type":40,"tag":128,"props":574,"children":576},{"id":575},"phase-1-comprehensive-analysis",[577],{"type":45,"value":578},"Phase 1: Comprehensive Analysis",{"type":40,"tag":48,"props":580,"children":581},{},[582],{"type":45,"value":583},"Gather ALL information upfront before any categorization:",{"type":40,"tag":223,"props":585,"children":587},{"className":225,"code":586,"language":227,"meta":228,"style":228},"# Get default branch name\ndefault_branch=$(git symbolic-ref refs\u002Fremotes\u002Forigin\u002FHEAD \\\n  2>\u002Fdev\u002Fnull | sed 's@^refs\u002Fremotes\u002Forigin\u002F@@' || echo \"main\")\n\n# Protected branches - never analyze or delete\nprotected='^(main|master|develop|release\u002F.*)$'\n\n# List all local branches with tracking info\ngit branch -vv\n\n# List all worktrees\ngit worktree list\n\n# Fetch and prune to sync remote state\ngit fetch --prune\n\n# Get merged branches (into default branch)\ngit branch --merged \"$default_branch\"\n\n# Get recent PR merge history (squash-merge detection)\ngit log --oneline \"$default_branch\" | grep -iE \"#[0-9]+\" | head -30\n\n# For EACH non-protected branch, get unique commits and sync status\nfor branch in $(git branch --format='%(refname:short)' \\\n  | grep -vE \"$protected\"); do\n  echo \"=== $branch ===\"\n  echo \"Commits not in $default_branch:\"\n  git log --oneline \"$default_branch\"..\"$branch\" 2>\u002Fdev\u002Fnull \\\n    | head -5\n  echo \"Commits not pushed to remote:\"\n  git log --oneline \"origin\u002F$branch\"..\"$branch\" 2>\u002Fdev\u002Fnull \\\n    | head -5 || echo \"(no remote tracking)\"\ndone\n",[588],{"type":40,"tag":145,"props":589,"children":590},{"__ignoreMap":228},[591,599,631,697,704,712,739,746,754,771,779,788,806,814,823,841,849,858,887,895,904,970,978,987,1042,1083,1114,1144,1202,1220,1241,1302,1340],{"type":40,"tag":234,"props":592,"children":593},{"class":236,"line":237},[594],{"type":40,"tag":234,"props":595,"children":596},{"style":241},[597],{"type":45,"value":598},"# Get default branch name\n",{"type":40,"tag":234,"props":600,"children":601},{"class":236,"line":247},[602,607,612,616,621,626],{"type":40,"tag":234,"props":603,"children":604},{"style":372},[605],{"type":45,"value":606},"default_branch",{"type":40,"tag":234,"props":608,"children":609},{"style":366},[610],{"type":45,"value":611},"=$(",{"type":40,"tag":234,"props":613,"children":614},{"style":350},[615],{"type":45,"value":19},{"type":40,"tag":234,"props":617,"children":618},{"style":355},[619],{"type":45,"value":620}," symbolic-ref",{"type":40,"tag":234,"props":622,"children":623},{"style":355},[624],{"type":45,"value":625}," refs\u002Fremotes\u002Forigin\u002FHEAD",{"type":40,"tag":234,"props":627,"children":628},{"style":372},[629],{"type":45,"value":630}," \\\n",{"type":40,"tag":234,"props":632,"children":633},{"class":236,"line":402},[634,639,644,648,653,658,663,668,673,679,683,688,692],{"type":40,"tag":234,"props":635,"children":636},{"style":366},[637],{"type":45,"value":638},"  2>",{"type":40,"tag":234,"props":640,"children":641},{"style":355},[642],{"type":45,"value":643},"\u002Fdev\u002Fnull",{"type":40,"tag":234,"props":645,"children":646},{"style":366},[647],{"type":45,"value":459},{"type":40,"tag":234,"props":649,"children":650},{"style":350},[651],{"type":45,"value":652}," sed",{"type":40,"tag":234,"props":654,"children":655},{"style":366},[656],{"type":45,"value":657}," '",{"type":40,"tag":234,"props":659,"children":660},{"style":355},[661],{"type":45,"value":662},"s@^refs\u002Fremotes\u002Forigin\u002F@@",{"type":40,"tag":234,"props":664,"children":665},{"style":366},[666],{"type":45,"value":667},"'",{"type":40,"tag":234,"props":669,"children":670},{"style":366},[671],{"type":45,"value":672}," ||",{"type":40,"tag":234,"props":674,"children":676},{"style":675},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[677],{"type":45,"value":678}," echo",{"type":40,"tag":234,"props":680,"children":681},{"style":366},[682],{"type":45,"value":369},{"type":40,"tag":234,"props":684,"children":685},{"style":355},[686],{"type":45,"value":687},"main",{"type":40,"tag":234,"props":689,"children":690},{"style":366},[691],{"type":45,"value":380},{"type":40,"tag":234,"props":693,"children":694},{"style":366},[695],{"type":45,"value":696},")\n",{"type":40,"tag":234,"props":698,"children":699},{"class":236,"line":411},[700],{"type":40,"tag":234,"props":701,"children":702},{"emptyLinePlaceholder":34},[703],{"type":45,"value":408},{"type":40,"tag":234,"props":705,"children":706},{"class":236,"line":420},[707],{"type":40,"tag":234,"props":708,"children":709},{"style":241},[710],{"type":45,"value":711},"# Protected branches - never analyze or delete\n",{"type":40,"tag":234,"props":713,"children":714},{"class":236,"line":429},[715,720,725,729,734],{"type":40,"tag":234,"props":716,"children":717},{"style":372},[718],{"type":45,"value":719},"protected",{"type":40,"tag":234,"props":721,"children":722},{"style":366},[723],{"type":45,"value":724},"=",{"type":40,"tag":234,"props":726,"children":727},{"style":366},[728],{"type":45,"value":667},{"type":40,"tag":234,"props":730,"children":731},{"style":355},[732],{"type":45,"value":733},"^(main|master|develop|release\u002F.*)$",{"type":40,"tag":234,"props":735,"children":736},{"style":366},[737],{"type":45,"value":738},"'\n",{"type":40,"tag":234,"props":740,"children":741},{"class":236,"line":485},[742],{"type":40,"tag":234,"props":743,"children":744},{"emptyLinePlaceholder":34},[745],{"type":45,"value":408},{"type":40,"tag":234,"props":747,"children":748},{"class":236,"line":493},[749],{"type":40,"tag":234,"props":750,"children":751},{"style":241},[752],{"type":45,"value":753},"# List all local branches with tracking info\n",{"type":40,"tag":234,"props":755,"children":756},{"class":236,"line":502},[757,761,766],{"type":40,"tag":234,"props":758,"children":759},{"style":350},[760],{"type":45,"value":19},{"type":40,"tag":234,"props":762,"children":763},{"style":355},[764],{"type":45,"value":765}," branch",{"type":40,"tag":234,"props":767,"children":768},{"style":355},[769],{"type":45,"value":770}," -vv\n",{"type":40,"tag":234,"props":772,"children":774},{"class":236,"line":773},10,[775],{"type":40,"tag":234,"props":776,"children":777},{"emptyLinePlaceholder":34},[778],{"type":45,"value":408},{"type":40,"tag":234,"props":780,"children":782},{"class":236,"line":781},11,[783],{"type":40,"tag":234,"props":784,"children":785},{"style":241},[786],{"type":45,"value":787},"# List all worktrees\n",{"type":40,"tag":234,"props":789,"children":791},{"class":236,"line":790},12,[792,796,801],{"type":40,"tag":234,"props":793,"children":794},{"style":350},[795],{"type":45,"value":19},{"type":40,"tag":234,"props":797,"children":798},{"style":355},[799],{"type":45,"value":800}," worktree",{"type":40,"tag":234,"props":802,"children":803},{"style":355},[804],{"type":45,"value":805}," list\n",{"type":40,"tag":234,"props":807,"children":809},{"class":236,"line":808},13,[810],{"type":40,"tag":234,"props":811,"children":812},{"emptyLinePlaceholder":34},[813],{"type":45,"value":408},{"type":40,"tag":234,"props":815,"children":817},{"class":236,"line":816},14,[818],{"type":40,"tag":234,"props":819,"children":820},{"style":241},[821],{"type":45,"value":822},"# Fetch and prune to sync remote state\n",{"type":40,"tag":234,"props":824,"children":826},{"class":236,"line":825},15,[827,831,836],{"type":40,"tag":234,"props":828,"children":829},{"style":350},[830],{"type":45,"value":19},{"type":40,"tag":234,"props":832,"children":833},{"style":355},[834],{"type":45,"value":835}," fetch",{"type":40,"tag":234,"props":837,"children":838},{"style":355},[839],{"type":45,"value":840}," --prune\n",{"type":40,"tag":234,"props":842,"children":844},{"class":236,"line":843},16,[845],{"type":40,"tag":234,"props":846,"children":847},{"emptyLinePlaceholder":34},[848],{"type":45,"value":408},{"type":40,"tag":234,"props":850,"children":852},{"class":236,"line":851},17,[853],{"type":40,"tag":234,"props":854,"children":855},{"style":241},[856],{"type":45,"value":857},"# Get merged branches (into default branch)\n",{"type":40,"tag":234,"props":859,"children":861},{"class":236,"line":860},18,[862,866,870,875,879,883],{"type":40,"tag":234,"props":863,"children":864},{"style":350},[865],{"type":45,"value":19},{"type":40,"tag":234,"props":867,"children":868},{"style":355},[869],{"type":45,"value":765},{"type":40,"tag":234,"props":871,"children":872},{"style":355},[873],{"type":45,"value":874}," --merged",{"type":40,"tag":234,"props":876,"children":877},{"style":366},[878],{"type":45,"value":369},{"type":40,"tag":234,"props":880,"children":881},{"style":372},[882],{"type":45,"value":375},{"type":40,"tag":234,"props":884,"children":885},{"style":366},[886],{"type":45,"value":399},{"type":40,"tag":234,"props":888,"children":890},{"class":236,"line":889},19,[891],{"type":40,"tag":234,"props":892,"children":893},{"emptyLinePlaceholder":34},[894],{"type":45,"value":408},{"type":40,"tag":234,"props":896,"children":898},{"class":236,"line":897},20,[899],{"type":40,"tag":234,"props":900,"children":901},{"style":241},[902],{"type":45,"value":903},"# Get recent PR merge history (squash-merge detection)\n",{"type":40,"tag":234,"props":905,"children":907},{"class":236,"line":906},21,[908,912,916,920,924,928,932,936,940,944,948,953,957,961,965],{"type":40,"tag":234,"props":909,"children":910},{"style":350},[911],{"type":45,"value":19},{"type":40,"tag":234,"props":913,"children":914},{"style":355},[915],{"type":45,"value":358},{"type":40,"tag":234,"props":917,"children":918},{"style":355},[919],{"type":45,"value":363},{"type":40,"tag":234,"props":921,"children":922},{"style":366},[923],{"type":45,"value":369},{"type":40,"tag":234,"props":925,"children":926},{"style":372},[927],{"type":45,"value":375},{"type":40,"tag":234,"props":929,"children":930},{"style":366},[931],{"type":45,"value":380},{"type":40,"tag":234,"props":933,"children":934},{"style":366},[935],{"type":45,"value":459},{"type":40,"tag":234,"props":937,"children":938},{"style":350},[939],{"type":45,"value":464},{"type":40,"tag":234,"props":941,"children":942},{"style":355},[943],{"type":45,"value":469},{"type":40,"tag":234,"props":945,"children":946},{"style":366},[947],{"type":45,"value":369},{"type":40,"tag":234,"props":949,"children":950},{"style":355},[951],{"type":45,"value":952},"#[0-9]+",{"type":40,"tag":234,"props":954,"children":955},{"style":366},[956],{"type":45,"value":380},{"type":40,"tag":234,"props":958,"children":959},{"style":366},[960],{"type":45,"value":459},{"type":40,"tag":234,"props":962,"children":963},{"style":350},[964],{"type":45,"value":561},{"type":40,"tag":234,"props":966,"children":967},{"style":355},[968],{"type":45,"value":969}," -30\n",{"type":40,"tag":234,"props":971,"children":973},{"class":236,"line":972},22,[974],{"type":40,"tag":234,"props":975,"children":976},{"emptyLinePlaceholder":34},[977],{"type":45,"value":408},{"type":40,"tag":234,"props":979,"children":981},{"class":236,"line":980},23,[982],{"type":40,"tag":234,"props":983,"children":984},{"style":241},[985],{"type":45,"value":986},"# For EACH non-protected branch, get unique commits and sync status\n",{"type":40,"tag":234,"props":988,"children":990},{"class":236,"line":989},24,[991,997,1002,1007,1012,1016,1020,1025,1029,1034,1038],{"type":40,"tag":234,"props":992,"children":994},{"style":993},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[995],{"type":45,"value":996},"for",{"type":40,"tag":234,"props":998,"children":999},{"style":372},[1000],{"type":45,"value":1001}," branch ",{"type":40,"tag":234,"props":1003,"children":1004},{"style":993},[1005],{"type":45,"value":1006},"in",{"type":40,"tag":234,"props":1008,"children":1009},{"style":366},[1010],{"type":45,"value":1011}," $(",{"type":40,"tag":234,"props":1013,"children":1014},{"style":350},[1015],{"type":45,"value":19},{"type":40,"tag":234,"props":1017,"children":1018},{"style":355},[1019],{"type":45,"value":765},{"type":40,"tag":234,"props":1021,"children":1022},{"style":355},[1023],{"type":45,"value":1024}," --format=",{"type":40,"tag":234,"props":1026,"children":1027},{"style":366},[1028],{"type":45,"value":667},{"type":40,"tag":234,"props":1030,"children":1031},{"style":355},[1032],{"type":45,"value":1033},"%(refname:short)",{"type":40,"tag":234,"props":1035,"children":1036},{"style":366},[1037],{"type":45,"value":667},{"type":40,"tag":234,"props":1039,"children":1040},{"style":372},[1041],{"type":45,"value":630},{"type":40,"tag":234,"props":1043,"children":1045},{"class":236,"line":1044},25,[1046,1051,1055,1060,1064,1069,1073,1078],{"type":40,"tag":234,"props":1047,"children":1048},{"style":366},[1049],{"type":45,"value":1050},"  |",{"type":40,"tag":234,"props":1052,"children":1053},{"style":350},[1054],{"type":45,"value":464},{"type":40,"tag":234,"props":1056,"children":1057},{"style":355},[1058],{"type":45,"value":1059}," -vE",{"type":40,"tag":234,"props":1061,"children":1062},{"style":366},[1063],{"type":45,"value":369},{"type":40,"tag":234,"props":1065,"children":1066},{"style":372},[1067],{"type":45,"value":1068},"$protected",{"type":40,"tag":234,"props":1070,"children":1071},{"style":366},[1072],{"type":45,"value":380},{"type":40,"tag":234,"props":1074,"children":1075},{"style":366},[1076],{"type":45,"value":1077},");",{"type":40,"tag":234,"props":1079,"children":1080},{"style":993},[1081],{"type":45,"value":1082}," do\n",{"type":40,"tag":234,"props":1084,"children":1086},{"class":236,"line":1085},26,[1087,1092,1096,1101,1105,1110],{"type":40,"tag":234,"props":1088,"children":1089},{"style":675},[1090],{"type":45,"value":1091},"  echo",{"type":40,"tag":234,"props":1093,"children":1094},{"style":366},[1095],{"type":45,"value":369},{"type":40,"tag":234,"props":1097,"children":1098},{"style":355},[1099],{"type":45,"value":1100},"=== ",{"type":40,"tag":234,"props":1102,"children":1103},{"style":372},[1104],{"type":45,"value":394},{"type":40,"tag":234,"props":1106,"children":1107},{"style":355},[1108],{"type":45,"value":1109}," ===",{"type":40,"tag":234,"props":1111,"children":1112},{"style":366},[1113],{"type":45,"value":399},{"type":40,"tag":234,"props":1115,"children":1117},{"class":236,"line":1116},27,[1118,1122,1126,1131,1135,1140],{"type":40,"tag":234,"props":1119,"children":1120},{"style":675},[1121],{"type":45,"value":1091},{"type":40,"tag":234,"props":1123,"children":1124},{"style":366},[1125],{"type":45,"value":369},{"type":40,"tag":234,"props":1127,"children":1128},{"style":355},[1129],{"type":45,"value":1130},"Commits not in ",{"type":40,"tag":234,"props":1132,"children":1133},{"style":372},[1134],{"type":45,"value":375},{"type":40,"tag":234,"props":1136,"children":1137},{"style":355},[1138],{"type":45,"value":1139},":",{"type":40,"tag":234,"props":1141,"children":1142},{"style":366},[1143],{"type":45,"value":399},{"type":40,"tag":234,"props":1145,"children":1147},{"class":236,"line":1146},28,[1148,1153,1157,1161,1165,1169,1173,1177,1181,1185,1189,1194,1198],{"type":40,"tag":234,"props":1149,"children":1150},{"style":350},[1151],{"type":45,"value":1152},"  git",{"type":40,"tag":234,"props":1154,"children":1155},{"style":355},[1156],{"type":45,"value":358},{"type":40,"tag":234,"props":1158,"children":1159},{"style":355},[1160],{"type":45,"value":363},{"type":40,"tag":234,"props":1162,"children":1163},{"style":366},[1164],{"type":45,"value":369},{"type":40,"tag":234,"props":1166,"children":1167},{"style":372},[1168],{"type":45,"value":375},{"type":40,"tag":234,"props":1170,"children":1171},{"style":366},[1172],{"type":45,"value":380},{"type":40,"tag":234,"props":1174,"children":1175},{"style":355},[1176],{"type":45,"value":385},{"type":40,"tag":234,"props":1178,"children":1179},{"style":366},[1180],{"type":45,"value":380},{"type":40,"tag":234,"props":1182,"children":1183},{"style":372},[1184],{"type":45,"value":394},{"type":40,"tag":234,"props":1186,"children":1187},{"style":366},[1188],{"type":45,"value":380},{"type":40,"tag":234,"props":1190,"children":1191},{"style":366},[1192],{"type":45,"value":1193}," 2>",{"type":40,"tag":234,"props":1195,"children":1196},{"style":355},[1197],{"type":45,"value":643},{"type":40,"tag":234,"props":1199,"children":1200},{"style":372},[1201],{"type":45,"value":630},{"type":40,"tag":234,"props":1203,"children":1205},{"class":236,"line":1204},29,[1206,1211,1215],{"type":40,"tag":234,"props":1207,"children":1208},{"style":366},[1209],{"type":45,"value":1210},"    |",{"type":40,"tag":234,"props":1212,"children":1213},{"style":350},[1214],{"type":45,"value":561},{"type":40,"tag":234,"props":1216,"children":1217},{"style":355},[1218],{"type":45,"value":1219}," -5\n",{"type":40,"tag":234,"props":1221,"children":1223},{"class":236,"line":1222},30,[1224,1228,1232,1237],{"type":40,"tag":234,"props":1225,"children":1226},{"style":675},[1227],{"type":45,"value":1091},{"type":40,"tag":234,"props":1229,"children":1230},{"style":366},[1231],{"type":45,"value":369},{"type":40,"tag":234,"props":1233,"children":1234},{"style":355},[1235],{"type":45,"value":1236},"Commits not pushed to remote:",{"type":40,"tag":234,"props":1238,"children":1239},{"style":366},[1240],{"type":45,"value":399},{"type":40,"tag":234,"props":1242,"children":1244},{"class":236,"line":1243},31,[1245,1249,1253,1257,1261,1266,1270,1274,1278,1282,1286,1290,1294,1298],{"type":40,"tag":234,"props":1246,"children":1247},{"style":350},[1248],{"type":45,"value":1152},{"type":40,"tag":234,"props":1250,"children":1251},{"style":355},[1252],{"type":45,"value":358},{"type":40,"tag":234,"props":1254,"children":1255},{"style":355},[1256],{"type":45,"value":363},{"type":40,"tag":234,"props":1258,"children":1259},{"style":366},[1260],{"type":45,"value":369},{"type":40,"tag":234,"props":1262,"children":1263},{"style":355},[1264],{"type":45,"value":1265},"origin\u002F",{"type":40,"tag":234,"props":1267,"children":1268},{"style":372},[1269],{"type":45,"value":394},{"type":40,"tag":234,"props":1271,"children":1272},{"style":366},[1273],{"type":45,"value":380},{"type":40,"tag":234,"props":1275,"children":1276},{"style":355},[1277],{"type":45,"value":385},{"type":40,"tag":234,"props":1279,"children":1280},{"style":366},[1281],{"type":45,"value":380},{"type":40,"tag":234,"props":1283,"children":1284},{"style":372},[1285],{"type":45,"value":394},{"type":40,"tag":234,"props":1287,"children":1288},{"style":366},[1289],{"type":45,"value":380},{"type":40,"tag":234,"props":1291,"children":1292},{"style":366},[1293],{"type":45,"value":1193},{"type":40,"tag":234,"props":1295,"children":1296},{"style":355},[1297],{"type":45,"value":643},{"type":40,"tag":234,"props":1299,"children":1300},{"style":372},[1301],{"type":45,"value":630},{"type":40,"tag":234,"props":1303,"children":1305},{"class":236,"line":1304},32,[1306,1310,1314,1319,1323,1327,1331,1336],{"type":40,"tag":234,"props":1307,"children":1308},{"style":366},[1309],{"type":45,"value":1210},{"type":40,"tag":234,"props":1311,"children":1312},{"style":350},[1313],{"type":45,"value":561},{"type":40,"tag":234,"props":1315,"children":1316},{"style":355},[1317],{"type":45,"value":1318}," -5",{"type":40,"tag":234,"props":1320,"children":1321},{"style":366},[1322],{"type":45,"value":672},{"type":40,"tag":234,"props":1324,"children":1325},{"style":675},[1326],{"type":45,"value":678},{"type":40,"tag":234,"props":1328,"children":1329},{"style":366},[1330],{"type":45,"value":369},{"type":40,"tag":234,"props":1332,"children":1333},{"style":355},[1334],{"type":45,"value":1335},"(no remote tracking)",{"type":40,"tag":234,"props":1337,"children":1338},{"style":366},[1339],{"type":45,"value":399},{"type":40,"tag":234,"props":1341,"children":1343},{"class":236,"line":1342},33,[1344],{"type":40,"tag":234,"props":1345,"children":1346},{"style":993},[1347],{"type":45,"value":1348},"done\n",{"type":40,"tag":48,"props":1350,"children":1351},{},[1352,1357,1359,1365],{"type":40,"tag":114,"props":1353,"children":1354},{},[1355],{"type":45,"value":1356},"Note on branch names:",{"type":45,"value":1358}," Git branch names can contain characters that break shell expansion. Always quote ",{"type":40,"tag":145,"props":1360,"children":1362},{"className":1361},[],[1363],{"type":45,"value":1364},"\"$branch\"",{"type":45,"value":1366}," in commands.",{"type":40,"tag":128,"props":1368,"children":1370},{"id":1369},"phase-2-group-related-branches",[1371],{"type":45,"value":1372},"Phase 2: Group Related Branches",{"type":40,"tag":48,"props":1374,"children":1375},{},[1376],{"type":40,"tag":114,"props":1377,"children":1378},{},[1379],{"type":45,"value":1380},"Do this BEFORE individual categorization.",{"type":40,"tag":48,"props":1382,"children":1383},{},[1384],{"type":45,"value":1385},"Identify branch groups by shared prefixes:",{"type":40,"tag":223,"props":1387,"children":1389},{"className":225,"code":1388,"language":227,"meta":228,"style":228},"# List branches and extract prefixes\ngit branch --format='%(refname:short)' | sed 's\u002F-[^-]*$\u002F\u002F' | sort | uniq -c | sort -rn\n",[1390],{"type":40,"tag":145,"props":1391,"children":1392},{"__ignoreMap":228},[1393,1401],{"type":40,"tag":234,"props":1394,"children":1395},{"class":236,"line":237},[1396],{"type":40,"tag":234,"props":1397,"children":1398},{"style":241},[1399],{"type":45,"value":1400},"# List branches and extract prefixes\n",{"type":40,"tag":234,"props":1402,"children":1403},{"class":236,"line":247},[1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1445,1449,1453,1458,1462,1467,1472,1476,1480],{"type":40,"tag":234,"props":1405,"children":1406},{"style":350},[1407],{"type":45,"value":19},{"type":40,"tag":234,"props":1409,"children":1410},{"style":355},[1411],{"type":45,"value":765},{"type":40,"tag":234,"props":1413,"children":1414},{"style":355},[1415],{"type":45,"value":1024},{"type":40,"tag":234,"props":1417,"children":1418},{"style":366},[1419],{"type":45,"value":667},{"type":40,"tag":234,"props":1421,"children":1422},{"style":355},[1423],{"type":45,"value":1033},{"type":40,"tag":234,"props":1425,"children":1426},{"style":366},[1427],{"type":45,"value":667},{"type":40,"tag":234,"props":1429,"children":1430},{"style":366},[1431],{"type":45,"value":459},{"type":40,"tag":234,"props":1433,"children":1434},{"style":350},[1435],{"type":45,"value":652},{"type":40,"tag":234,"props":1437,"children":1438},{"style":366},[1439],{"type":45,"value":657},{"type":40,"tag":234,"props":1441,"children":1442},{"style":355},[1443],{"type":45,"value":1444},"s\u002F-[^-]*$\u002F\u002F",{"type":40,"tag":234,"props":1446,"children":1447},{"style":366},[1448],{"type":45,"value":667},{"type":40,"tag":234,"props":1450,"children":1451},{"style":366},[1452],{"type":45,"value":459},{"type":40,"tag":234,"props":1454,"children":1455},{"style":350},[1456],{"type":45,"value":1457}," sort",{"type":40,"tag":234,"props":1459,"children":1460},{"style":366},[1461],{"type":45,"value":459},{"type":40,"tag":234,"props":1463,"children":1464},{"style":350},[1465],{"type":45,"value":1466}," uniq",{"type":40,"tag":234,"props":1468,"children":1469},{"style":355},[1470],{"type":45,"value":1471}," -c",{"type":40,"tag":234,"props":1473,"children":1474},{"style":366},[1475],{"type":45,"value":459},{"type":40,"tag":234,"props":1477,"children":1478},{"style":350},[1479],{"type":45,"value":1457},{"type":40,"tag":234,"props":1481,"children":1482},{"style":355},[1483],{"type":45,"value":1484}," -rn\n",{"type":40,"tag":48,"props":1486,"children":1487},{},[1488],{"type":45,"value":1489},"For each group with 2+ branches:",{"type":40,"tag":283,"props":1491,"children":1492},{},[1493,1503,1513,1523],{"type":40,"tag":65,"props":1494,"children":1495},{},[1496,1501],{"type":40,"tag":114,"props":1497,"children":1498},{},[1499],{"type":45,"value":1500},"Compare commit histories",{"type":45,"value":1502}," - Which branches contain commits from others?",{"type":40,"tag":65,"props":1504,"children":1505},{},[1506,1511],{"type":40,"tag":114,"props":1507,"children":1508},{},[1509],{"type":45,"value":1510},"Find merge evidence",{"type":45,"value":1512}," - Which PRs incorporated work from this group?",{"type":40,"tag":65,"props":1514,"children":1515},{},[1516,1521],{"type":40,"tag":114,"props":1517,"children":1518},{},[1519],{"type":45,"value":1520},"Identify the \"final\" branch",{"type":45,"value":1522}," - Usually the most recent or most complete",{"type":40,"tag":65,"props":1524,"children":1525},{},[1526,1531],{"type":40,"tag":114,"props":1527,"children":1528},{},[1529],{"type":45,"value":1530},"Mark superseded branches",{"type":45,"value":1532}," - Older iterations whose work is in main or in a newer branch",{"type":40,"tag":48,"props":1534,"children":1535},{},[1536],{"type":40,"tag":114,"props":1537,"children":1538},{},[1539],{"type":45,"value":1540},"SUPERSEDED requires evidence, not just shared prefix:",{"type":40,"tag":61,"props":1542,"children":1543},{},[1544,1549,1554],{"type":40,"tag":65,"props":1545,"children":1546},{},[1547],{"type":45,"value":1548},"A PR merged the work into main, OR",{"type":40,"tag":65,"props":1550,"children":1551},{},[1552],{"type":45,"value":1553},"A newer branch contains all commits from the older branch",{"type":40,"tag":65,"props":1555,"children":1556},{},[1557],{"type":45,"value":1558},"Name prefix alone is NOT sufficient — similarly named branches may contain independent work",{"type":40,"tag":48,"props":1560,"children":1561},{},[1562,1564,1570],{"type":45,"value":1563},"Example analysis for ",{"type":40,"tag":145,"props":1565,"children":1567},{"className":1566},[],[1568],{"type":45,"value":1569},"feature\u002Fapi-*",{"type":45,"value":329},{"type":40,"tag":223,"props":1572,"children":1576},{"className":1573,"code":1574,"language":1575,"meta":228,"style":228},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","### Related Branch Group: feature\u002Fapi-*\n\n| Branch | Commits | PR Merged | Status |\n|--------|---------|-----------|--------|\n| feature\u002Fapi | 12 | #29 (initial API) | Superseded - work in main |\n| feature\u002Fapi-v2 | 8 | #45 (API improvements) | Superseded - work in main |\n| feature\u002Fapi-refactor | 5 | #67 (refactor) | Superseded - work in main |\n| feature\u002Fapi-final | 4 | None found | Superseded by above PRs |\n\n**Recommendation:** All 4 branches can be deleted - work incorporated via PRs #29, #45, #67\n","markdown",[1577],{"type":40,"tag":145,"props":1578,"children":1579},{"__ignoreMap":228},[1580,1593,1600,1645,1653,1696,1738,1780,1823,1830],{"type":40,"tag":234,"props":1581,"children":1582},{"class":236,"line":237},[1583,1588],{"type":40,"tag":234,"props":1584,"children":1585},{"style":366},[1586],{"type":45,"value":1587},"### ",{"type":40,"tag":234,"props":1589,"children":1590},{"style":350},[1591],{"type":45,"value":1592},"Related Branch Group: feature\u002Fapi-*\n",{"type":40,"tag":234,"props":1594,"children":1595},{"class":236,"line":247},[1596],{"type":40,"tag":234,"props":1597,"children":1598},{"emptyLinePlaceholder":34},[1599],{"type":45,"value":408},{"type":40,"tag":234,"props":1601,"children":1602},{"class":236,"line":402},[1603,1608,1613,1617,1622,1626,1631,1635,1640],{"type":40,"tag":234,"props":1604,"children":1605},{"style":366},[1606],{"type":45,"value":1607},"|",{"type":40,"tag":234,"props":1609,"children":1610},{"style":372},[1611],{"type":45,"value":1612}," Branch ",{"type":40,"tag":234,"props":1614,"children":1615},{"style":366},[1616],{"type":45,"value":1607},{"type":40,"tag":234,"props":1618,"children":1619},{"style":372},[1620],{"type":45,"value":1621}," Commits ",{"type":40,"tag":234,"props":1623,"children":1624},{"style":366},[1625],{"type":45,"value":1607},{"type":40,"tag":234,"props":1627,"children":1628},{"style":372},[1629],{"type":45,"value":1630}," PR Merged ",{"type":40,"tag":234,"props":1632,"children":1633},{"style":366},[1634],{"type":45,"value":1607},{"type":40,"tag":234,"props":1636,"children":1637},{"style":372},[1638],{"type":45,"value":1639}," Status ",{"type":40,"tag":234,"props":1641,"children":1642},{"style":366},[1643],{"type":45,"value":1644},"|\n",{"type":40,"tag":234,"props":1646,"children":1647},{"class":236,"line":411},[1648],{"type":40,"tag":234,"props":1649,"children":1650},{"style":366},[1651],{"type":45,"value":1652},"|--------|---------|-----------|--------|\n",{"type":40,"tag":234,"props":1654,"children":1655},{"class":236,"line":420},[1656,1660,1665,1669,1674,1678,1683,1687,1692],{"type":40,"tag":234,"props":1657,"children":1658},{"style":366},[1659],{"type":45,"value":1607},{"type":40,"tag":234,"props":1661,"children":1662},{"style":372},[1663],{"type":45,"value":1664}," feature\u002Fapi ",{"type":40,"tag":234,"props":1666,"children":1667},{"style":366},[1668],{"type":45,"value":1607},{"type":40,"tag":234,"props":1670,"children":1671},{"style":372},[1672],{"type":45,"value":1673}," 12 ",{"type":40,"tag":234,"props":1675,"children":1676},{"style":366},[1677],{"type":45,"value":1607},{"type":40,"tag":234,"props":1679,"children":1680},{"style":372},[1681],{"type":45,"value":1682}," #29 (initial API) ",{"type":40,"tag":234,"props":1684,"children":1685},{"style":366},[1686],{"type":45,"value":1607},{"type":40,"tag":234,"props":1688,"children":1689},{"style":372},[1690],{"type":45,"value":1691}," Superseded - work in main ",{"type":40,"tag":234,"props":1693,"children":1694},{"style":366},[1695],{"type":45,"value":1644},{"type":40,"tag":234,"props":1697,"children":1698},{"class":236,"line":429},[1699,1703,1708,1712,1717,1721,1726,1730,1734],{"type":40,"tag":234,"props":1700,"children":1701},{"style":366},[1702],{"type":45,"value":1607},{"type":40,"tag":234,"props":1704,"children":1705},{"style":372},[1706],{"type":45,"value":1707}," feature\u002Fapi-v2 ",{"type":40,"tag":234,"props":1709,"children":1710},{"style":366},[1711],{"type":45,"value":1607},{"type":40,"tag":234,"props":1713,"children":1714},{"style":372},[1715],{"type":45,"value":1716}," 8 ",{"type":40,"tag":234,"props":1718,"children":1719},{"style":366},[1720],{"type":45,"value":1607},{"type":40,"tag":234,"props":1722,"children":1723},{"style":372},[1724],{"type":45,"value":1725}," #45 (API improvements) ",{"type":40,"tag":234,"props":1727,"children":1728},{"style":366},[1729],{"type":45,"value":1607},{"type":40,"tag":234,"props":1731,"children":1732},{"style":372},[1733],{"type":45,"value":1691},{"type":40,"tag":234,"props":1735,"children":1736},{"style":366},[1737],{"type":45,"value":1644},{"type":40,"tag":234,"props":1739,"children":1740},{"class":236,"line":485},[1741,1745,1750,1754,1759,1763,1768,1772,1776],{"type":40,"tag":234,"props":1742,"children":1743},{"style":366},[1744],{"type":45,"value":1607},{"type":40,"tag":234,"props":1746,"children":1747},{"style":372},[1748],{"type":45,"value":1749}," feature\u002Fapi-refactor ",{"type":40,"tag":234,"props":1751,"children":1752},{"style":366},[1753],{"type":45,"value":1607},{"type":40,"tag":234,"props":1755,"children":1756},{"style":372},[1757],{"type":45,"value":1758}," 5 ",{"type":40,"tag":234,"props":1760,"children":1761},{"style":366},[1762],{"type":45,"value":1607},{"type":40,"tag":234,"props":1764,"children":1765},{"style":372},[1766],{"type":45,"value":1767}," #67 (refactor) ",{"type":40,"tag":234,"props":1769,"children":1770},{"style":366},[1771],{"type":45,"value":1607},{"type":40,"tag":234,"props":1773,"children":1774},{"style":372},[1775],{"type":45,"value":1691},{"type":40,"tag":234,"props":1777,"children":1778},{"style":366},[1779],{"type":45,"value":1644},{"type":40,"tag":234,"props":1781,"children":1782},{"class":236,"line":493},[1783,1787,1792,1796,1801,1805,1810,1814,1819],{"type":40,"tag":234,"props":1784,"children":1785},{"style":366},[1786],{"type":45,"value":1607},{"type":40,"tag":234,"props":1788,"children":1789},{"style":372},[1790],{"type":45,"value":1791}," feature\u002Fapi-final ",{"type":40,"tag":234,"props":1793,"children":1794},{"style":366},[1795],{"type":45,"value":1607},{"type":40,"tag":234,"props":1797,"children":1798},{"style":372},[1799],{"type":45,"value":1800}," 4 ",{"type":40,"tag":234,"props":1802,"children":1803},{"style":366},[1804],{"type":45,"value":1607},{"type":40,"tag":234,"props":1806,"children":1807},{"style":372},[1808],{"type":45,"value":1809}," None found ",{"type":40,"tag":234,"props":1811,"children":1812},{"style":366},[1813],{"type":45,"value":1607},{"type":40,"tag":234,"props":1815,"children":1816},{"style":372},[1817],{"type":45,"value":1818}," Superseded by above PRs ",{"type":40,"tag":234,"props":1820,"children":1821},{"style":366},[1822],{"type":45,"value":1644},{"type":40,"tag":234,"props":1824,"children":1825},{"class":236,"line":502},[1826],{"type":40,"tag":234,"props":1827,"children":1828},{"emptyLinePlaceholder":34},[1829],{"type":45,"value":408},{"type":40,"tag":234,"props":1831,"children":1832},{"class":236,"line":773},[1833,1839,1845,1849],{"type":40,"tag":234,"props":1834,"children":1836},{"style":1835},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[1837],{"type":45,"value":1838},"**",{"type":40,"tag":234,"props":1840,"children":1842},{"style":1841},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[1843],{"type":45,"value":1844},"Recommendation:",{"type":40,"tag":234,"props":1846,"children":1847},{"style":1835},[1848],{"type":45,"value":1838},{"type":40,"tag":234,"props":1850,"children":1851},{"style":372},[1852],{"type":45,"value":1853}," All 4 branches can be deleted - work incorporated via PRs #29, #45, #67\n",{"type":40,"tag":128,"props":1855,"children":1857},{"id":1856},"phase-3-categorize-remaining-branches",[1858],{"type":45,"value":1859},"Phase 3: Categorize Remaining Branches",{"type":40,"tag":48,"props":1861,"children":1862},{},[1863],{"type":45,"value":1864},"For branches NOT in a related group, categorize individually:",{"type":40,"tag":223,"props":1866,"children":1870},{"className":1867,"code":1869,"language":45},[1868],"language-text","Is branch merged into default branch?\n├─ YES → SAFE_TO_DELETE (use -d)\n└─ NO → Is tracking a remote?\n        ├─ YES → Remote deleted? ([gone])\n        │        ├─ YES → Was work squash-merged? (check main for PR)\n        │        │        ├─ YES → SQUASH_MERGED (use -D)\n        │        │        └─ NO → REMOTE_GONE (needs review)\n        │        └─ NO → Local ahead of remote? (check: git log origin\u002F\u003Cbranch>..\u003Cbranch>)\n        │                ├─ YES (has output) → UNPUSHED_WORK (keep)\n        │                └─ NO (empty output) → SYNCED_WITH_REMOTE (keep)\n        └─ NO → Has unique commits?\n                ├─ YES → LOCAL_WORK (keep)\n                └─ NO → SAFE_TO_DELETE (use -d)\n",[1871],{"type":40,"tag":145,"props":1872,"children":1873},{"__ignoreMap":228},[1874],{"type":45,"value":1869},{"type":40,"tag":48,"props":1876,"children":1877},{},[1878],{"type":40,"tag":114,"props":1879,"children":1880},{},[1881],{"type":45,"value":1882},"Category definitions:",{"type":40,"tag":1884,"props":1885,"children":1886},"table",{},[1887,1911],{"type":40,"tag":1888,"props":1889,"children":1890},"thead",{},[1891],{"type":40,"tag":1892,"props":1893,"children":1894},"tr",{},[1895,1901,1906],{"type":40,"tag":1896,"props":1897,"children":1898},"th",{},[1899],{"type":45,"value":1900},"Category",{"type":40,"tag":1896,"props":1902,"children":1903},{},[1904],{"type":45,"value":1905},"Meaning",{"type":40,"tag":1896,"props":1907,"children":1908},{},[1909],{"type":45,"value":1910},"Delete Command",{"type":40,"tag":1912,"props":1913,"children":1914},"tbody",{},[1915,1937,1958,1979,1997,2015,2032],{"type":40,"tag":1892,"props":1916,"children":1917},{},[1918,1924,1929],{"type":40,"tag":1919,"props":1920,"children":1921},"td",{},[1922],{"type":45,"value":1923},"SAFE_TO_DELETE",{"type":40,"tag":1919,"props":1925,"children":1926},{},[1927],{"type":45,"value":1928},"Merged into default branch",{"type":40,"tag":1919,"props":1930,"children":1931},{},[1932],{"type":40,"tag":145,"props":1933,"children":1935},{"className":1934},[],[1936],{"type":45,"value":150},{"type":40,"tag":1892,"props":1938,"children":1939},{},[1940,1945,1950],{"type":40,"tag":1919,"props":1941,"children":1942},{},[1943],{"type":45,"value":1944},"SQUASH_MERGED",{"type":40,"tag":1919,"props":1946,"children":1947},{},[1948],{"type":45,"value":1949},"Work incorporated via squash merge",{"type":40,"tag":1919,"props":1951,"children":1952},{},[1953],{"type":40,"tag":145,"props":1954,"children":1956},{"className":1955},[],[1957],{"type":45,"value":171},{"type":40,"tag":1892,"props":1959,"children":1960},{},[1961,1966,1971],{"type":40,"tag":1919,"props":1962,"children":1963},{},[1964],{"type":45,"value":1965},"SUPERSEDED",{"type":40,"tag":1919,"props":1967,"children":1968},{},[1969],{"type":45,"value":1970},"Part of a group, work verified in main via PR or in newer branch",{"type":40,"tag":1919,"props":1972,"children":1973},{},[1974],{"type":40,"tag":145,"props":1975,"children":1977},{"className":1976},[],[1978],{"type":45,"value":171},{"type":40,"tag":1892,"props":1980,"children":1981},{},[1982,1987,1992],{"type":40,"tag":1919,"props":1983,"children":1984},{},[1985],{"type":45,"value":1986},"REMOTE_GONE",{"type":40,"tag":1919,"props":1988,"children":1989},{},[1990],{"type":45,"value":1991},"Remote deleted, work NOT found in main",{"type":40,"tag":1919,"props":1993,"children":1994},{},[1995],{"type":45,"value":1996},"Review needed",{"type":40,"tag":1892,"props":1998,"children":1999},{},[2000,2005,2010],{"type":40,"tag":1919,"props":2001,"children":2002},{},[2003],{"type":45,"value":2004},"UNPUSHED_WORK",{"type":40,"tag":1919,"props":2006,"children":2007},{},[2008],{"type":45,"value":2009},"Has commits not pushed to remote",{"type":40,"tag":1919,"props":2011,"children":2012},{},[2013],{"type":45,"value":2014},"Keep",{"type":40,"tag":1892,"props":2016,"children":2017},{},[2018,2023,2028],{"type":40,"tag":1919,"props":2019,"children":2020},{},[2021],{"type":45,"value":2022},"LOCAL_WORK",{"type":40,"tag":1919,"props":2024,"children":2025},{},[2026],{"type":45,"value":2027},"Untracked branch with unique commits",{"type":40,"tag":1919,"props":2029,"children":2030},{},[2031],{"type":45,"value":2014},{"type":40,"tag":1892,"props":2033,"children":2034},{},[2035,2040,2045],{"type":40,"tag":1919,"props":2036,"children":2037},{},[2038],{"type":45,"value":2039},"SYNCED_WITH_REMOTE",{"type":40,"tag":1919,"props":2041,"children":2042},{},[2043],{"type":45,"value":2044},"Up to date with remote",{"type":40,"tag":1919,"props":2046,"children":2047},{},[2048],{"type":45,"value":2014},{"type":40,"tag":128,"props":2050,"children":2052},{"id":2051},"phase-4-dirty-state-detection",[2053],{"type":45,"value":2054},"Phase 4: Dirty State Detection",{"type":40,"tag":48,"props":2056,"children":2057},{},[2058],{"type":45,"value":2059},"Check ALL worktrees and current directory for uncommitted changes:",{"type":40,"tag":223,"props":2061,"children":2063},{"className":225,"code":2062,"language":227,"meta":228,"style":228},"# For each worktree path\ngit -C \u003Cworktree-path> status --porcelain\n\n# For current directory\ngit status --porcelain\n",[2064],{"type":40,"tag":145,"props":2065,"children":2066},{"__ignoreMap":228},[2067,2075,2117,2124,2132],{"type":40,"tag":234,"props":2068,"children":2069},{"class":236,"line":237},[2070],{"type":40,"tag":234,"props":2071,"children":2072},{"style":241},[2073],{"type":45,"value":2074},"# For each worktree path\n",{"type":40,"tag":234,"props":2076,"children":2077},{"class":236,"line":247},[2078,2082,2087,2092,2097,2102,2107,2112],{"type":40,"tag":234,"props":2079,"children":2080},{"style":350},[2081],{"type":45,"value":19},{"type":40,"tag":234,"props":2083,"children":2084},{"style":355},[2085],{"type":45,"value":2086}," -C",{"type":40,"tag":234,"props":2088,"children":2089},{"style":366},[2090],{"type":45,"value":2091}," \u003C",{"type":40,"tag":234,"props":2093,"children":2094},{"style":355},[2095],{"type":45,"value":2096},"worktree-pat",{"type":40,"tag":234,"props":2098,"children":2099},{"style":372},[2100],{"type":45,"value":2101},"h",{"type":40,"tag":234,"props":2103,"children":2104},{"style":366},[2105],{"type":45,"value":2106},">",{"type":40,"tag":234,"props":2108,"children":2109},{"style":355},[2110],{"type":45,"value":2111}," status",{"type":40,"tag":234,"props":2113,"children":2114},{"style":355},[2115],{"type":45,"value":2116}," --porcelain\n",{"type":40,"tag":234,"props":2118,"children":2119},{"class":236,"line":402},[2120],{"type":40,"tag":234,"props":2121,"children":2122},{"emptyLinePlaceholder":34},[2123],{"type":45,"value":408},{"type":40,"tag":234,"props":2125,"children":2126},{"class":236,"line":411},[2127],{"type":40,"tag":234,"props":2128,"children":2129},{"style":241},[2130],{"type":45,"value":2131},"# For current directory\n",{"type":40,"tag":234,"props":2133,"children":2134},{"class":236,"line":420},[2135,2139,2143],{"type":40,"tag":234,"props":2136,"children":2137},{"style":350},[2138],{"type":45,"value":19},{"type":40,"tag":234,"props":2140,"children":2141},{"style":355},[2142],{"type":45,"value":2111},{"type":40,"tag":234,"props":2144,"children":2145},{"style":355},[2146],{"type":45,"value":2116},{"type":40,"tag":48,"props":2148,"children":2149},{},[2150],{"type":40,"tag":114,"props":2151,"children":2152},{},[2153],{"type":45,"value":2154},"Display warnings prominently:",{"type":40,"tag":223,"props":2156,"children":2158},{"className":1573,"code":2157,"language":1575,"meta":228,"style":228},"WARNING: ..\u002Fproj-auth has uncommitted changes:\n  M  src\u002Fauth.js\n  ?? new-file.txt\n\nThese changes will be LOST if you remove this worktree.\n",[2159],{"type":40,"tag":145,"props":2160,"children":2161},{"__ignoreMap":228},[2162,2170,2178,2186,2193],{"type":40,"tag":234,"props":2163,"children":2164},{"class":236,"line":237},[2165],{"type":40,"tag":234,"props":2166,"children":2167},{"style":372},[2168],{"type":45,"value":2169},"WARNING: ..\u002Fproj-auth has uncommitted changes:\n",{"type":40,"tag":234,"props":2171,"children":2172},{"class":236,"line":247},[2173],{"type":40,"tag":234,"props":2174,"children":2175},{"style":372},[2176],{"type":45,"value":2177},"  M  src\u002Fauth.js\n",{"type":40,"tag":234,"props":2179,"children":2180},{"class":236,"line":402},[2181],{"type":40,"tag":234,"props":2182,"children":2183},{"style":372},[2184],{"type":45,"value":2185},"  ?? new-file.txt\n",{"type":40,"tag":234,"props":2187,"children":2188},{"class":236,"line":411},[2189],{"type":40,"tag":234,"props":2190,"children":2191},{"emptyLinePlaceholder":34},[2192],{"type":45,"value":408},{"type":40,"tag":234,"props":2194,"children":2195},{"class":236,"line":420},[2196],{"type":40,"tag":234,"props":2197,"children":2198},{"style":372},[2199],{"type":45,"value":2200},"These changes will be LOST if you remove this worktree.\n",{"type":40,"tag":128,"props":2202,"children":2204},{"id":2203},"gate-1-present-complete-analysis",[2205],{"type":45,"value":2206},"GATE 1: Present Complete Analysis",{"type":40,"tag":48,"props":2208,"children":2209},{},[2210],{"type":45,"value":2211},"Present everything in ONE comprehensive view. Group related branches together:",{"type":40,"tag":223,"props":2213,"children":2215},{"className":1573,"code":2214,"language":1575,"meta":228,"style":228},"## Git Cleanup Analysis\n\n### Related Branch Groups\n\n**Group: feature\u002Fapi-* (4 branches)**\n| Branch | Status | Evidence |\n|--------|--------|----------|\n| feature\u002Fapi | Superseded | Work merged in PR #29 |\n| feature\u002Fapi-v2 | Superseded | Work merged in PR #45 |\n| feature\u002Fapi-refactor | Superseded | Work merged in PR #67 |\n| feature\u002Fapi-final | Superseded | Older iteration, diverged |\n\nRecommendation: Delete all 4 (work is in main)\n\n---\n\n### Individual Branches\n\n**Safe to Delete (merged with -d)**\n| Branch | Merged Into |\n|--------|-------------|\n| fix\u002Ftypo | main |\n\n**Safe to Delete (squash-merged, requires -D)**\n| Branch | Merged As |\n|--------|-----------|\n| feature\u002Flogin | PR #42 |\n\n**Needs Review ([gone] remotes, no PR found)**\n| Branch | Last Commit |\n|--------|-------------|\n| experiment\u002Fold | abc1234 \"WIP something\" |\n\n**Keep (active work)**\n| Branch | Status |\n|--------|--------|\n| wip\u002Fnew-feature | 5 unpushed commits |\n\n### Worktrees\n| Path | Branch | Status |\n|------|--------|--------|\n| ..\u002Fproj-auth | feature\u002Fauth | STALE (merged) |\n\n---\n\n**Summary:**\n- 4 related branches (feature\u002Fapi-*) - recommend delete all\n- 1 merged branch - safe to delete\n- 1 squash-merged branch - safe to delete\n- 1 needs review\n- 1 to keep\n\nWhich would you like to clean up?\n",[2216],{"type":40,"tag":145,"props":2217,"children":2218},{"__ignoreMap":228},[2219,2232,2239,2251,2258,2275,2307,2315,2348,2380,2412,2444,2451,2459,2466,2474,2481,2493,2500,2516,2540,2548,2573,2580,2596,2620,2628,2653,2660,2697,2721,2728,2753,2760,2777,2801,2810,2836,2844,2857,2890,2899,2934,2942,2950,2958,2975,2989,3002,3015,3028,3041,3049],{"type":40,"tag":234,"props":2220,"children":2221},{"class":236,"line":237},[2222,2227],{"type":40,"tag":234,"props":2223,"children":2224},{"style":366},[2225],{"type":45,"value":2226},"## ",{"type":40,"tag":234,"props":2228,"children":2229},{"style":350},[2230],{"type":45,"value":2231},"Git Cleanup Analysis\n",{"type":40,"tag":234,"props":2233,"children":2234},{"class":236,"line":247},[2235],{"type":40,"tag":234,"props":2236,"children":2237},{"emptyLinePlaceholder":34},[2238],{"type":45,"value":408},{"type":40,"tag":234,"props":2240,"children":2241},{"class":236,"line":402},[2242,2246],{"type":40,"tag":234,"props":2243,"children":2244},{"style":366},[2245],{"type":45,"value":1587},{"type":40,"tag":234,"props":2247,"children":2248},{"style":350},[2249],{"type":45,"value":2250},"Related Branch Groups\n",{"type":40,"tag":234,"props":2252,"children":2253},{"class":236,"line":411},[2254],{"type":40,"tag":234,"props":2255,"children":2256},{"emptyLinePlaceholder":34},[2257],{"type":45,"value":408},{"type":40,"tag":234,"props":2259,"children":2260},{"class":236,"line":420},[2261,2265,2270],{"type":40,"tag":234,"props":2262,"children":2263},{"style":1835},[2264],{"type":45,"value":1838},{"type":40,"tag":234,"props":2266,"children":2267},{"style":1841},[2268],{"type":45,"value":2269},"Group: feature\u002Fapi-* (4 branches)",{"type":40,"tag":234,"props":2271,"children":2272},{"style":1835},[2273],{"type":45,"value":2274},"**\n",{"type":40,"tag":234,"props":2276,"children":2277},{"class":236,"line":429},[2278,2282,2286,2290,2294,2298,2303],{"type":40,"tag":234,"props":2279,"children":2280},{"style":366},[2281],{"type":45,"value":1607},{"type":40,"tag":234,"props":2283,"children":2284},{"style":372},[2285],{"type":45,"value":1612},{"type":40,"tag":234,"props":2287,"children":2288},{"style":366},[2289],{"type":45,"value":1607},{"type":40,"tag":234,"props":2291,"children":2292},{"style":372},[2293],{"type":45,"value":1639},{"type":40,"tag":234,"props":2295,"children":2296},{"style":366},[2297],{"type":45,"value":1607},{"type":40,"tag":234,"props":2299,"children":2300},{"style":372},[2301],{"type":45,"value":2302}," Evidence ",{"type":40,"tag":234,"props":2304,"children":2305},{"style":366},[2306],{"type":45,"value":1644},{"type":40,"tag":234,"props":2308,"children":2309},{"class":236,"line":485},[2310],{"type":40,"tag":234,"props":2311,"children":2312},{"style":366},[2313],{"type":45,"value":2314},"|--------|--------|----------|\n",{"type":40,"tag":234,"props":2316,"children":2317},{"class":236,"line":493},[2318,2322,2326,2330,2335,2339,2344],{"type":40,"tag":234,"props":2319,"children":2320},{"style":366},[2321],{"type":45,"value":1607},{"type":40,"tag":234,"props":2323,"children":2324},{"style":372},[2325],{"type":45,"value":1664},{"type":40,"tag":234,"props":2327,"children":2328},{"style":366},[2329],{"type":45,"value":1607},{"type":40,"tag":234,"props":2331,"children":2332},{"style":372},[2333],{"type":45,"value":2334}," Superseded ",{"type":40,"tag":234,"props":2336,"children":2337},{"style":366},[2338],{"type":45,"value":1607},{"type":40,"tag":234,"props":2340,"children":2341},{"style":372},[2342],{"type":45,"value":2343}," Work merged in PR #29 ",{"type":40,"tag":234,"props":2345,"children":2346},{"style":366},[2347],{"type":45,"value":1644},{"type":40,"tag":234,"props":2349,"children":2350},{"class":236,"line":502},[2351,2355,2359,2363,2367,2371,2376],{"type":40,"tag":234,"props":2352,"children":2353},{"style":366},[2354],{"type":45,"value":1607},{"type":40,"tag":234,"props":2356,"children":2357},{"style":372},[2358],{"type":45,"value":1707},{"type":40,"tag":234,"props":2360,"children":2361},{"style":366},[2362],{"type":45,"value":1607},{"type":40,"tag":234,"props":2364,"children":2365},{"style":372},[2366],{"type":45,"value":2334},{"type":40,"tag":234,"props":2368,"children":2369},{"style":366},[2370],{"type":45,"value":1607},{"type":40,"tag":234,"props":2372,"children":2373},{"style":372},[2374],{"type":45,"value":2375}," Work merged in PR #45 ",{"type":40,"tag":234,"props":2377,"children":2378},{"style":366},[2379],{"type":45,"value":1644},{"type":40,"tag":234,"props":2381,"children":2382},{"class":236,"line":773},[2383,2387,2391,2395,2399,2403,2408],{"type":40,"tag":234,"props":2384,"children":2385},{"style":366},[2386],{"type":45,"value":1607},{"type":40,"tag":234,"props":2388,"children":2389},{"style":372},[2390],{"type":45,"value":1749},{"type":40,"tag":234,"props":2392,"children":2393},{"style":366},[2394],{"type":45,"value":1607},{"type":40,"tag":234,"props":2396,"children":2397},{"style":372},[2398],{"type":45,"value":2334},{"type":40,"tag":234,"props":2400,"children":2401},{"style":366},[2402],{"type":45,"value":1607},{"type":40,"tag":234,"props":2404,"children":2405},{"style":372},[2406],{"type":45,"value":2407}," Work merged in PR #67 ",{"type":40,"tag":234,"props":2409,"children":2410},{"style":366},[2411],{"type":45,"value":1644},{"type":40,"tag":234,"props":2413,"children":2414},{"class":236,"line":781},[2415,2419,2423,2427,2431,2435,2440],{"type":40,"tag":234,"props":2416,"children":2417},{"style":366},[2418],{"type":45,"value":1607},{"type":40,"tag":234,"props":2420,"children":2421},{"style":372},[2422],{"type":45,"value":1791},{"type":40,"tag":234,"props":2424,"children":2425},{"style":366},[2426],{"type":45,"value":1607},{"type":40,"tag":234,"props":2428,"children":2429},{"style":372},[2430],{"type":45,"value":2334},{"type":40,"tag":234,"props":2432,"children":2433},{"style":366},[2434],{"type":45,"value":1607},{"type":40,"tag":234,"props":2436,"children":2437},{"style":372},[2438],{"type":45,"value":2439}," Older iteration, diverged ",{"type":40,"tag":234,"props":2441,"children":2442},{"style":366},[2443],{"type":45,"value":1644},{"type":40,"tag":234,"props":2445,"children":2446},{"class":236,"line":790},[2447],{"type":40,"tag":234,"props":2448,"children":2449},{"emptyLinePlaceholder":34},[2450],{"type":45,"value":408},{"type":40,"tag":234,"props":2452,"children":2453},{"class":236,"line":808},[2454],{"type":40,"tag":234,"props":2455,"children":2456},{"style":372},[2457],{"type":45,"value":2458},"Recommendation: Delete all 4 (work is in main)\n",{"type":40,"tag":234,"props":2460,"children":2461},{"class":236,"line":816},[2462],{"type":40,"tag":234,"props":2463,"children":2464},{"emptyLinePlaceholder":34},[2465],{"type":45,"value":408},{"type":40,"tag":234,"props":2467,"children":2468},{"class":236,"line":825},[2469],{"type":40,"tag":234,"props":2470,"children":2471},{"style":366},[2472],{"type":45,"value":2473},"---\n",{"type":40,"tag":234,"props":2475,"children":2476},{"class":236,"line":843},[2477],{"type":40,"tag":234,"props":2478,"children":2479},{"emptyLinePlaceholder":34},[2480],{"type":45,"value":408},{"type":40,"tag":234,"props":2482,"children":2483},{"class":236,"line":851},[2484,2488],{"type":40,"tag":234,"props":2485,"children":2486},{"style":366},[2487],{"type":45,"value":1587},{"type":40,"tag":234,"props":2489,"children":2490},{"style":350},[2491],{"type":45,"value":2492},"Individual Branches\n",{"type":40,"tag":234,"props":2494,"children":2495},{"class":236,"line":860},[2496],{"type":40,"tag":234,"props":2497,"children":2498},{"emptyLinePlaceholder":34},[2499],{"type":45,"value":408},{"type":40,"tag":234,"props":2501,"children":2502},{"class":236,"line":889},[2503,2507,2512],{"type":40,"tag":234,"props":2504,"children":2505},{"style":1835},[2506],{"type":45,"value":1838},{"type":40,"tag":234,"props":2508,"children":2509},{"style":1841},[2510],{"type":45,"value":2511},"Safe to Delete (merged with -d)",{"type":40,"tag":234,"props":2513,"children":2514},{"style":1835},[2515],{"type":45,"value":2274},{"type":40,"tag":234,"props":2517,"children":2518},{"class":236,"line":897},[2519,2523,2527,2531,2536],{"type":40,"tag":234,"props":2520,"children":2521},{"style":366},[2522],{"type":45,"value":1607},{"type":40,"tag":234,"props":2524,"children":2525},{"style":372},[2526],{"type":45,"value":1612},{"type":40,"tag":234,"props":2528,"children":2529},{"style":366},[2530],{"type":45,"value":1607},{"type":40,"tag":234,"props":2532,"children":2533},{"style":372},[2534],{"type":45,"value":2535}," Merged Into ",{"type":40,"tag":234,"props":2537,"children":2538},{"style":366},[2539],{"type":45,"value":1644},{"type":40,"tag":234,"props":2541,"children":2542},{"class":236,"line":906},[2543],{"type":40,"tag":234,"props":2544,"children":2545},{"style":366},[2546],{"type":45,"value":2547},"|--------|-------------|\n",{"type":40,"tag":234,"props":2549,"children":2550},{"class":236,"line":972},[2551,2555,2560,2564,2569],{"type":40,"tag":234,"props":2552,"children":2553},{"style":366},[2554],{"type":45,"value":1607},{"type":40,"tag":234,"props":2556,"children":2557},{"style":372},[2558],{"type":45,"value":2559}," fix\u002Ftypo ",{"type":40,"tag":234,"props":2561,"children":2562},{"style":366},[2563],{"type":45,"value":1607},{"type":40,"tag":234,"props":2565,"children":2566},{"style":372},[2567],{"type":45,"value":2568}," main ",{"type":40,"tag":234,"props":2570,"children":2571},{"style":366},[2572],{"type":45,"value":1644},{"type":40,"tag":234,"props":2574,"children":2575},{"class":236,"line":980},[2576],{"type":40,"tag":234,"props":2577,"children":2578},{"emptyLinePlaceholder":34},[2579],{"type":45,"value":408},{"type":40,"tag":234,"props":2581,"children":2582},{"class":236,"line":989},[2583,2587,2592],{"type":40,"tag":234,"props":2584,"children":2585},{"style":1835},[2586],{"type":45,"value":1838},{"type":40,"tag":234,"props":2588,"children":2589},{"style":1841},[2590],{"type":45,"value":2591},"Safe to Delete (squash-merged, requires -D)",{"type":40,"tag":234,"props":2593,"children":2594},{"style":1835},[2595],{"type":45,"value":2274},{"type":40,"tag":234,"props":2597,"children":2598},{"class":236,"line":1044},[2599,2603,2607,2611,2616],{"type":40,"tag":234,"props":2600,"children":2601},{"style":366},[2602],{"type":45,"value":1607},{"type":40,"tag":234,"props":2604,"children":2605},{"style":372},[2606],{"type":45,"value":1612},{"type":40,"tag":234,"props":2608,"children":2609},{"style":366},[2610],{"type":45,"value":1607},{"type":40,"tag":234,"props":2612,"children":2613},{"style":372},[2614],{"type":45,"value":2615}," Merged As ",{"type":40,"tag":234,"props":2617,"children":2618},{"style":366},[2619],{"type":45,"value":1644},{"type":40,"tag":234,"props":2621,"children":2622},{"class":236,"line":1085},[2623],{"type":40,"tag":234,"props":2624,"children":2625},{"style":366},[2626],{"type":45,"value":2627},"|--------|-----------|\n",{"type":40,"tag":234,"props":2629,"children":2630},{"class":236,"line":1116},[2631,2635,2640,2644,2649],{"type":40,"tag":234,"props":2632,"children":2633},{"style":366},[2634],{"type":45,"value":1607},{"type":40,"tag":234,"props":2636,"children":2637},{"style":372},[2638],{"type":45,"value":2639}," feature\u002Flogin ",{"type":40,"tag":234,"props":2641,"children":2642},{"style":366},[2643],{"type":45,"value":1607},{"type":40,"tag":234,"props":2645,"children":2646},{"style":372},[2647],{"type":45,"value":2648}," PR #42 ",{"type":40,"tag":234,"props":2650,"children":2651},{"style":366},[2652],{"type":45,"value":1644},{"type":40,"tag":234,"props":2654,"children":2655},{"class":236,"line":1146},[2656],{"type":40,"tag":234,"props":2657,"children":2658},{"emptyLinePlaceholder":34},[2659],{"type":45,"value":408},{"type":40,"tag":234,"props":2661,"children":2662},{"class":236,"line":1204},[2663,2667,2672,2677,2683,2688,2693],{"type":40,"tag":234,"props":2664,"children":2665},{"style":1835},[2666],{"type":45,"value":1838},{"type":40,"tag":234,"props":2668,"children":2669},{"style":1841},[2670],{"type":45,"value":2671},"Needs Review (",{"type":40,"tag":234,"props":2673,"children":2674},{"style":1835},[2675],{"type":45,"value":2676},"[",{"type":40,"tag":234,"props":2678,"children":2680},{"style":2679},"--shiki-light:#91B859;--shiki-light-font-weight:bold;--shiki-default:#C3E88D;--shiki-default-font-weight:bold;--shiki-dark:#C3E88D;--shiki-dark-font-weight:bold",[2681],{"type":45,"value":2682},"gone",{"type":40,"tag":234,"props":2684,"children":2685},{"style":1835},[2686],{"type":45,"value":2687},"]",{"type":40,"tag":234,"props":2689,"children":2690},{"style":1841},[2691],{"type":45,"value":2692}," remotes, no PR found)",{"type":40,"tag":234,"props":2694,"children":2695},{"style":1835},[2696],{"type":45,"value":2274},{"type":40,"tag":234,"props":2698,"children":2699},{"class":236,"line":1222},[2700,2704,2708,2712,2717],{"type":40,"tag":234,"props":2701,"children":2702},{"style":366},[2703],{"type":45,"value":1607},{"type":40,"tag":234,"props":2705,"children":2706},{"style":372},[2707],{"type":45,"value":1612},{"type":40,"tag":234,"props":2709,"children":2710},{"style":366},[2711],{"type":45,"value":1607},{"type":40,"tag":234,"props":2713,"children":2714},{"style":372},[2715],{"type":45,"value":2716}," Last Commit ",{"type":40,"tag":234,"props":2718,"children":2719},{"style":366},[2720],{"type":45,"value":1644},{"type":40,"tag":234,"props":2722,"children":2723},{"class":236,"line":1243},[2724],{"type":40,"tag":234,"props":2725,"children":2726},{"style":366},[2727],{"type":45,"value":2547},{"type":40,"tag":234,"props":2729,"children":2730},{"class":236,"line":1304},[2731,2735,2740,2744,2749],{"type":40,"tag":234,"props":2732,"children":2733},{"style":366},[2734],{"type":45,"value":1607},{"type":40,"tag":234,"props":2736,"children":2737},{"style":372},[2738],{"type":45,"value":2739}," experiment\u002Fold ",{"type":40,"tag":234,"props":2741,"children":2742},{"style":366},[2743],{"type":45,"value":1607},{"type":40,"tag":234,"props":2745,"children":2746},{"style":372},[2747],{"type":45,"value":2748}," abc1234 \"WIP something\" ",{"type":40,"tag":234,"props":2750,"children":2751},{"style":366},[2752],{"type":45,"value":1644},{"type":40,"tag":234,"props":2754,"children":2755},{"class":236,"line":1342},[2756],{"type":40,"tag":234,"props":2757,"children":2758},{"emptyLinePlaceholder":34},[2759],{"type":45,"value":408},{"type":40,"tag":234,"props":2761,"children":2763},{"class":236,"line":2762},34,[2764,2768,2773],{"type":40,"tag":234,"props":2765,"children":2766},{"style":1835},[2767],{"type":45,"value":1838},{"type":40,"tag":234,"props":2769,"children":2770},{"style":1841},[2771],{"type":45,"value":2772},"Keep (active work)",{"type":40,"tag":234,"props":2774,"children":2775},{"style":1835},[2776],{"type":45,"value":2274},{"type":40,"tag":234,"props":2778,"children":2780},{"class":236,"line":2779},35,[2781,2785,2789,2793,2797],{"type":40,"tag":234,"props":2782,"children":2783},{"style":366},[2784],{"type":45,"value":1607},{"type":40,"tag":234,"props":2786,"children":2787},{"style":372},[2788],{"type":45,"value":1612},{"type":40,"tag":234,"props":2790,"children":2791},{"style":366},[2792],{"type":45,"value":1607},{"type":40,"tag":234,"props":2794,"children":2795},{"style":372},[2796],{"type":45,"value":1639},{"type":40,"tag":234,"props":2798,"children":2799},{"style":366},[2800],{"type":45,"value":1644},{"type":40,"tag":234,"props":2802,"children":2804},{"class":236,"line":2803},36,[2805],{"type":40,"tag":234,"props":2806,"children":2807},{"style":366},[2808],{"type":45,"value":2809},"|--------|--------|\n",{"type":40,"tag":234,"props":2811,"children":2813},{"class":236,"line":2812},37,[2814,2818,2823,2827,2832],{"type":40,"tag":234,"props":2815,"children":2816},{"style":366},[2817],{"type":45,"value":1607},{"type":40,"tag":234,"props":2819,"children":2820},{"style":372},[2821],{"type":45,"value":2822}," wip\u002Fnew-feature ",{"type":40,"tag":234,"props":2824,"children":2825},{"style":366},[2826],{"type":45,"value":1607},{"type":40,"tag":234,"props":2828,"children":2829},{"style":372},[2830],{"type":45,"value":2831}," 5 unpushed commits ",{"type":40,"tag":234,"props":2833,"children":2834},{"style":366},[2835],{"type":45,"value":1644},{"type":40,"tag":234,"props":2837,"children":2839},{"class":236,"line":2838},38,[2840],{"type":40,"tag":234,"props":2841,"children":2842},{"emptyLinePlaceholder":34},[2843],{"type":45,"value":408},{"type":40,"tag":234,"props":2845,"children":2847},{"class":236,"line":2846},39,[2848,2852],{"type":40,"tag":234,"props":2849,"children":2850},{"style":366},[2851],{"type":45,"value":1587},{"type":40,"tag":234,"props":2853,"children":2854},{"style":350},[2855],{"type":45,"value":2856},"Worktrees\n",{"type":40,"tag":234,"props":2858,"children":2860},{"class":236,"line":2859},40,[2861,2865,2870,2874,2878,2882,2886],{"type":40,"tag":234,"props":2862,"children":2863},{"style":366},[2864],{"type":45,"value":1607},{"type":40,"tag":234,"props":2866,"children":2867},{"style":372},[2868],{"type":45,"value":2869}," Path ",{"type":40,"tag":234,"props":2871,"children":2872},{"style":366},[2873],{"type":45,"value":1607},{"type":40,"tag":234,"props":2875,"children":2876},{"style":372},[2877],{"type":45,"value":1612},{"type":40,"tag":234,"props":2879,"children":2880},{"style":366},[2881],{"type":45,"value":1607},{"type":40,"tag":234,"props":2883,"children":2884},{"style":372},[2885],{"type":45,"value":1639},{"type":40,"tag":234,"props":2887,"children":2888},{"style":366},[2889],{"type":45,"value":1644},{"type":40,"tag":234,"props":2891,"children":2893},{"class":236,"line":2892},41,[2894],{"type":40,"tag":234,"props":2895,"children":2896},{"style":366},[2897],{"type":45,"value":2898},"|------|--------|--------|\n",{"type":40,"tag":234,"props":2900,"children":2902},{"class":236,"line":2901},42,[2903,2907,2912,2916,2921,2925,2930],{"type":40,"tag":234,"props":2904,"children":2905},{"style":366},[2906],{"type":45,"value":1607},{"type":40,"tag":234,"props":2908,"children":2909},{"style":372},[2910],{"type":45,"value":2911}," ..\u002Fproj-auth ",{"type":40,"tag":234,"props":2913,"children":2914},{"style":366},[2915],{"type":45,"value":1607},{"type":40,"tag":234,"props":2917,"children":2918},{"style":372},[2919],{"type":45,"value":2920}," feature\u002Fauth ",{"type":40,"tag":234,"props":2922,"children":2923},{"style":366},[2924],{"type":45,"value":1607},{"type":40,"tag":234,"props":2926,"children":2927},{"style":372},[2928],{"type":45,"value":2929}," STALE (merged) ",{"type":40,"tag":234,"props":2931,"children":2932},{"style":366},[2933],{"type":45,"value":1644},{"type":40,"tag":234,"props":2935,"children":2937},{"class":236,"line":2936},43,[2938],{"type":40,"tag":234,"props":2939,"children":2940},{"emptyLinePlaceholder":34},[2941],{"type":45,"value":408},{"type":40,"tag":234,"props":2943,"children":2945},{"class":236,"line":2944},44,[2946],{"type":40,"tag":234,"props":2947,"children":2948},{"style":372},[2949],{"type":45,"value":2473},{"type":40,"tag":234,"props":2951,"children":2953},{"class":236,"line":2952},45,[2954],{"type":40,"tag":234,"props":2955,"children":2956},{"emptyLinePlaceholder":34},[2957],{"type":45,"value":408},{"type":40,"tag":234,"props":2959,"children":2961},{"class":236,"line":2960},46,[2962,2966,2971],{"type":40,"tag":234,"props":2963,"children":2964},{"style":1835},[2965],{"type":45,"value":1838},{"type":40,"tag":234,"props":2967,"children":2968},{"style":1841},[2969],{"type":45,"value":2970},"Summary:",{"type":40,"tag":234,"props":2972,"children":2973},{"style":1835},[2974],{"type":45,"value":2274},{"type":40,"tag":234,"props":2976,"children":2978},{"class":236,"line":2977},47,[2979,2984],{"type":40,"tag":234,"props":2980,"children":2981},{"style":366},[2982],{"type":45,"value":2983},"-",{"type":40,"tag":234,"props":2985,"children":2986},{"style":372},[2987],{"type":45,"value":2988}," 4 related branches (feature\u002Fapi-*) - recommend delete all\n",{"type":40,"tag":234,"props":2990,"children":2992},{"class":236,"line":2991},48,[2993,2997],{"type":40,"tag":234,"props":2994,"children":2995},{"style":366},[2996],{"type":45,"value":2983},{"type":40,"tag":234,"props":2998,"children":2999},{"style":372},[3000],{"type":45,"value":3001}," 1 merged branch - safe to delete\n",{"type":40,"tag":234,"props":3003,"children":3005},{"class":236,"line":3004},49,[3006,3010],{"type":40,"tag":234,"props":3007,"children":3008},{"style":366},[3009],{"type":45,"value":2983},{"type":40,"tag":234,"props":3011,"children":3012},{"style":372},[3013],{"type":45,"value":3014}," 1 squash-merged branch - safe to delete\n",{"type":40,"tag":234,"props":3016,"children":3018},{"class":236,"line":3017},50,[3019,3023],{"type":40,"tag":234,"props":3020,"children":3021},{"style":366},[3022],{"type":45,"value":2983},{"type":40,"tag":234,"props":3024,"children":3025},{"style":372},[3026],{"type":45,"value":3027}," 1 needs review\n",{"type":40,"tag":234,"props":3029,"children":3031},{"class":236,"line":3030},51,[3032,3036],{"type":40,"tag":234,"props":3033,"children":3034},{"style":366},[3035],{"type":45,"value":2983},{"type":40,"tag":234,"props":3037,"children":3038},{"style":372},[3039],{"type":45,"value":3040}," 1 to keep\n",{"type":40,"tag":234,"props":3042,"children":3044},{"class":236,"line":3043},52,[3045],{"type":40,"tag":234,"props":3046,"children":3047},{"emptyLinePlaceholder":34},[3048],{"type":45,"value":408},{"type":40,"tag":234,"props":3050,"children":3052},{"class":236,"line":3051},53,[3053],{"type":40,"tag":234,"props":3054,"children":3055},{"style":372},[3056],{"type":45,"value":3057},"Which would you like to clean up?\n",{"type":40,"tag":48,"props":3059,"children":3060},{},[3061],{"type":45,"value":3062},"Use AskUserQuestion with clear options:",{"type":40,"tag":61,"props":3064,"children":3065},{},[3066,3071,3076],{"type":40,"tag":65,"props":3067,"children":3068},{},[3069],{"type":45,"value":3070},"Delete all recommended (groups + merged + squash-merged)",{"type":40,"tag":65,"props":3072,"children":3073},{},[3074],{"type":45,"value":3075},"Delete specific groups\u002Fcategories",{"type":40,"tag":65,"props":3077,"children":3078},{},[3079],{"type":45,"value":3080},"Let me pick individual branches",{"type":40,"tag":48,"props":3082,"children":3083},{},[3084],{"type":40,"tag":114,"props":3085,"children":3086},{},[3087],{"type":45,"value":3088},"Do not proceed until user responds.",{"type":40,"tag":128,"props":3090,"children":3092},{"id":3091},"gate-2-final-confirmation-with-exact-commands",[3093],{"type":45,"value":3094},"GATE 2: Final Confirmation with Exact Commands",{"type":40,"tag":48,"props":3096,"children":3097},{},[3098],{"type":45,"value":3099},"Show the EXACT commands that will run, with correct flags:",{"type":40,"tag":223,"props":3101,"children":3103},{"className":1573,"code":3102,"language":1575,"meta":228,"style":228},"I will execute:\n\n# Merged branches (safe delete)\ngit branch -d fix\u002Ftypo\n\n# Squash-merged branches (force delete - work is in main via PRs)\ngit branch -D feature\u002Flogin\ngit branch -D feature\u002Fapi\ngit branch -D feature\u002Fapi-v2\ngit branch -D feature\u002Fapi-refactor\ngit branch -D feature\u002Fapi-final\n\n# Worktrees\ngit worktree remove ..\u002Fproj-auth\n\nConfirm? (yes\u002Fno)\n",[3104],{"type":40,"tag":145,"props":3105,"children":3106},{"__ignoreMap":228},[3107,3115,3122,3135,3143,3150,3162,3170,3178,3186,3194,3202,3209,3220,3228,3235],{"type":40,"tag":234,"props":3108,"children":3109},{"class":236,"line":237},[3110],{"type":40,"tag":234,"props":3111,"children":3112},{"style":372},[3113],{"type":45,"value":3114},"I will execute:\n",{"type":40,"tag":234,"props":3116,"children":3117},{"class":236,"line":247},[3118],{"type":40,"tag":234,"props":3119,"children":3120},{"emptyLinePlaceholder":34},[3121],{"type":45,"value":408},{"type":40,"tag":234,"props":3123,"children":3124},{"class":236,"line":402},[3125,3130],{"type":40,"tag":234,"props":3126,"children":3127},{"style":366},[3128],{"type":45,"value":3129},"# ",{"type":40,"tag":234,"props":3131,"children":3132},{"style":350},[3133],{"type":45,"value":3134},"Merged branches (safe delete)\n",{"type":40,"tag":234,"props":3136,"children":3137},{"class":236,"line":411},[3138],{"type":40,"tag":234,"props":3139,"children":3140},{"style":372},[3141],{"type":45,"value":3142},"git branch -d fix\u002Ftypo\n",{"type":40,"tag":234,"props":3144,"children":3145},{"class":236,"line":420},[3146],{"type":40,"tag":234,"props":3147,"children":3148},{"emptyLinePlaceholder":34},[3149],{"type":45,"value":408},{"type":40,"tag":234,"props":3151,"children":3152},{"class":236,"line":429},[3153,3157],{"type":40,"tag":234,"props":3154,"children":3155},{"style":366},[3156],{"type":45,"value":3129},{"type":40,"tag":234,"props":3158,"children":3159},{"style":350},[3160],{"type":45,"value":3161},"Squash-merged branches (force delete - work is in main via PRs)\n",{"type":40,"tag":234,"props":3163,"children":3164},{"class":236,"line":485},[3165],{"type":40,"tag":234,"props":3166,"children":3167},{"style":372},[3168],{"type":45,"value":3169},"git branch -D feature\u002Flogin\n",{"type":40,"tag":234,"props":3171,"children":3172},{"class":236,"line":493},[3173],{"type":40,"tag":234,"props":3174,"children":3175},{"style":372},[3176],{"type":45,"value":3177},"git branch -D feature\u002Fapi\n",{"type":40,"tag":234,"props":3179,"children":3180},{"class":236,"line":502},[3181],{"type":40,"tag":234,"props":3182,"children":3183},{"style":372},[3184],{"type":45,"value":3185},"git branch -D feature\u002Fapi-v2\n",{"type":40,"tag":234,"props":3187,"children":3188},{"class":236,"line":773},[3189],{"type":40,"tag":234,"props":3190,"children":3191},{"style":372},[3192],{"type":45,"value":3193},"git branch -D feature\u002Fapi-refactor\n",{"type":40,"tag":234,"props":3195,"children":3196},{"class":236,"line":781},[3197],{"type":40,"tag":234,"props":3198,"children":3199},{"style":372},[3200],{"type":45,"value":3201},"git branch -D feature\u002Fapi-final\n",{"type":40,"tag":234,"props":3203,"children":3204},{"class":236,"line":790},[3205],{"type":40,"tag":234,"props":3206,"children":3207},{"emptyLinePlaceholder":34},[3208],{"type":45,"value":408},{"type":40,"tag":234,"props":3210,"children":3211},{"class":236,"line":808},[3212,3216],{"type":40,"tag":234,"props":3213,"children":3214},{"style":366},[3215],{"type":45,"value":3129},{"type":40,"tag":234,"props":3217,"children":3218},{"style":350},[3219],{"type":45,"value":2856},{"type":40,"tag":234,"props":3221,"children":3222},{"class":236,"line":816},[3223],{"type":40,"tag":234,"props":3224,"children":3225},{"style":372},[3226],{"type":45,"value":3227},"git worktree remove ..\u002Fproj-auth\n",{"type":40,"tag":234,"props":3229,"children":3230},{"class":236,"line":825},[3231],{"type":40,"tag":234,"props":3232,"children":3233},{"emptyLinePlaceholder":34},[3234],{"type":45,"value":408},{"type":40,"tag":234,"props":3236,"children":3237},{"class":236,"line":843},[3238],{"type":40,"tag":234,"props":3239,"children":3240},{"style":372},[3241],{"type":45,"value":3242},"Confirm? (yes\u002Fno)\n",{"type":40,"tag":48,"props":3244,"children":3245},{},[3246,3250,3252,3257],{"type":40,"tag":114,"props":3247,"children":3248},{},[3249],{"type":45,"value":141},{"type":45,"value":3251}," This is the ONLY confirmation needed for deletion. Do not add extra confirmations if ",{"type":40,"tag":145,"props":3253,"children":3255},{"className":3254},[],[3256],{"type":45,"value":191},{"type":45,"value":3258}," is required.",{"type":40,"tag":128,"props":3260,"children":3262},{"id":3261},"phase-5-execute",[3263],{"type":45,"value":3264},"Phase 5: Execute",{"type":40,"tag":48,"props":3266,"children":3267},{},[3268,3270,3275],{"type":45,"value":3269},"Run each deletion as a ",{"type":40,"tag":114,"props":3271,"children":3272},{},[3273],{"type":45,"value":3274},"separate command",{"type":45,"value":3276}," so partial failures don't block remaining deletions. Report the result of each:",{"type":40,"tag":223,"props":3278,"children":3280},{"className":225,"code":3279,"language":227,"meta":228,"style":228},"git branch -d fix\u002Ftypo\ngit branch -D feature\u002Flogin\ngit branch -D feature\u002Fapi\ngit branch -D feature\u002Fapi-v2\ngit branch -D feature\u002Fapi-refactor\ngit branch -D feature\u002Fapi-final\ngit worktree remove ..\u002Fproj-auth\n",[3281],{"type":40,"tag":145,"props":3282,"children":3283},{"__ignoreMap":228},[3284,3305,3326,3346,3366,3386,3406],{"type":40,"tag":234,"props":3285,"children":3286},{"class":236,"line":237},[3287,3291,3295,3300],{"type":40,"tag":234,"props":3288,"children":3289},{"style":350},[3290],{"type":45,"value":19},{"type":40,"tag":234,"props":3292,"children":3293},{"style":355},[3294],{"type":45,"value":765},{"type":40,"tag":234,"props":3296,"children":3297},{"style":355},[3298],{"type":45,"value":3299}," -d",{"type":40,"tag":234,"props":3301,"children":3302},{"style":355},[3303],{"type":45,"value":3304}," fix\u002Ftypo\n",{"type":40,"tag":234,"props":3306,"children":3307},{"class":236,"line":247},[3308,3312,3316,3321],{"type":40,"tag":234,"props":3309,"children":3310},{"style":350},[3311],{"type":45,"value":19},{"type":40,"tag":234,"props":3313,"children":3314},{"style":355},[3315],{"type":45,"value":765},{"type":40,"tag":234,"props":3317,"children":3318},{"style":355},[3319],{"type":45,"value":3320}," -D",{"type":40,"tag":234,"props":3322,"children":3323},{"style":355},[3324],{"type":45,"value":3325}," feature\u002Flogin\n",{"type":40,"tag":234,"props":3327,"children":3328},{"class":236,"line":402},[3329,3333,3337,3341],{"type":40,"tag":234,"props":3330,"children":3331},{"style":350},[3332],{"type":45,"value":19},{"type":40,"tag":234,"props":3334,"children":3335},{"style":355},[3336],{"type":45,"value":765},{"type":40,"tag":234,"props":3338,"children":3339},{"style":355},[3340],{"type":45,"value":3320},{"type":40,"tag":234,"props":3342,"children":3343},{"style":355},[3344],{"type":45,"value":3345}," feature\u002Fapi\n",{"type":40,"tag":234,"props":3347,"children":3348},{"class":236,"line":411},[3349,3353,3357,3361],{"type":40,"tag":234,"props":3350,"children":3351},{"style":350},[3352],{"type":45,"value":19},{"type":40,"tag":234,"props":3354,"children":3355},{"style":355},[3356],{"type":45,"value":765},{"type":40,"tag":234,"props":3358,"children":3359},{"style":355},[3360],{"type":45,"value":3320},{"type":40,"tag":234,"props":3362,"children":3363},{"style":355},[3364],{"type":45,"value":3365}," feature\u002Fapi-v2\n",{"type":40,"tag":234,"props":3367,"children":3368},{"class":236,"line":420},[3369,3373,3377,3381],{"type":40,"tag":234,"props":3370,"children":3371},{"style":350},[3372],{"type":45,"value":19},{"type":40,"tag":234,"props":3374,"children":3375},{"style":355},[3376],{"type":45,"value":765},{"type":40,"tag":234,"props":3378,"children":3379},{"style":355},[3380],{"type":45,"value":3320},{"type":40,"tag":234,"props":3382,"children":3383},{"style":355},[3384],{"type":45,"value":3385}," feature\u002Fapi-refactor\n",{"type":40,"tag":234,"props":3387,"children":3388},{"class":236,"line":429},[3389,3393,3397,3401],{"type":40,"tag":234,"props":3390,"children":3391},{"style":350},[3392],{"type":45,"value":19},{"type":40,"tag":234,"props":3394,"children":3395},{"style":355},[3396],{"type":45,"value":765},{"type":40,"tag":234,"props":3398,"children":3399},{"style":355},[3400],{"type":45,"value":3320},{"type":40,"tag":234,"props":3402,"children":3403},{"style":355},[3404],{"type":45,"value":3405}," feature\u002Fapi-final\n",{"type":40,"tag":234,"props":3407,"children":3408},{"class":236,"line":485},[3409,3413,3417,3422],{"type":40,"tag":234,"props":3410,"children":3411},{"style":350},[3412],{"type":45,"value":19},{"type":40,"tag":234,"props":3414,"children":3415},{"style":355},[3416],{"type":45,"value":800},{"type":40,"tag":234,"props":3418,"children":3419},{"style":355},[3420],{"type":45,"value":3421}," remove",{"type":40,"tag":234,"props":3423,"children":3424},{"style":355},[3425],{"type":45,"value":3426}," ..\u002Fproj-auth\n",{"type":40,"tag":48,"props":3428,"children":3429},{},[3430],{"type":45,"value":3431},"If a deletion fails, report the error and continue with remaining deletions.",{"type":40,"tag":128,"props":3433,"children":3435},{"id":3434},"phase-6-report",[3436],{"type":45,"value":3437},"Phase 6: Report",{"type":40,"tag":223,"props":3439,"children":3441},{"className":1573,"code":3440,"language":1575,"meta":228,"style":228},"## Cleanup Complete\n\n### Deleted\n- fix\u002Ftypo\n- feature\u002Flogin\n- feature\u002Fapi\n- feature\u002Fapi-v2\n- feature\u002Fapi-refactor\n- feature\u002Fapi-final\n- Worktree: ..\u002Fproj-auth\n\n### Remaining (4 branches)\n| Branch | Status |\n|--------|--------|\n| main | current |\n| wip\u002Fnew-feature | active work |\n| experiment\u002Fold | needs review |\n",[3442],{"type":40,"tag":145,"props":3443,"children":3444},{"__ignoreMap":228},[3445,3457,3464,3476,3487,3498,3509,3520,3531,3542,3554,3561,3573,3596,3603,3627,3651],{"type":40,"tag":234,"props":3446,"children":3447},{"class":236,"line":237},[3448,3452],{"type":40,"tag":234,"props":3449,"children":3450},{"style":366},[3451],{"type":45,"value":2226},{"type":40,"tag":234,"props":3453,"children":3454},{"style":350},[3455],{"type":45,"value":3456},"Cleanup Complete\n",{"type":40,"tag":234,"props":3458,"children":3459},{"class":236,"line":247},[3460],{"type":40,"tag":234,"props":3461,"children":3462},{"emptyLinePlaceholder":34},[3463],{"type":45,"value":408},{"type":40,"tag":234,"props":3465,"children":3466},{"class":236,"line":402},[3467,3471],{"type":40,"tag":234,"props":3468,"children":3469},{"style":366},[3470],{"type":45,"value":1587},{"type":40,"tag":234,"props":3472,"children":3473},{"style":350},[3474],{"type":45,"value":3475},"Deleted\n",{"type":40,"tag":234,"props":3477,"children":3478},{"class":236,"line":411},[3479,3483],{"type":40,"tag":234,"props":3480,"children":3481},{"style":366},[3482],{"type":45,"value":2983},{"type":40,"tag":234,"props":3484,"children":3485},{"style":372},[3486],{"type":45,"value":3304},{"type":40,"tag":234,"props":3488,"children":3489},{"class":236,"line":420},[3490,3494],{"type":40,"tag":234,"props":3491,"children":3492},{"style":366},[3493],{"type":45,"value":2983},{"type":40,"tag":234,"props":3495,"children":3496},{"style":372},[3497],{"type":45,"value":3325},{"type":40,"tag":234,"props":3499,"children":3500},{"class":236,"line":429},[3501,3505],{"type":40,"tag":234,"props":3502,"children":3503},{"style":366},[3504],{"type":45,"value":2983},{"type":40,"tag":234,"props":3506,"children":3507},{"style":372},[3508],{"type":45,"value":3345},{"type":40,"tag":234,"props":3510,"children":3511},{"class":236,"line":485},[3512,3516],{"type":40,"tag":234,"props":3513,"children":3514},{"style":366},[3515],{"type":45,"value":2983},{"type":40,"tag":234,"props":3517,"children":3518},{"style":372},[3519],{"type":45,"value":3365},{"type":40,"tag":234,"props":3521,"children":3522},{"class":236,"line":493},[3523,3527],{"type":40,"tag":234,"props":3524,"children":3525},{"style":366},[3526],{"type":45,"value":2983},{"type":40,"tag":234,"props":3528,"children":3529},{"style":372},[3530],{"type":45,"value":3385},{"type":40,"tag":234,"props":3532,"children":3533},{"class":236,"line":502},[3534,3538],{"type":40,"tag":234,"props":3535,"children":3536},{"style":366},[3537],{"type":45,"value":2983},{"type":40,"tag":234,"props":3539,"children":3540},{"style":372},[3541],{"type":45,"value":3405},{"type":40,"tag":234,"props":3543,"children":3544},{"class":236,"line":773},[3545,3549],{"type":40,"tag":234,"props":3546,"children":3547},{"style":366},[3548],{"type":45,"value":2983},{"type":40,"tag":234,"props":3550,"children":3551},{"style":372},[3552],{"type":45,"value":3553}," Worktree: ..\u002Fproj-auth\n",{"type":40,"tag":234,"props":3555,"children":3556},{"class":236,"line":781},[3557],{"type":40,"tag":234,"props":3558,"children":3559},{"emptyLinePlaceholder":34},[3560],{"type":45,"value":408},{"type":40,"tag":234,"props":3562,"children":3563},{"class":236,"line":790},[3564,3568],{"type":40,"tag":234,"props":3565,"children":3566},{"style":366},[3567],{"type":45,"value":1587},{"type":40,"tag":234,"props":3569,"children":3570},{"style":350},[3571],{"type":45,"value":3572},"Remaining (4 branches)\n",{"type":40,"tag":234,"props":3574,"children":3575},{"class":236,"line":808},[3576,3580,3584,3588,3592],{"type":40,"tag":234,"props":3577,"children":3578},{"style":366},[3579],{"type":45,"value":1607},{"type":40,"tag":234,"props":3581,"children":3582},{"style":372},[3583],{"type":45,"value":1612},{"type":40,"tag":234,"props":3585,"children":3586},{"style":366},[3587],{"type":45,"value":1607},{"type":40,"tag":234,"props":3589,"children":3590},{"style":372},[3591],{"type":45,"value":1639},{"type":40,"tag":234,"props":3593,"children":3594},{"style":366},[3595],{"type":45,"value":1644},{"type":40,"tag":234,"props":3597,"children":3598},{"class":236,"line":816},[3599],{"type":40,"tag":234,"props":3600,"children":3601},{"style":366},[3602],{"type":45,"value":2809},{"type":40,"tag":234,"props":3604,"children":3605},{"class":236,"line":825},[3606,3610,3614,3618,3623],{"type":40,"tag":234,"props":3607,"children":3608},{"style":366},[3609],{"type":45,"value":1607},{"type":40,"tag":234,"props":3611,"children":3612},{"style":372},[3613],{"type":45,"value":2568},{"type":40,"tag":234,"props":3615,"children":3616},{"style":366},[3617],{"type":45,"value":1607},{"type":40,"tag":234,"props":3619,"children":3620},{"style":372},[3621],{"type":45,"value":3622}," current ",{"type":40,"tag":234,"props":3624,"children":3625},{"style":366},[3626],{"type":45,"value":1644},{"type":40,"tag":234,"props":3628,"children":3629},{"class":236,"line":843},[3630,3634,3638,3642,3647],{"type":40,"tag":234,"props":3631,"children":3632},{"style":366},[3633],{"type":45,"value":1607},{"type":40,"tag":234,"props":3635,"children":3636},{"style":372},[3637],{"type":45,"value":2822},{"type":40,"tag":234,"props":3639,"children":3640},{"style":366},[3641],{"type":45,"value":1607},{"type":40,"tag":234,"props":3643,"children":3644},{"style":372},[3645],{"type":45,"value":3646}," active work ",{"type":40,"tag":234,"props":3648,"children":3649},{"style":366},[3650],{"type":45,"value":1644},{"type":40,"tag":234,"props":3652,"children":3653},{"class":236,"line":851},[3654,3658,3662,3666,3671],{"type":40,"tag":234,"props":3655,"children":3656},{"style":366},[3657],{"type":45,"value":1607},{"type":40,"tag":234,"props":3659,"children":3660},{"style":372},[3661],{"type":45,"value":2739},{"type":40,"tag":234,"props":3663,"children":3664},{"style":366},[3665],{"type":45,"value":1607},{"type":40,"tag":234,"props":3667,"children":3668},{"style":372},[3669],{"type":45,"value":3670}," needs review ",{"type":40,"tag":234,"props":3672,"children":3673},{"style":366},[3674],{"type":45,"value":1644},{"type":40,"tag":54,"props":3676,"children":3678},{"id":3677},"safety-rules",[3679],{"type":45,"value":3680},"Safety Rules",{"type":40,"tag":283,"props":3682,"children":3683},{},[3684,3700,3710,3735,3745,3755],{"type":40,"tag":65,"props":3685,"children":3686},{},[3687,3692,3694],{"type":40,"tag":114,"props":3688,"children":3689},{},[3690],{"type":45,"value":3691},"Never invoke automatically",{"type":45,"value":3693}," - Only run when user explicitly uses ",{"type":40,"tag":145,"props":3695,"children":3697},{"className":3696},[],[3698],{"type":45,"value":3699},"\u002Fgit-cleanup",{"type":40,"tag":65,"props":3701,"children":3702},{},[3703,3708],{"type":40,"tag":114,"props":3704,"children":3705},{},[3706],{"type":45,"value":3707},"Two confirmation gates only",{"type":45,"value":3709}," - Analysis review, then deletion confirmation",{"type":40,"tag":65,"props":3711,"children":3712},{},[3713,3718,3720,3726,3728,3733],{"type":40,"tag":114,"props":3714,"children":3715},{},[3716],{"type":45,"value":3717},"Use correct delete command",{"type":45,"value":3719}," - ",{"type":40,"tag":145,"props":3721,"children":3723},{"className":3722},[],[3724],{"type":45,"value":3725},"-d",{"type":45,"value":3727}," for merged, ",{"type":40,"tag":145,"props":3729,"children":3731},{"className":3730},[],[3732],{"type":45,"value":191},{"type":45,"value":3734}," for squash-merged\u002Fsuperseded",{"type":40,"tag":65,"props":3736,"children":3737},{},[3738,3743],{"type":40,"tag":114,"props":3739,"children":3740},{},[3741],{"type":45,"value":3742},"Never touch protected branches",{"type":45,"value":3744}," - main, master, develop, release\u002F* (filtered programmatically)",{"type":40,"tag":65,"props":3746,"children":3747},{},[3748,3753],{"type":40,"tag":114,"props":3749,"children":3750},{},[3751],{"type":45,"value":3752},"Block dirty worktree removal",{"type":45,"value":3754}," - Refuse without explicit data loss acknowledgment",{"type":40,"tag":65,"props":3756,"children":3757},{},[3758,3763],{"type":40,"tag":114,"props":3759,"children":3760},{},[3761],{"type":45,"value":3762},"Group related branches",{"type":45,"value":3764}," - Don't scatter them across categories",{"type":40,"tag":54,"props":3766,"children":3768},{"id":3767},"rationalizations-to-reject",[3769],{"type":45,"value":3770},"Rationalizations to Reject",{"type":40,"tag":48,"props":3772,"children":3773},{},[3774],{"type":45,"value":3775},"These are common shortcuts that lead to data loss. Reject them:",{"type":40,"tag":1884,"props":3777,"children":3778},{},[3779,3795],{"type":40,"tag":1888,"props":3780,"children":3781},{},[3782],{"type":40,"tag":1892,"props":3783,"children":3784},{},[3785,3790],{"type":40,"tag":1896,"props":3786,"children":3787},{},[3788],{"type":45,"value":3789},"Rationalization",{"type":40,"tag":1896,"props":3791,"children":3792},{},[3793],{"type":45,"value":3794},"Why It's Wrong",{"type":40,"tag":1912,"props":3796,"children":3797},{},[3798,3811,3824,3837,3858,3883,3896],{"type":40,"tag":1892,"props":3799,"children":3800},{},[3801,3806],{"type":40,"tag":1919,"props":3802,"children":3803},{},[3804],{"type":45,"value":3805},"\"The branch is old, it's probably safe to delete\"",{"type":40,"tag":1919,"props":3807,"children":3808},{},[3809],{"type":45,"value":3810},"Age doesn't indicate merge status. Old branches may contain unmerged work.",{"type":40,"tag":1892,"props":3812,"children":3813},{},[3814,3819],{"type":40,"tag":1919,"props":3815,"children":3816},{},[3817],{"type":45,"value":3818},"\"I can recover from reflog if needed\"",{"type":40,"tag":1919,"props":3820,"children":3821},{},[3822],{"type":45,"value":3823},"Reflog entries expire. Users often don't know how to use reflog. Don't rely on it as a safety net.",{"type":40,"tag":1892,"props":3825,"children":3826},{},[3827,3832],{"type":40,"tag":1919,"props":3828,"children":3829},{},[3830],{"type":45,"value":3831},"\"It's just a local branch, nothing important\"",{"type":40,"tag":1919,"props":3833,"children":3834},{},[3835],{"type":45,"value":3836},"Local branches may contain the only copy of work not pushed anywhere.",{"type":40,"tag":1892,"props":3838,"children":3839},{},[3840,3845],{"type":40,"tag":1919,"props":3841,"children":3842},{},[3843],{"type":45,"value":3844},"\"The PR was merged, so the branch is safe\"",{"type":40,"tag":1919,"props":3846,"children":3847},{},[3848,3850,3856],{"type":45,"value":3849},"Squash merges don't preserve branch history. Verify the ",{"type":40,"tag":3851,"props":3852,"children":3853},"em",{},[3854],{"type":45,"value":3855},"specific",{"type":45,"value":3857}," commits were incorporated.",{"type":40,"tag":1892,"props":3859,"children":3860},{},[3861,3873],{"type":40,"tag":1919,"props":3862,"children":3863},{},[3864,3866,3871],{"type":45,"value":3865},"\"I'll just delete all the ",{"type":40,"tag":145,"props":3867,"children":3869},{"className":3868},[],[3870],{"type":45,"value":327},{"type":45,"value":3872}," branches\"",{"type":40,"tag":1919,"props":3874,"children":3875},{},[3876,3881],{"type":40,"tag":145,"props":3877,"children":3879},{"className":3878},[],[3880],{"type":45,"value":327},{"type":45,"value":3882}," only means the remote was deleted. The local branch may have unpushed commits.",{"type":40,"tag":1892,"props":3884,"children":3885},{},[3886,3891],{"type":40,"tag":1919,"props":3887,"children":3888},{},[3889],{"type":45,"value":3890},"\"The user seems to want everything deleted\"",{"type":40,"tag":1919,"props":3892,"children":3893},{},[3894],{"type":45,"value":3895},"Always present analysis first. Let the user choose what to delete.",{"type":40,"tag":1892,"props":3897,"children":3898},{},[3899,3904],{"type":40,"tag":1919,"props":3900,"children":3901},{},[3902],{"type":45,"value":3903},"\"The branch has commits not in main, so it has unpushed work\"",{"type":40,"tag":1919,"props":3905,"children":3906},{},[3907,3909,3915],{"type":45,"value":3908},"\"Not in main\" ≠ \"not pushed\". A branch can be synced with its remote but not merged to main. Always check ",{"type":40,"tag":145,"props":3910,"children":3912},{"className":3911},[],[3913],{"type":45,"value":3914},"git log origin\u002F\u003Cbranch>..\u003Cbranch>",{"type":45,"value":3916},".",{"type":40,"tag":3918,"props":3919,"children":3920},"style",{},[3921],{"type":45,"value":3922},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3924,"total":4082},[3925,3944,3954,3974,3989,4002,4014,4024,4037,4048,4060,4071],{"slug":3926,"name":3926,"fn":3927,"description":3928,"org":3929,"tags":3930,"stars":20,"repoUrl":21,"updatedAt":3943},"address-sanitizer","detect memory errors during fuzzing","AddressSanitizer detects memory errors during fuzzing. Use when fuzzing C\u002FC++ code to find buffer overflows and use-after-free bugs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3931,3934,3937,3940],{"name":3932,"slug":3933,"type":16},"C#","c",{"name":3935,"slug":3936,"type":16},"Debugging","debugging",{"name":3938,"slug":3939,"type":16},"Security","security",{"name":3941,"slug":3942,"type":16},"Testing","testing","2026-07-17T06:05:14.925095",{"slug":3945,"name":3945,"fn":3946,"description":3947,"org":3948,"tags":3949,"stars":20,"repoUrl":21,"updatedAt":3953},"aflpp","perform multi-core fuzzing of C\u002FC++ projects","AFL++ is a fork of AFL with better fuzzing performance and advanced features. Use for multi-core fuzzing of C\u002FC++ projects.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3950,3951,3952],{"name":3932,"slug":3933,"type":16},{"name":3938,"slug":3939,"type":16},{"name":3941,"slug":3942,"type":16},"2026-07-17T06:05:12.433192",{"slug":3955,"name":3955,"fn":3956,"description":3957,"org":3958,"tags":3959,"stars":20,"repoUrl":21,"updatedAt":3973},"agentic-actions-auditor","audit GitHub Actions for security vulnerabilities","Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches AI agents running in CI\u002FCD pipelines, including env var intermediary patterns, direct expression injection, dangerous sandbox configurations, and wildcard user allowlists. Use when reviewing workflow files that invoke AI coding agents, auditing CI\u002FCD pipeline security for prompt injection risks, or evaluating agentic action configurations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3960,3963,3966,3969,3972],{"name":3961,"slug":3962,"type":16},"Agents","agents",{"name":3964,"slug":3965,"type":16},"CI\u002FCD","ci-cd",{"name":3967,"slug":3968,"type":16},"Code Analysis","code-analysis",{"name":3970,"slug":3971,"type":16},"GitHub Actions","github-actions",{"name":3938,"slug":3939,"type":16},"2026-07-18T05:47:48.564744",{"slug":3975,"name":3975,"fn":3976,"description":3977,"org":3978,"tags":3979,"stars":20,"repoUrl":21,"updatedAt":3988},"algorand-vulnerability-scanner","scan Algorand smart contracts for vulnerabilities","Scans Algorand smart contracts for 11 common vulnerabilities including rekeying attacks, unchecked transaction fees, missing field validations, and access control issues. Use when auditing Algorand projects (TEAL\u002FPyTeal).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3980,3983,3984,3985],{"name":3981,"slug":3982,"type":16},"Audit","audit",{"name":3967,"slug":3968,"type":16},{"name":3938,"slug":3939,"type":16},{"name":3986,"slug":3987,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":3990,"name":3990,"fn":3991,"description":3992,"org":3993,"tags":3994,"stars":20,"repoUrl":21,"updatedAt":4001},"ask-questions-if-underspecified","clarify requirements before implementation","Clarify requirements before implementing. Use when serious doubts arise.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3995,3998],{"name":3996,"slug":3997,"type":16},"Engineering","engineering",{"name":3999,"slug":4000,"type":16},"Productivity","productivity","2026-07-17T06:05:33.543262",{"slug":4003,"name":4003,"fn":4004,"description":4005,"org":4006,"tags":4007,"stars":20,"repoUrl":21,"updatedAt":4013},"atheris","fuzz Python code with Atheris","Atheris is a coverage-guided Python fuzzer based on libFuzzer. Use for fuzzing pure Python code and Python C extensions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4008,4011,4012],{"name":4009,"slug":4010,"type":16},"Python","python",{"name":3938,"slug":3939,"type":16},{"name":3941,"slug":3942,"type":16},"2026-07-17T06:05:14.575191",{"slug":4015,"name":4015,"fn":4016,"description":4017,"org":4018,"tags":4019,"stars":20,"repoUrl":21,"updatedAt":4023},"audit-augmentation","augment code graphs with audit findings","Augments Trailmark code graphs with external audit findings from SARIF static analysis results, weAudit annotation files, and version-gated Trailmark 0.4.x binary-analysis graph exports. Maps findings to graph nodes by file and line overlap, creates severity-based subgraphs, and enables cross-referencing findings with pre-analysis data (blast radius, taint, etc.). Use when projecting SARIF results onto a code graph, overlaying weAudit annotations, importing binary graph findings, cross-referencing Semgrep, CodeQL, or binary-analysis findings with call graph data, or visualizing audit findings in the context of code structure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4020,4021,4022],{"name":3981,"slug":3982,"type":16},{"name":3967,"slug":3968,"type":16},{"name":3938,"slug":3939,"type":16},"2026-08-01T05:44:54.920542",{"slug":4025,"name":4025,"fn":4026,"description":4027,"org":4028,"tags":4029,"stars":20,"repoUrl":21,"updatedAt":4036},"audit-context-building","build architectural context for code analysis","Enables ultra-granular, line-by-line code analysis to build deep architectural context before vulnerability or bug finding.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4030,4033,4034,4035],{"name":4031,"slug":4032,"type":16},"Architecture","architecture",{"name":3981,"slug":3982,"type":16},{"name":3967,"slug":3968,"type":16},{"name":3996,"slug":3997,"type":16},"2026-07-18T05:47:40.122449",{"slug":4038,"name":4038,"fn":4039,"description":4040,"org":4041,"tags":4042,"stars":20,"repoUrl":21,"updatedAt":4047},"audit-prep-assistant","prepare codebases for security audits","Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes dead code, ensures accessibility, and generates documentation (flowcharts, user stories, inline comments).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4043,4044,4045,4046],{"name":3981,"slug":3982,"type":16},{"name":3967,"slug":3968,"type":16},{"name":3996,"slug":3997,"type":16},{"name":3938,"slug":3939,"type":16},"2026-07-18T05:47:39.210985",{"slug":4049,"name":4049,"fn":4050,"description":4051,"org":4052,"tags":4053,"stars":20,"repoUrl":21,"updatedAt":4059},"burpsuite-project-parser","parse Burp Suite project files","Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4054,4055,4058],{"name":3981,"slug":3982,"type":16},{"name":4056,"slug":4057,"type":16},"CLI","cli",{"name":3938,"slug":3939,"type":16},"2026-07-17T06:05:33.198077",{"slug":4061,"name":4061,"fn":4062,"description":4063,"org":4064,"tags":4065,"stars":20,"repoUrl":21,"updatedAt":4070},"c-review","audit C and C++ code","Performs comprehensive C\u002FC++ security review for memory corruption, integer overflows, race conditions, and platform-specific vulnerabilities. Use when auditing native C\u002FC++ applications, reviewing daemons or services for memory safety, or hunting integer overflow \u002F use-after-free \u002F race conditions in userspace code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4066,4067,4068,4069],{"name":3981,"slug":3982,"type":16},{"name":3932,"slug":3933,"type":16},{"name":3967,"slug":3968,"type":16},{"name":3938,"slug":3939,"type":16},"2026-07-17T06:05:11.333374",{"slug":4072,"name":4072,"fn":4073,"description":4074,"org":4075,"tags":4076,"stars":20,"repoUrl":21,"updatedAt":4081},"cairo-vulnerability-scanner","scan Cairo and StarkNet contracts for vulnerabilities","Scans Cairo\u002FStarkNet smart contracts for 6 critical vulnerabilities including felt252 arithmetic overflow, L1-L2 messaging issues, address conversion problems, and signature replay. Use when auditing StarkNet projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4077,4078,4079,4080],{"name":3981,"slug":3982,"type":16},{"name":3967,"slug":3968,"type":16},{"name":3938,"slug":3939,"type":16},{"name":3986,"slug":3987,"type":16},"2026-07-18T05:47:42.84568",111,{"items":4084,"total":4130},[4085,4092,4098,4106,4113,4118,4124],{"slug":3926,"name":3926,"fn":3927,"description":3928,"org":4086,"tags":4087,"stars":20,"repoUrl":21,"updatedAt":3943},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4088,4089,4090,4091],{"name":3932,"slug":3933,"type":16},{"name":3935,"slug":3936,"type":16},{"name":3938,"slug":3939,"type":16},{"name":3941,"slug":3942,"type":16},{"slug":3945,"name":3945,"fn":3946,"description":3947,"org":4093,"tags":4094,"stars":20,"repoUrl":21,"updatedAt":3953},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4095,4096,4097],{"name":3932,"slug":3933,"type":16},{"name":3938,"slug":3939,"type":16},{"name":3941,"slug":3942,"type":16},{"slug":3955,"name":3955,"fn":3956,"description":3957,"org":4099,"tags":4100,"stars":20,"repoUrl":21,"updatedAt":3973},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4101,4102,4103,4104,4105],{"name":3961,"slug":3962,"type":16},{"name":3964,"slug":3965,"type":16},{"name":3967,"slug":3968,"type":16},{"name":3970,"slug":3971,"type":16},{"name":3938,"slug":3939,"type":16},{"slug":3975,"name":3975,"fn":3976,"description":3977,"org":4107,"tags":4108,"stars":20,"repoUrl":21,"updatedAt":3988},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4109,4110,4111,4112],{"name":3981,"slug":3982,"type":16},{"name":3967,"slug":3968,"type":16},{"name":3938,"slug":3939,"type":16},{"name":3986,"slug":3987,"type":16},{"slug":3990,"name":3990,"fn":3991,"description":3992,"org":4114,"tags":4115,"stars":20,"repoUrl":21,"updatedAt":4001},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4116,4117],{"name":3996,"slug":3997,"type":16},{"name":3999,"slug":4000,"type":16},{"slug":4003,"name":4003,"fn":4004,"description":4005,"org":4119,"tags":4120,"stars":20,"repoUrl":21,"updatedAt":4013},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4121,4122,4123],{"name":4009,"slug":4010,"type":16},{"name":3938,"slug":3939,"type":16},{"name":3941,"slug":3942,"type":16},{"slug":4015,"name":4015,"fn":4016,"description":4017,"org":4125,"tags":4126,"stars":20,"repoUrl":21,"updatedAt":4023},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4127,4128,4129],{"name":3981,"slug":3982,"type":16},{"name":3967,"slug":3968,"type":16},{"name":3938,"slug":3939,"type":16},77]