Agent skill · DevOps & Cloud

recommendation-system

Deploy production recommendation systems with feature stores, caching, A/B testing. Use for personalization APIs, low latency serving, or encountering cache invalidation, experiment tracking, quality monitoring issues.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill recommendation-system-secondsky-claude-skills-3 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 14 KB
Bundled scripts: none
Path: skills/ai-ml/recommendation-system-secondsky-claude-skills-3/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Recommendation System Production-ready architecture for scalable recommendation systems with feature stores, multi-tier caching, A/B testing, and comprehensive monitoring. ## When to Use This Skill Load this skill when: - **Building Recommendation APIs**: Serving personalized recommendations at scale - **Implementing Caching**: Multi-tier caching for sub-millisecond latency - **Running A/B Tests**: Experimenting with recommendation algorithms - **Monitoring Quality**: Tracking CTR, conversion, diversity, coverage - **Optimizing Performance**: Reducing latency, increasing throughput - **Feature Engineering**: Managing user/item features with feature stores ## Quick Start: Recommendation API in 5 Steps ```bash # 1. Install dependencies pip install fastapi==0.109.0 redis==5.0.0 prometheus-client==0.19.0 # 2. Start Redis (for caching and feature store) docker run -d -p 6379:6379 redis:alpine # 3. Create recommendation service: app.py cat > app.py << 'EOF' from fastapi import FastAPI from pydantic import BaseModel from typing import List import redis import json app = FastAPI() cache = redis.Redis(host='localhost', port=6379, decode_responses=True) class RecommendationResponse(BaseMod

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Quick Start: Recommendation API in 5 Steps
  3. System Architecture
  4. Core Components
  5. 1. Feature Store
  6. 2. Model Serving
  7. 3. Caching Layer
  8. Key Metrics
  9. Known Issues Prevention
  10. 1. Cold Start for New Users
  11. 2. Cache Invalidation on User Actions
  12. 3. Thundering Herd on Cache Expiry
  13. 4. Poor Diversity = Filter Bubble
  14. 5. No Monitoring = Silent Degradation
Ships with 1 file
  • metadata.json
Commands it runs
pip install fastapi==0.109.0 redis==5.0.0 prometheus-client==0.19.0
docker run -d -p 6379:6379 redis:alpine
cat > app.py << 'EOF'
uvicorn app:app --host 0.0.0.0 --port 8000
curl -X POST "http://localhost:8000/recommendations?user_id=user_123&n=10"
More from claude-skill-registry
All skills →
About this skill
What does the recommendation-system skill do?

Deploy production recommendation systems with feature stores, caching, A/B testing. Use for personalization APIs, low latency serving, or encountering cache invalidation, experiment tracking, quality monitoring issues.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill recommendation-system-secondsky-claude-skills-3 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going