cache-components
Originally fromzoonk/zoonk
Installation
SKILL.md
Next.js Cache Components
Auto-activation: Activate this skill automatically in Next.js projects that have
cacheComponents: trueinnext.config.ts/next.config.js. When detected, apply Cache Components patterns to all Server Component authoring, data fetching, and caching decisions.
Project Detection
When starting work in a Next.js project, check if Cache Components are enabled:
# Check next.config.ts or next.config.js for cacheComponents
grep -r "cacheComponents" next.config.* 2>/dev/null
If cacheComponents: true is found, apply this skill's patterns proactively when: