MCP HubMCP Hub
Retour aux compétences

recommendations

tasteray
Mis à jour 2 days ago
5 vues
18
18
Voir sur GitHub
Métaaiapidesign

À propos

Cette compétence intègre l'API TasteRay pour fournir des recommandations personnalisées dans de multiples domaines tels que les films, les restaurants et les produits. Elle permet aux développeurs de classer des éléments, d'expliquer les correspondances de goûts et de construire un contexte de recommandation à partir des conversations des utilisateurs. Utilisez-la lorsque vous avez besoin de répondre à des questions du type "qu'est-ce que j'aimerais ?" ou d'intégrer des profils psychologiques dans un système de recommandation.

Installation rapide

Claude Code

Recommandé
Principal
npx skills add tasteray/skills -a claude-code
Commande PluginAlternatif
/plugin add https://github.com/tasteray/skills
Git CloneAlternatif
git clone https://github.com/tasteray/skills.git ~/.claude/skills/recommendations

Copiez et collez cette commande dans Claude Code pour installer cette compétence

Documentation

Recommendations

Personalized recommendations through the TasteRay API.

Goal

When making recommendations or reviewing recommendation-related code—whether API integrations, context building, or presentation logic—your goal is to achieve a 10/10 score.

Score all work on a 0-10 scale based on adherence to the principles and techniques in this skill. Provide your assessment as X/10 with specific feedback on what's working and what needs improvement to reach 10/10.

A 10/10 means the work:

  • Embodies the core principle (understanding precedes recommendation)
  • Builds rich context before calling the API
  • Presents recommendations with personalized explanations
  • Handles edge cases gracefully (low confidence, rate limits, errors)
  • Avoids all anti-patterns

Iterate until you reach 10/10.


Core Principle

Understanding precedes recommendation.

Great recommendations come from deep understanding of the person—their preferences, constraints, history, and context. Never call the API without first building meaningful context from the conversation.

Key insight: A recommendation is only as good as the context that informed it.


API Overview

The TasteRay Recommendation API provides personalized recommendations across multiple verticals.

Base URL

https://api.tasteray.com

Authentication

All requests require an API key in the header:

X-API-Key: your-api-key

Core Endpoints

EndpointMethodDescription
/v1/recommendPOSTGet personalized recommendations
/v1/explainPOSTGet detailed explanation for a single item
/v1/usageGETCheck quota and usage statistics

See: API Reference


The Recommendation Flow

Every recommendation follows this pattern:

1. Build context from conversation
   ↓
2. Call POST /v1/recommend
   ↓
3. Interpret confidence scores
   ↓
4. Present with personalized explanations
   ↓
5. Iterate based on feedback

Step 1: Build Context

Extract from the conversation:

  • preferences: Explicit likes/dislikes and taste patterns
  • profile: Psychological profile text (from elicitation skill)
  • constraints: Hard requirements (budget, dietary, location, etc.)
  • history: Past items they've liked or disliked

Step 2: Call the API

POST /v1/recommend
{
  "vertical": "movies",
  "context": {
    "preferences": ["dark comedies", "complex characters"],
    "profile": "Values authenticity and depth. Drawn to stories about outsiders...",
    "constraints": {"max_length_minutes": 120},
    "history": [
      {"item": "Parasite", "rating": 5},
      {"item": "The Lobster", "rating": 4}
    ]
  },
  "count": 5
}

Step 3: Interpret Confidence

ScoreMeaningAction
0.9+Strong matchLead with this recommendation
0.7-0.9Good matchPresent with confidence
0.5-0.7Moderate matchInclude caveats, explain why it might not fit
<0.5Weak matchOmit or explain significant uncertainty

Step 4: Present Recommendations

Don't just list items. Personalize the explanation:

Bad:

"Based on your preferences, I recommend Parasite."

Good:

"Given your appreciation for dark comedies with complex characters, Parasite would be a strong match. It has that same outsider perspective you responded to in The Lobster, but with sharper social commentary."

Step 5: Iterate

Use feedback to refine:

  • "That's not quite right" → Ask what's missing
  • "Tell me more about X" → Call /v1/explain
  • "Something different" → Adjust constraints and re-query

Context Building

The quality of recommendations depends entirely on context quality.

Preferences Array

Explicit taste statements extracted from conversation:

"preferences": [
  "dark comedies",
  "complex anti-heroes",
  "slow-burn narratives",
  "dislikes: jump scares",
  "dislikes: predictable endings"
]

Extraction patterns:

  • "I love X" → positive preference
  • "I can't stand X" → negative preference (prefix with "dislikes:")
  • "Something like X" → reference point
  • "Not too X" → constraint or negative preference

Profile Text

Free-form psychological profile. If using the elicitation skill, summarize findings:

"profile": "Values authenticity over polish. Drawn to outsider narratives
and stories about people who don't fit in. Appreciates moral ambiguity
and complex characters who aren't clearly good or bad. Responds strongly
to themes of class and social hierarchy. Prefers films that trust the
audience's intelligence."

Constraints Object

Hard requirements that filter recommendations:

