Agent skill

Simplification Cascades

Find one insight that eliminates multiple components - "if this is true, we don't need X, Y, or Z

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill simplification-cascades-aia-11-hn-mib-mib-mockinterviewaib --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.1.0
Path: skills/analysis/simplification-cascades-aia-11-hn-mib-mib-mockinterviewaib/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Simplification Cascades ## Overview Sometimes one insight eliminates 10 things. Look for the unifying principle that makes multiple components unnecessary. **Core principle:** "Everything is a special case of..." collapses complexity dramatically. ## Quick Reference | Symptom | Likely Cascade | |---------|----------------| | Same thing implemented 5+ ways | Abstract the common pattern | | Growing special case list | Find the general case | | Complex rules with exceptions | Find the rule that has no exceptions | | Excessive config options | Find defaults that work for 95% | ## The Pattern **Look for:** - Multiple implementations of similar concepts - Special case handling everywhere - "We need to handle A, B, C, D differently..." - Complex rules with many exceptions **Ask:** "What if they're all the same thing underneath?" ## Examples ### Cascade 1: Stream Abstraction **Before:** Separate handlers for batch/real-time/file/network data **Insight:** "All inputs are streams - just different sources" **After:** One stream processor, multiple stream sources **Eliminated:** 4 separate implementations ### Cascade 2: Resource Governance **Before:** Session tracking, rate limiting, file va

What's inside
Steps it walks through
  1. Overview
  2. Quick Reference
  3. The Pattern
  4. Examples
  5. Cascade 1: Stream Abstraction
  6. Cascade 2: Resource Governance
  7. Cascade 3: Immutability
  8. Process
  9. Red Flags You're Missing a Cascade
  10. Remember
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the Simplification Cascades skill do?

Find one insight that eliminates multiple components - "if this is true, we don't need X, Y, or Z

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill simplification-cascades-aia-11-hn-mib-mib-mockinterviewaib --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going