Agent skill · product strategy · aaaaqwq
Simplification Cascades
Find one insight that eliminates multiple components - "if this is true, we don't need X, Y, or Z
Why this skill is useful
Provides a structured approach to identify and eliminate redundant components, enhancing the AI's ability to simplify complex systems.
What it needs
About 2k tokens when loaded. Last updated 2026-08-06. 83 stars on the source repository.
What this skill does
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 validation, connection pooling (all separate) Insight: "All are per-entity resource limits" After: One ResourceGovernor with 4 resource types Eliminated: 4 custom enforcement systems Cascade 3: Immutability 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 Process 1. List the variations - What's implemented multiple ways? 2. Find the essence - What's the same underneath? 3. Extract abstraction - What's the domain-independent pattern? 4. Test it - Do all cases fit cleanly? 5. …
How to use it
Reference it in AdaL, Claude Code, Cursor or any coding agent — nothing to install:
@skills aaaaqwq/sp-simplification-cascades