smithery/neversight

minimal-diff-implementer

Implement the smallest safe change and avoid bloat; use for most coding tasks to prevent overengineering, unrelated edits, or destructive refactors.

Installation

$ npx skills add smithery/neversight --skill minimal-diff-implementer

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 891 B
  • docs SUMMARY.md 180 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Minimal Diff Implementer

Quick start

  • Touch the fewest files possible.
  • Preserve existing comments and structure.
  • Avoid refactors unless explicitly requested.

Procedure

  1. Find the narrowest place to implement the change.
  2. Prefer local edits over new abstractions.
  3. Keep APIs stable unless required.
  4. Do not delete or rewrite code you do not fully understand.
  5. If a refactor seems needed, ask first.

Output format

  • Changes: short list of files edited and why.
  • Notes: any tradeoffs or limitations.

Guardrails

  • Do not remove comments or formatting as collateral.
  • Do not expand scope to "clean up".
  • If code grows, justify why the growth is required.