jwilger/union_square · Archived

design-review

Review code design for maintainability, coupling, cohesion, and clarity

First seen Jun 18, 2026

Installation

$ npx skills add jwilger/union_square --skill design-review

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

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 jwilger/union_square.

npx skills add jwilger/union_square

Browse all from jwilger/union_square

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 Declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseMIT
Compatibilitycodex
Declared agents codex

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 692 B
  • docs SUMMARY.md 92 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

What I do

  • Evaluate module boundaries and responsibilities
  • Identify design smells (feature envy, shotgun surgery, data clumps)
  • Suggest concrete refactorings
  • Ensure naming reveals intent

When to use me

Use this skill when reviewing PRs for code quality, during refactoring planning, or when adding new modules.

Review Checklist

  • Single responsibility per module/function
  • Low coupling between modules
  • High cohesion within modules
  • Public APIs are minimal and well-documented
  • No circular dependencies