What problem does it solve? Code review feedback often lands as messy "address feedback" commits that clutter a PR's history. This Skill folds each fix into the branch commit that owns it, so the PR reads as clean, authored narrative history instead of a patchwork of review reactions. ## Core Features & Use Cases - Mechanical Commit Mapping: Assigns each fix to the most recent branch commit touching the same file, splitting fixes across owners when needed. - Fixup + Autosquash Workflow: Uses git commit --fixup and git rebase -i --autosquash to rewrite history without manual interactive editing. - Tree-Identity Verification: Enforces both git diff and git status --porcelain checks to prove the rebased tree matches the tested tree and no fix was left uncommitted. - Use Case: During a Hall9k follow-up run, review comments arrive on a PR using the narrative commit style; the Skill absorbs each fix into its owning commit and leaves the branch ready for the daemon's force-with-lease push. ## Quick Start Ask the agent to absorb the current working-tree review fixes into their owning branch commits using the absorb-review-fixes workflow.