Agent Skills: Dverity Simplify

Simplify verified changes before remote submission. Use for deletion-first, YAGNI, native-library, structural, and test-seam review.

UncategorizedID: Dimon94/cc-devflow/dverity-simplify

Install this agent skill to your local

pnpm dlx add-skill https://github.com/Dimon94/cc-devflow/tree/HEAD/skills/dverity-simplify

Skill Files

Browse the full folder contents for dverity-simplify.

Download Skill

Loading file tree…

skills/dverity-simplify/SKILL.md

Skill Metadata

Name
dverity-simplify
Description
Simplify verified changes before remote submission. Use for deletion-first, YAGNI, native-library, structural, and test-seam review.

Dverity Simplify

Read references/simplification-rules.js. Review only the verified diff and preserve its accepted behavior.

Use this order:

  1. Delete behavior that is unnecessary or speculative. YAGNI beats rewriting.
  2. Replace custom machinery with an existing native API or standard library.
  3. Repair confirmed structural risk: mixed responsibilities, excessive branching or nesting, giant modules, hidden coupling, or poor test seams.
  4. Keep necessary code when none of those conditions is proven.

Tests must observe public behavior. Do not add private-method assertions, internal collaborator mocks, or abstractions created only to satisfy a test. The bundled decision reference is the executable behavioral contract; no external Skill, plugin identity, version, or absolute path is required.