account-research
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
\"Implement content-based recommendation by matching item features to user preference profiles. Use this skill when the user needs to recommend items based on attributes, solve the cold start problem for new items, or build recommendations without collaborative data — even if
$ npx -y skills add charlieviettq/awesome-agent-skill --skill algo-rec-content --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/algo-rec-contentContext preview
The summary Claude sees to decide when to auto-load this skill.
\"Implement content-based recommendation by matching item features to user preference profiles. Use this skill when the user needs to recommend items based on attributes, solve the cold start problem for new items, or build recommendations without collaborative data — even if
name: "\"algo-rec-content\"" description: "\"Implement content-based recommendation by matching item features to user preference profiles. Use this skill when the user needs to recommend items based on attributes, solve the cold start problem for new items, or build recommendations without collaborative data — even if they say 'recommend similar products', 'items like this', or 'feature-based matching'.\"." allowed-tools: Read, Glob, Grep
Content-based filtering recommends items whose features match the user's preference profile, built from their interaction history. Computes in O(I × F) per user where I=items, F=features. Solves new-item cold start since items only need features, not interaction history.
**Trigger conditions:**
**When NOT to use:**
IRON LAW: Content-Based Can Only Recommend SIMILAR Items It cannot discover unexpected interests (filter bubble problem). Users who only interact with action movies will only get action movie recommendations — even if they'd love a documentary.
Extract item feature vectors (TF-IDF for text, one-hot for categories, numerical for attributes). Build user profile from weighted item features of interacted items. **Gate:** Item features extracted, user profile vector built.
1. Represent each item as a feature vector 2. Build user profile: weighted centroid of interacted item vectors (weight by recency, rating, or engagement) 3. Compute similarity between user profile and all candidate items (cosine similarity) 4. Rank by similarity score, exclude already-interacted items
Evaluate: does the recommendation list reflect the user's demonstrated preferences? Check diversity metrics. **Gate:** Recommendations are topically aligned with user history.
Return ranked recommendations with feature-level explanations.
{
"recommendations": [{"item_id": "456", "score": 0.87, "matching_features": ["genre:thriller", "director:Nolan"]}],
"metadata": {"method": "content-based", "features_used": 15, "profile_items": 30}
}**Input:** User watched 5 sci-fi movies, 2 documentaries. Candidate: new sci-fi movie. **Expected:** High score (~0.8+) due to genre match with dominant preference.
| Input | Expected | Why | |-------|----------|-----| | New user, no history | Cannot build profile | New-user cold start — use popularity | | All items same features | Equal scores | No differentiation possible | | User with diverse history | Moderate scores for all | Profile averages dilute signal |
Curated skill pack for LLM agents in engineer and science workflow (Cursor & Claude ready).
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
Evaluate LLM agents and tool-using workflows—task success, tool accuracy, latency/cost, safety, and regression suites. Use when shipping agent features,…
Design agent tools and CLI surfaces—schemas, naming, errors, idempotency, and discoverability for LLM callers. Use when defining tools for agents, SDKs, or…
\"Implement and select ad bidding strategies from manual CPC to automated target-CPA and target-ROAS. Use this skill when the user needs to choose a bidding…
\"Optimize advertising budget allocation across campaigns using marginal returns analysis. Use this skill when the user needs to distribute budget across…
\"Build CTR prediction models for estimating ad click-through rates from features. Use this skill when the user needs to predict click probability, build an ad…