AGENCYSCRIPT
CoursesEnterpriseBlog
πŸ‘‘FoundersSign inJoin Waitlist
AGENCYSCRIPT

Governed Certification Framework

The operating system for AI-enabled agency building. Certify judgment under constraint. Standards over scale. Governance over shortcuts.

Stay informed

Governance updates, certification insights, and industry standards.

Products

  • Platform
  • Certification
  • Launch Program
  • Vault
  • The Book

Certification

  • Foundation (AS-F)
  • Operator (AS-O)
  • Architect (AS-A)
  • Principal (AS-P)

Resources

  • Blog
  • Verify Credential
  • Enterprise
  • Partners
  • Pricing

Company

  • About
  • Contact
  • Careers
  • Press
Β© 2026 Agency Script, Inc.Β·
Privacy PolicyTerms of ServiceCertification AgreementSecurity

Standards over scale. Judgment over volume. Governance over shortcuts.

On This Page

Streaming Video: The Endless QueueWhat it is doingWhy it works, and where it strainsE-Commerce: People Who Bought ThisWhere e-commerce recommendations go wrongMusic Streaming: The Infinite PlaylistBalancing familiarity and noveltySocial Feeds: Ranking the FirehoseGrocery and Repeat Purchases: Predicting the RestockWhy repeat-purchase prediction is differentWhat the Examples Have in CommonFrequently Asked QuestionsWhy do e-commerce sites rely so much on "also bought" widgets?How do music apps recommend songs nobody has heard?Why can social feeds feel toxic?What makes grocery recommendations different from streaming?Is there one algorithm behind all these examples?Key Takeaways
Home/Blog/Five Products That Quietly Run on Recommendations
General

Five Products That Quietly Run on Recommendations

A

Agency Script Editorial

Editorial Team

Β·April 12, 2024Β·7 min read
how recommendation systems workhow recommendation systems work exampleshow recommendation systems work guideai fundamentals

The abstract version of recommendations, latent factors and embeddings and ranking funnels, only becomes vivid when you see it operating inside products you already use. The same handful of techniques shows up everywhere, but the way each product applies them, and the constraints each one faces, reveals far more than any diagram. Concrete examples are the fastest way to internalize how recommendation systems work.

This article walks through several specific scenarios across different industries. For each, we describe what the system is trying to do, which techniques fit the situation, and what made the approach succeed or run into trouble. None of these require insider secrets; they follow from the public behavior of these products and the well-understood mechanics behind them.

By the end, you should be able to look at almost any "recommended for you" feature and make an educated guess about how it works under the hood. That instinct is worth more than memorizing any single algorithm.

Streaming Video: The Endless Queue

A video platform's entire business depends on you finding something to watch before you give up and close the app.

What it is doing

The homepage is not a fixed catalog; it is a personalized ranking assembled per visit. The system predicts which titles you are most likely to start and finish, then arranges rows around themes it has learned you respond to. Even the artwork shown for a title can be personalized to the image most likely to make you click.

Why it works, and where it strains

Rich implicit signals, what you finish, what you abandon, when you watch, give these systems enormous training data. The strain shows in the feedback loop: if the system only promotes safe bets, your queue narrows and everything starts to feel the same. The strongest platforms inject deliberate variety, a point the best practices article argues is essential.

There is also a measurement subtlety unique to video. Watch time is a tempting objective, but optimizing it blindly can reward content that holds attention without satisfying anyone, the binge that leaves you feeling worse afterward. The platforms that age well treat watch time as one signal among several, balancing it against whether people return the next day and whether they actively seek out what they were shown. The takeaway generalizes: the easiest metric to collect is rarely the one that captures whether the recommendation was good.

E-Commerce: People Who Bought This

An online store wants to raise the value of every visit by surfacing items you did not come for but might still want.

The classic "customers who bought this also bought" widget is item-based collaborative filtering in its purest form. It precomputes which products are frequently purchased by the same customers, then surfaces those neighbors. It scales beautifully because product relationships change slowly, and it works even for shoppers the store knows little about. The guide to how recommendation systems work explains why item-based approaches became the e-commerce workhorse.

Where e-commerce recommendations go wrong

The failure mode here is subtle and costly: complementary versus substitute confusion. Someone who just bought a refrigerator does not want three more refrigerators recommended, yet a naive co-purchase model might surface exactly that, because refrigerators are bought by similar people. Good e-commerce systems distinguish items you might buy alongside a purchase from items that merely compete with it, often by separating pre-purchase browsing recommendations from post-purchase accessory recommendations. Getting this wrong wastes the most valuable real estate on the site, recommending something the shopper has already satisfied their need for.

Music Streaming: The Infinite Playlist

A music service faces a peculiar challenge: people listen to the same songs repeatedly, yet still want discovery.

Balancing familiarity and novelty

A good music recommender must mix songs you already love with songs you have never heard, in proportions that feel right. Lean too familiar and it is boring; lean too novel and it is jarring. These systems blend collaborative filtering, which finds listeners with similar taste, with content-based features derived from the audio itself, which helps surface obscure tracks no crowd has discovered yet. That hybrid is exactly the cold-start solution described in the framework for recommendation design.

