What problem does it solve? PR descriptions often jump straight from a vague summary to a raw commit diff, forcing reviewers to read every changed line to understand the design. This Skill structures the PR body as an intermediate state so reviewers can catch design errors without reading the full diff. ## Core Features & Use Cases - File-tree diff: Renders the codebase structure with each file marked (A/M/D/R) plus a note, and flags critical paths (new entry points, removed entry points, cross-boundary calls) with a star marker. - Prose data flow supplement: Walks through critical control flow, prod-vs-PR behavior tables for runtime boundary crossings, and explicit lists of untested or uncovered boundaries. - Rendering invariants: Prevents broken GitHub markdown by enforcing quoted HEREDOC delimiters and banning backslash-escaped backticks, with a verification command using the gh CLI. - Use Case: After implementing a change that splits a daemon into two jobs and retires a legacy channel, use this Skill to produce a PR body where reviewers instantly see the new entry point, the runtime behavior change, and what is not tested. ## Quick Start Write a PR description for my current branch changes following the file-tree diff and data flow format.