VerticalCommon Constraints
Moviesmax_length_minutes, release_year_min, exclude_genres
Restaurantscuisine, price_range, location, dietary
Productsmax_price, category, brand_exclude
Travelbudget, dates, accessibility, interests
Jobslocation, salary_min, remote, experience_level

History Array

Past items with ratings (1-5 scale):

"history": [
  {"item": "The Grand Budapest Hotel", "rating": 5},
  {"item": "Transformers", "rating": 1},
  {"item": "Moonlight", "rating": 4}
]

Guidelines:

  • Include both positive and negative examples
  • Maximum 50 items (API limit)
  • More recent items are weighted higher
  • Include item identifiers when available (IMDB ID, etc.)

See: Context Patterns Reference


Vertical-Specific Patterns

Movies & TV

Key context signals:

  • Genre preferences (and anti-preferences)
  • Pacing preferences (slow burn vs. action-packed)
  • Era preferences (classic, modern, contemporary)
  • Language/subtitle comfort
  • Mood they're seeking

Constraint examples:

{
  "max_length_minutes": 120,
  "release_year_min": 2010,
  "exclude_genres": ["horror", "musical"],
  "languages": ["en", "fr"],
  "streaming_services": ["netflix", "hulu"]
}

Restaurants

Key context signals:

  • Cuisine preferences and adventurousness
  • Price sensitivity
  • Dietary restrictions (must capture accurately)
  • Occasion context (date night, business, casual)
  • Ambiance preferences

Constraint examples:

{
  "location": {"lat": 37.7749, "lng": -122.4194, "radius_miles": 5},
  "price_range": [2, 3],
  "dietary": ["vegetarian-options"],
  "open_now": true
}

Products

Key context signals:

  • Use case and context
  • Quality vs. price tradeoff
  • Brand affinities and aversions
  • Feature priorities
  • Aesthetic preferences

Constraint examples:

{
  "max_price": 500,
  "category": "headphones",
  "brand_exclude": ["beats"],
  "features_required": ["noise-cancelling", "wireless"]
}

Travel

Key context signals:

  • Travel style (adventure, relaxation, cultural)
  • Comfort level with unfamiliarity
  • Activity preferences
  • Social context (solo, couple, family)
  • Previous destinations (loved and disliked)

Constraint examples:

{
  "budget_per_day": 200,
  "dates": {"start": "2024-06-01", "end": "2024-06-14"},
  "accessibility": ["wheelchair-accessible"],
  "climate": "warm",
  "visa_free_for": "US"
}

Jobs

Key context signals:

  • Career values and priorities
  • Work style preferences
  • Growth vs. stability orientation
  • Culture fit signals
  • Skills and experience level

Constraint examples:

{
  "location": "San Francisco",
  "remote": "hybrid",
  "salary_min": 150000,
  "experience_level": "senior",
  "company_size": ["startup", "mid"]
}

Presentation Patterns

How you present recommendations matters as much as what you recommend.

Confidence-Based Presentation

High confidence (0.9+):

"This is a strong match for you. [Item] aligns well with your preference for [specific trait]."

Good confidence (0.7-0.9):

"[Item] should work well. It has [positive trait], though it's [caveat] which might not be exactly what you're looking for."

Moderate confidence (0.5-0.7):

"This one's a bit of a stretch, but [Item] might surprise you. It's [trait], which you haven't explicitly mentioned, but based on [pattern] you might appreciate it."

Low confidence (<0.5):

Generally omit, or: "If you're feeling adventurous, [Item] is quite different from your usual preferences, but [reason for including]."

Explanation Structure

For each recommendation, explain:

  1. The match - Why this fits their stated preferences
  2. The connection - How it relates to items they've liked
  3. The caveat - Any potential misalignment (if applicable)

Handling Feedback

"Tell me more" → Use /v1/explain endpoint:

POST /v1/explain
{
  "vertical": "movies",
  "item": "Parasite",
  "context": { /* same context */ }
}

"Not quite right" → Ask clarifying questions:

"What about that recommendation missed the mark? Too [X]? Not enough [Y]?"

"Something completely different" → Adjust approach:

"Let me try a different angle. If we set aside [previous focus], what are you actually in the mood for?"

See: Presentation Patterns Reference


Integration with Elicitation

The elicitation skill builds psychological profiles. Use these for richer recommendations.

From Elicitation to Profile

Self-defining memories reveal:

  • Formative experiences that shape taste
  • Emotional patterns that resonate in content
  • Identity themes (agency, communion, redemption)

Values elicitation reveals:

  • Core priorities that should be reflected in recommendations
  • What makes something feel "right"

Schema detection reveals:

  • Patterns that might influence reception
  • Topics or themes to handle carefully

Profile Construction

After elicitation, construct a profile string:

"profile": "Core value: authenticity. Drawn to narratives about
self-reinvention (redemption themes in life story). Responds to
understated emotion over melodrama. Achievement-oriented but values
creative expression over status markers. Formative memory involves
finding belonging through shared creative work—look for collaborative
or community themes."

