adjust

Apply user-requested fixes, improvements, and refactors to existing code without shipping.

Updated Jul 11, 2026
One-click install
npx skills add https://github.com/danielsuguimoto/skills --skill adjust-danielsuguimoto
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: adjust
Source: https://github.com/danielsuguimoto/skills/tree/main/skills/adjust
Command: npx skills add https://github.com/danielsuguimoto/skills --skill adjust-danielsuguimoto

SYSTEM DOCUMENTATION & REQUIREMENTS

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."

Frequently Asked Questions about adjust

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I apply code changes from a free-form request?▼

Provide your adjustment request as free-form prose, and the Skill grills you one question at a time to clarify intent, target files, and scope. It then parses the request into actionable items, confirms a plan with you, implements minimal edits, and validates with lint and tests.

How to refactor code without committing or creating a PR?▼

This Skill explicitly excludes all version control operations — no commits, pushes, branches, or pull requests. It edits the current working directory as-is and stops after presenting results, leaving shipping to separate workflows you invoke yourself.

Does it work on uncommitted or non-git codebases?▼

Yes, the Skill operates on the current code as it exists — uncommitted changes, clean trees, or directories with no version control at all are all treated identically. It never inspects or modifies VCS state.

What happens when a requested change conflicts with existing design?▼

Items that contradict an existing invariant, pattern, or design decision are flagged as conflicts. The Skill defends the current code, records the reason in a not-applying list, and does not apply the conflicting change.

When should I not use an interactive adjustment workflow?▼

Avoid it when you need shipping — branching, committing, pushing, or opening a PR — since this Skill deliberately stops before any of those steps. It also stops and lists unknowns rather than acting when the request intent cannot be clarified.