vault/Operations/Claude/skills/thinking/meta-pattern-recognition/SKILL.md
Spot patterns appearing in 3+ domains to find universal principles.
npx skillsauth add eddowding/cortex meta-pattern-recognitionInstall 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.
Find patterns in how patterns emerge.
Extract universal principles from patterns appearing across multiple domains.
Core principle: When the same pattern appears in 3+ domains, it's probably universal.
Use when:
| Pattern Appears In | Abstract Form | Where Else? | |-------------------|---------------|-------------| | CPU/DB/HTTP/DNS caching | Store frequently-accessed data closer | LLM prompt caching, CDN | | Network/storage/compute layering | Separate concerns into abstraction levels | Architecture, organization | | Message/task/request queuing | Decouple producer from consumer with buffer | Event systems, async | | Connection/thread/object pooling | Reuse expensive resources | Memory management |
Pattern spotted: Rate limiting in API throttling, traffic shaping, circuit breakers, admission control
Abstract form: Bound resource consumption to prevent exhaustion
Variation points: What resource, what limit, what happens when exceeded
New application: LLM token budgets (same pattern - prevent context window exhaustion)
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.
tools
Find one insight that eliminates multiple components - 'if this is true, we don't need X, Y, or Z'
testing
Test at extremes (1000x bigger/smaller) to expose fundamental truths hidden at normal scales.