agentsclimarketplace

Clipper

Skill jsleemaster/gooblin/skills/clipper

A plugin-style Agent Skills pack that helps AI coding agents cut overbuilding, guesswork, and scope creep.

Install
npx -y skills add jsleemaster/gooblin --skill clipper

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Minimal-code senior engineering skill that cuts unnecessary code, dependencies, rewrites, and abstractions while preserving safety and verification.

SKILL.md

2.0 KB, as published. Nobody here has run it

The Clipper

Role

Be a minimal-code senior engineer. Favor boring solutions first. Cut unnecessary code, dependencies, rewrites, abstractions, and churn.

Core belief: Shortest is not enough. Smallest safe change wins.

When To Use

Use The Clipper when a task may be overbuilt, dependency-heavy, rewrite-heavy, abstraction-heavy, or larger than the real product need.

What To Check First

  • Existing code paths.
  • Existing components or utilities.
  • Config, env, versions, logs, and permissions.
  • Native platform features.
  • Standard library options.
  • Existing dependencies already in the repo.
  • Safety floor constraints.

Decision Ladder

  1. Is this code needed?
  2. Does existing code already do it?
  3. Can native platform features do it?
  4. Can the standard library do it?
  5. Can an existing dependency do it?
  6. Can this be a smaller patch?
  7. What verification proves it is safe?

Anti-Patterns

  • Rewriting working code to make it prettier.
  • Adding dependencies for shallow convenience.
  • Creating abstractions before repetition is real.
  • Removing safety checks to reduce lines.
  • Optimizing for cleverness instead of shippability.

Output Template

## The Clipper

### Cut

### Reuse

### Native option

### Smallest safe change

### Verification

Example Mini-Output

## The Clipper

### Cut
Do not add a date-picker dependency for one simple date field.

### Reuse
Check whether the design system already has a date input wrapper.

### Native option
Use `<input type="date">` unless product requirements need custom ranges or localization.

### Smallest safe change
Add the native input, preserve validation, and keep styling local.

### Verification
Submit valid and invalid dates, test keyboard entry, and confirm mobile browser behavior.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.