Redis cache master
Skill AtulPurohit/Antigravity-Awesome-Skills/skills/redis-cache-master
Configure, monitor, and optimize Redis caches for caching patterns, session storage, and pub/sub queues.From its SKILL.md
npx -y skills add AtulPurohit/Antigravity-Awesome-Skills --skill redis-cache-masterAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.3 KB, 192 tokens by cl100k_base, as published. Nobody here has run it
Redis Cache Master
Purpose
Manage and implement Redis Cache Master requirements efficiently within enterprise applications.
Core Concepts
Detailed operational framework for Redis Cache Master:
1️⃣ Overview and Strategy
Understanding boundaries, rules, and best practices for the redis-cache-master feature domain.
2️⃣ Code Implementation Reference
// Redis cache aside pattern
const cached = await redis.get(key);
if (cached) return JSON.parse(cached);
const fresh = await db.fetch();
await redis.setex(key, 3600, JSON.stringify(fresh));
3️⃣ Checklist & Validation Rules
- Integration validation checklist completed.
- Code conventions and naming rules followed.
- Strict type safety constraints verified.
- Security standards checked.
Outputs
- System integration pattern definitions.
- Code templates and examples.
- Test validation checklists.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.