What problem does it solve? Vague code adjustment requests lead to wrong changes and scope creep. This Skill turns free-form adjustment requests into clarified, validated, minimal code edits by grilling the user for intent, planning each change, and validating results — without touching version control or shipping anything. ## Core Features & Use Cases - Interactive Clarification: Grills the user one question at a time with recommended answers, grounding questions in actual code evidence with file:line citations. - Structured Planning: Parses requests into categorized adjustment items (critical, important, style), detects conflicts with existing design, and confirms the plan before implementing. - Validated Execution: Implements minimal edits following existing patterns, then runs the project's lint and test commands to confirm nothing breaks. - Use Case: A user says "fix the null handling in the auth module and clean up the retry logic." The Skill clarifies scope, plans the edits, applies them, runs tests, and reports results — leaving commits and PRs to the user. ## Quick Start Ask the agent to apply your adjustment request, for example: "adjust the error handling in api/client.ts to retry on 429 responses and log failures."