Example Integration

  1. Use elicitation skill to understand the person
  2. Summarize findings in profile text
  3. Call recommendation API with rich context
  4. Present recommendations that connect to their story

Error Handling

Rate Limits

The API returns 429 Too Many Requests when limits are exceeded.

TierRequests/minRequests/day
Free10100
Pro605,000
Enterprise300Unlimited

Handling:

  • Check Retry-After header for wait time
  • Queue requests if hitting limits
  • Consider caching frequent queries

Authentication Errors

401 Unauthorized - Invalid or missing API key.

Handling:

  • Verify API key is set correctly
  • Check key hasn't expired
  • Ensure key has appropriate permissions

Server Errors

500+ - Server-side issues.

Handling:

  • Implement exponential backoff
  • Have fallback behavior (graceful degradation)
  • Log for debugging

See: API Reference for complete error codes.


Anti-Patterns

What NOT to do:

The Empty Context Call

Calling the API without building context first.

Instead: Always gather preferences, constraints, and history before requesting recommendations.

The Raw Dump

Presenting API response directly without personalization.

Instead: Interpret confidence scores and craft explanations that connect to the person's stated preferences.

The Overconfident Low-Score

Presenting weak matches (confidence < 0.5) with the same confidence as strong ones.

Instead: Either omit low-confidence recommendations or clearly caveat them.

The Ignored Constraint

Missing or misremembering stated constraints (budget, dietary, etc.).

Instead: Capture constraints explicitly and verify before each API call.

The Context Amnesia

Not maintaining context across conversation turns.

Instead: Accumulate preferences, history, and constraints throughout the conversation.

The Explanation Vacuum

Recommending without explaining why.

Instead: Every recommendation should include a personalized explanation connecting to stated preferences.

The Feedback Ignore

Not using negative feedback to improve subsequent recommendations.

Instead: When something misses, ask what went wrong and adjust context accordingly.


References

Detailed guides:


Quick Reference

Minimum Viable Request

POST /v1/recommend
Headers: X-API-Key: your-key

{
  "vertical": "movies",
  "context": {
    "preferences": ["at least one preference"]
  },
  "count": 5
}

Full Request

POST /v1/recommend
{
  "vertical": "movies",
  "context": {
    "preferences": ["dark comedies", "complex characters"],
    "profile": "Values authenticity. Drawn to outsider narratives...",
    "constraints": {
      "max_length_minutes": 120,
      "release_year_min": 2010
    },
    "history": [
      {"item": "Parasite", "rating": 5, "id": "tt6751668"},
      {"item": "The Lobster", "rating": 4, "id": "tt3464902"}
    ]
  },
  "count": 5,
  "explain": true
}

Confidence Quick Guide

ScoreAction
≥0.9Lead recommendation, strong match
0.7-0.9Include confidently
0.5-0.7Include with caveats
<0.5Omit or heavily caveat

Dépôt GitHub

tasteray/skills
Chemin: recommendations
0
elicitationrecommendationrecommendationssystem

Compétences associées

content-collections

Méta

Cette compétence propose une configuration éprouvée en production pour Content Collections, un outil axé sur TypeScript qui transforme des fichiers Markdown/MDX en collections de données typées de manière sûre avec une validation Zod. Utilisez-la lors de la création de blogs, de sites de documentation ou d'applications Vite + React riches en contenu pour garantir la sécurité de typage et la validation automatique du contenu. Elle couvre tout, de la configuration du plugin Vite et de la compilation MDX à l'optimisation des déploiements et la validation des schémas.

Voir la compétence

polymarket

Méta

Cette compétence permet aux développeurs de créer des applications avec la plateforme de marchés prédictifs Polymarket, incluant l'intégration d'API pour le trading et les données de marché. Elle fournit également une diffusion de données en temps réel via WebSocket pour surveiller les transactions en direct et l'activité du marché. Utilisez-la pour mettre en œuvre des stratégies de trading ou pour créer des outils traitant les mises à jour de marché en direct.

Voir la compétence

creating-opencode-plugins

Méta

Cette compétence aide les développeurs à créer des plugins OpenCode qui s'interconnectent avec plus de 25 types d'événements tels que les commandes, les fichiers et les opérations LSP. Elle fournit la structure du plugin, les spécifications de l'API événementielle et les modèles d'implémentation pour les modules JavaScript/TypeScript. Utilisez-la lorsque vous avez besoin d'intercepter, de surveiller ou d'étendre le cycle de vie de l'assistant IA OpenCode avec une logique personnalisée pilotée par les événements.

Voir la compétence

sglang

Méta

SGLang est un framework de service LLM haute performance spécialisé dans la génération rapide et structurée pour les workflows JSON, regex et agentiques grâce à son cache de préfixe RadixAttention. Il offre une inférence nettement plus rapide, particulièrement pour les tâches avec des préfixes répétés, ce qui le rend idéal pour les sorties complexes et structurées ainsi que les conversations multi-tours. Choisissez SGLang plutôt que des alternatives comme vLLM lorsque vous avez besoin d'un décodage contraint ou que vous construisez des applications avec un partage étendu de préfixes.

Voir la compétence