Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
cursor avatar

Principle Subtract Before You Add

  • 410 installs
  • 2.5k repo stars
  • Updated August 5, 2026
  • cursor/plugins

Simplify Cursor plugin scope by removing dead code, redundant settings, and overlapping commands before introducing new capabilities or configuration.

About

Subtract-before-you-add principle for Cursor plugins: remove redundant commands, settings, and code paths before adding features so the extension stays minimal, testable, and easier for users to adopt.

  • Delete unused commands first
  • Collapse overlapping settings
  • Prefer smaller public API
  • Reduce cognitive load
  • Justify every new surface

Principle Subtract Before You Add by the numbers

  • 410 all-time installs (skills.sh)
  • Ranked #257 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/cursor/plugins --skill principle-subtract-before-you-add

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs410
repo stars2.5k
Last updatedAugust 5, 2026
Repositorycursor/plugins

What it does

Simplify Cursor plugin scope by removing dead code, redundant settings, and overlapping commands before introducing new capabilities or configuration.

Files

SKILL.mdMarkdownGitHub ↗

Subtract Before You Add

When evolving a system, remove complexity first, then build. Deletion gives you a simpler base, which makes the next addition smaller and less brittle.

Why: Adding to a complex system compounds complexity. Removing first cuts the surface area, reveals the essential structure, and usually makes the next design obvious. Default to subtraction.

The pattern:

  • Sequence removal before construction
  • Cut before you polish (get to the minimum before investing in quality)
  • Design for observed usage, not speculative edge cases
  • No speculative validators, parsers, or guards beyond what the spec demands
  • Out-of-spec features drag validators behind them. Persistence, retry-on-startup, and schema migration each need guards to defend their inputs.
  • Simplify prompts (remove redundant instructions, excessive templates)
  • When a reference has no novel content, delete it rather than leaving a stub

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.