返回技能列表

recommendations

tasteray
更新于 2 days ago
7 次查看
18
18
在 GitHub 上查看
aiapidesign

关于

This skill integrates the TasteRay API to provide personalized recommendations across multiple domains like movies, restaurants, and products. It enables developers to rank items, explain taste matches, and build recommendation context from user conversations. Use it when you need to answer "what would I like" questions or incorporate psychological profiles into a recommendation system.

快速安装

Claude Code

推荐
主要方式
npx skills add tasteray/skills -a claude-code
插件命令备选方式
/plugin add https://github.com/tasteray/skills
Git 克隆备选方式
git clone https://github.com/tasteray/skills.git ~/.claude/skills/recommendations

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

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

GitHub 仓库

tasteray/skills
路径: recommendations
0
elicitationrecommendationrecommendationssystem

相关推荐技能

content-collections

Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。

查看技能

polymarket

这个Claude Skill为开发者提供完整的Polymarket预测市场开发支持,涵盖API调用、交易执行和市场数据分析。关键特性包括实时WebSocket数据流,可监控实时交易、订单和市场动态。开发者可用它构建预测市场应用、实施交易策略并集成实时市场预测功能。

查看技能

creating-opencode-plugins

该Skill帮助开发者创建OpenCode插件,用于接入命令、文件、LSP等25+种事件。它提供了插件结构、事件API规范和JavaScript/TypeScript实现模式,适合需要拦截操作、扩展功能或自定义事件处理的场景。开发者可通过它快速构建响应式模块来增强OpenCode AI助手的能力。

查看技能

sglang

SGLang是一个专为LLM设计的高性能推理框架,特别适用于需要结构化输出的场景。它通过RadixAttention前缀缓存技术,在处理JSON、正则表达式、工具调用等具有重复前缀的复杂工作流时,能实现极速生成。如果你正在构建智能体或多轮对话系统,并追求远超vLLM的推理性能,SGLang是理想选择。

查看技能