What problem does it solve? Code changes often drift from a team's established conventions, and manual review against every coding rule is slow and inconsistent. This Skill automates standards-based review by diffing the current branch against the base branch and validating every change against the project's coding rules. ## Core Features & Use Cases - Rule-based diff analysis: Generates a diff of the current branch versus main (including uncommitted changes) and checks it against all coding standards files, citing file:line and the specific rule violated. - Iteration tracking: Appends timestamped review iterations to a git-ignored review report, recording which issues were fixed and which are new across re-reviews. - Workflow integration: Detects whether it runs inside the ar-taskflow workflow or standalone, and resolves a project-specific code-reviewer agent with a generic fallback. - Use Case: After implementing a feature on a branch, run the review to catch N+1 queries, missing migrations, or transaction-scope violations before opening a pull request. ## Quick Start Ask the assistant to run ar-taskflow-review on the current branch to validate the changes against the project coding rules.