vault/Operations/Claude/skills/thinking/simplification-cascades/SKILL.md
Find one insight that eliminates multiple components - 'if this is true, we don't need X, Y, or Z'
npx skillsauth add eddowding/cortex simplification-cascadesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
One insight that eliminates 10 things.
Find the unifying principle that makes multiple components unnecessary.
Core principle: "Everything is a special case of..." collapses complexity dramatically.
Use when:
Before: Separate handlers for batch/real-time/file/network data Insight: "All inputs are streams - just different sources" Eliminated: 4 separate implementations
Before: Session tracking, rate limiting, file validation, connection pooling Insight: "All are per-entity resource limits" Eliminated: 4 custom enforcement systems
Before: Defensive copying, locking, cache invalidation Insight: "Treat everything as immutable data + transformations" Eliminated: Entire classes of synchronization problems
tools
Dispatch to the right problem-solving technique based on how you're stuck.
testing
Interactive brainstorming and advisory mode that helps think through questions, critique approaches, propose alternatives, and reach optimal decisions.
testing
Test at extremes (1000x bigger/smaller) to expose fundamental truths hidden at normal scales.
data-ai
Explain concepts at three levels: 5-year-old, real-world analogy, and university-level definition.