What problem does it solve? After running code reviews, security scans, or dynamic scans, findings pile up in ledgers with recommended fixes. Manually locating each finding, copying its fix into the right source file, and updating the ledger status is tedious and error-prone. This Skill automates that loop: give it a fingerprint ID and it locates the finding, applies the recorded fix, and moves the ledger entry from Open to Fixed. ## Core Features & Use Cases - Fingerprint-based lookup: Searches the code-review, security, and dynamic-scan ledgers in order for a FP-xxxxxxxx ID and identifies the source ledger automatically. - Confirmed, surgical edits: Displays the vulnerable code and proposed fix, waits for explicit yes/no/edit confirmation, then applies the change via str_replace to only the affected file. - Consistent ledger bookkeeping: Physically moves the finding block from ## Open Findings to ## Fixed Findings and updates summary counts, keeping checkin and PR gates accurate. - Guard rails: Refuses to fix dismissed, already-fixed, or manual-fix-required findings, and never marks a finding Fixed if the edit did not actually apply. - Use Case: After a security review flags a SQL injection issue as FP-a1b2c3d4, run the fix command with that ID, review the proposed parameterized-query change, confirm, and have both the source file and the security ledger updated in one step. ## Quick Start Ask the AI to apply the fix for fingerprint FP-a1b2c3d4 from the findings ledger to the source file.