From context-engine
Redis patterns - caching, sessions, queues, pub/sub, rate limiting. Auto-loaded when working with cache, Redis, or queue-related files.
npx claudepluginhub littlelingo/context-engine --plugin context-engineThis skill uses the workspace's default tool permissions.
- Cache-aside: app checks cache, falls back to DB, writes to cache
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Share bugs, ideas, or general feedback.
{service}:{entity}:{id} (e.g., app:user:123)SET session:{id} {data} EX 1800 (30min TTL)INCR + EXPIRE for simple per-minute limitsratelimit:{endpoint}:{user_id}{domain}.{event} (e.g., orders.created)MAXMEMORY policy: allkeys-lru for pure cache, noeviction for queuesINFO command, SLOWLOG for performanceKEYS *) in production (use SCAN instead)