From agi-super-team
Finds a unifying insight that eliminates multiple components, collapsing complexity by identifying a common pattern.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:sp-simplification-cascadesWhen to use
when implementing the same concept multiple ways, accumulating special cases, or complexity is spiraling
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Sometimes one insight eliminates 10 things. Look for the unifying principle that makes multiple components unnecessary.
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.
| 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% |
Look for:
Ask: "What if they're all the same thing underneath?"
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
Before: Session tracking, rate limiting, file validation, connection pooling (all separate) Insight: "All are per-entity resource limits" After: One ResourceGovernor with 4 resource types Eliminated: 4 custom enforcement systems
Before: Defensive copying, locking, cache invalidation, temporal coupling Insight: "Treat everything as immutable data + transformations" After: Functional programming patterns Eliminated: Entire classes of synchronization problems
npx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-team3plugins reuse this skill
First indexed Jun 22, 2026
Guides refactoring to reduce code volume by fixing judgment gaps (reinvention, wrong frames, hidden duplication, speculative generality). Use after linter cleanup for deeper simplification.
Simplifies complex/AI-generated code by removing duplication, dead code, over-engineering, and bloat patterns like verbose error handling. Use after features, on long functions (>40 lines), deep nesting (>3), or repeated patterns.
Evaluates code for structural simplicity and complected concerns using Rich Hickey's Simple Made Easy framework. Invoke via /hickey to detect accidental complexity.