Social Feeds: Ranking the Firehose

A social platform has the opposite of a catalog problem: too much content, all of it competing for a single ranked slot.

The feed is a ranking problem at extreme scale, choosing among thousands of candidate posts per refresh. Signals include who you interact with, what content types hold your attention, and recency. The danger here is well documented: optimizing purely for engagement can amplify provocative content, because outrage drives clicks. This is the clearest real-world case of the objective-mismatch failure covered in the common mistakes article.

Grocery and Repeat Purchases: Predicting the Restock

Grocery delivery is a fascinating outlier because most of what you want is what you already buy.

Why repeat-purchase prediction is different

Unlike movies, where re-watching is rare, groceries are dominated by repurchase. The most valuable recommendation is often simply reminding you that you are probably out of coffee. These systems lean heavily on purchase periodicity, predicting when you will need a staple again, layered with discovery suggestions for new products. It is a reminder that the best recommendation is not always the most novel one; sometimes it is the most timely.

The interesting twist is how much basket context matters. If you have added pasta and tomatoes to your cart, parmesan becomes a far better recommendation than it was a minute ago. Grocery recommenders increasingly score items against the current cart, not just your history, which turns recommendation into a real-time, in-session problem rather than a precomputed list. This blend of long-run periodicity and in-the-moment basket awareness is what makes grocery one of the more technically distinctive corners of the field.

What the Examples Have in Common

Across these very different products, the same lessons recur:

  • The technique follows the constraint: item-based filtering for stable catalogs, content features for cold starts, ranking funnels for scale.
  • The objective is everything: engagement-only optimization produces predictable pathologies, from queue fatigue to feed toxicity.
  • Hybrids dominate in practice, because no single method handles new users, new items, and rich behavior all at once.

If you want to go deeper on a single one of these, the case study on a recommender in practice follows one system from problem to measured outcome.

Frequently Asked Questions

Why do e-commerce sites rely so much on "also bought" widgets?

Because item-based collaborative filtering is reliable, scalable, and works even for shoppers the store barely knows. Product relationships change slowly, so the precomputed "bought together" associations stay valid, and they reliably lift the value of each visit by surfacing relevant add-ons.

How do music apps recommend songs nobody has heard?

They combine collaborative filtering with content-based features extracted from the audio itself. The audio features let the system understand a track's character independent of how many people have played it, so it can surface obscure songs that fit your taste before any crowd has discovered them.

Why can social feeds feel toxic?

Because optimizing purely for engagement tends to amplify provocative content, since outrage and controversy drive clicks. It is a textbook case of an objective mismatch: the metric the system maximizes is not the same as user satisfaction. Better systems add objectives and guardrails beyond raw engagement.

What makes grocery recommendations different from streaming?

Grocery shopping is dominated by repeat purchases, while streaming rewards novelty. The most valuable grocery recommendation is often a timely reminder that you are about to run out of a staple, so these systems emphasize purchase periodicity rather than pure discovery.

Is there one algorithm behind all these examples?

No. They share techniques like collaborative filtering, content features, and ranking funnels, but each product blends them differently to fit its constraints. The common thread is that the method follows the problem, and nearly all of them end up using hybrids.

Key Takeaways

  • Streaming homepages are personalized rankings built per visit, powered by rich implicit signals but vulnerable to queue fatigue.
  • E-commerce "also bought" widgets are item-based collaborative filtering, prized for scale and stability.
  • Music apps blend collaborative and content-based features to balance familiarity with discovery.
  • Social feeds are extreme-scale ranking problems where engagement-only objectives produce real pathologies.
  • Across every example, the technique follows the constraint, the objective drives the behavior, and hybrids win in practice.

Search Articles

Categories

OperationsSalesDeliveryGovernance

Popular Tags

prompt engineeringai fundamentalsai toolsthe difference between AIMLagency operationsagency growthenterprise sales

Share Article

A

Agency Script Editorial

Editorial Team

The Agency Script editorial team delivers operational insights on AI delivery, certification, and governance for modern agency operators.

Related Articles

General

Rolling Out AI Hallucinations Across a Team

Most teams discover AI hallucinations the hard way β€” a confident-sounding wrong answer makes it into a client deliverable, a legal brief, or a published report. The damage isn't just to the output; it

A
Agency Script Editorial
June 1, 2026Β·11 min read
General

Case Study: Large Language Models in Practice

Most teams that fail with large language models don't fail because the technology doesn't work. They fail because they treat deployment as a one-time event rather than a discipline β€” pick a model, wri

A
Agency Script Editorial
June 1, 2026Β·11 min read
General

Thirty-Second Wins Breed False Confidence With LLMs

Working with large language models is deceptively easy to start and surprisingly hard to do well. You can get a useful output in thirty seconds, which creates a false confidence that compounds over ti

A
Agency Script Editorial
June 1, 2026Β·10 min read

Ready to certify your AI capability?

Join the professionals building governed, repeatable AI delivery systems.

Explore Certification