simplify

Installation
SKILL.md

Simplify

Reviews all changed files through three parallel agents — reuse, quality, and efficiency — then fixes any issues found.

Core Principle

Changed code is the only review target. Each review dimension runs independently, sees the full diff, and reports findings without knowledge of the other agents' results. The main agent aggregates and applies fixes.

Hard Gates

  1. Identify changes before reviewing. Always run git diff (or git diff HEAD if there are staged changes) first. Never review without knowing what changed.
  2. All three agents must run in parallel. Sequential execution of the three review agents is prohibited. Dispatch all three concurrently in a single message.
  3. Each agent receives the full diff. Do not split or filter the diff per agent. Every agent sees every change.
  4. Fix issues directly. This skill produces code changes, not just a report. If a finding is actionable, fix it.
  5. Skip false positives silently. If a finding is not worth addressing, move on. Do not argue with the finding or explain why it was skipped.
  6. Do not expand scope beyond the diff. Review only the changed code. Do not refactor untouched code, even if it has the same issues.

When To Use

Related skills

More from tmdgusya/engineering-discipline

Installs
30
GitHub Stars
76
First Seen
Apr 1, 2026