REPLACEMENT BRIEF

social media

Can AI replace Wholana?

EDITORIAL ANSWERKINDACurated prompt

Scrape a watchlist of creators nightly, compute each creator's rolling median views, and surface the videos that beat their own baseline.

Build the personal version →

AT A GLANCE

price
$5/mo
listed annual price
$60/yr
replaceable scope
Scrape a watchlist of creators nightly, compute each creator's rolling median views, and surface the videos that beat their own baseline.
build time
a weekend

what AI can build

Scrape a watchlist of creators nightly, compute each creator's rolling median views, and surface the videos that beat their own baseline.

The core idea is simple arithmetic: a video's views divided by that creator's own median. An agent can build that for a watchlist of creators you pick, over a weekend, on top of a paid scraper API. What it cannot hand you is the corpus, hundreds of thousands of videos already scraped, deduped, and labeled against a curated craft taxonomy, which is what makes search across creators useful instead of a list of your own bookmarks. So: yes for watching 25 creators you already know, no for finding the ones you don't.

The prompt was editor-reviewed; no completed build is recorded.

The honest tradeoff

why people still pay

The arithmetic is free, the data is not. A personal build only ever knows about the creators you thought to add, and you pay the scraper bill every month to keep even that fresh. The subscription is renting a corpus that was already collected and labeled, plus the discovery that only exists once videos from creators you have never heard of are sitting in the same index.

what you lose

the cross-creator corpus

search across videos you never chose to watch

a curated craft taxonomy instead of labels you invented

semantic and hybrid search

subject classification

creator equity and track-record views

someone else absorbing the scrape cost and keeping it running

EVIDENCE LEDGER

What this page can prove

The verdict judges replaceability. The evidence level records what DeepFeather actually checked.

Read the methodology →
evidence level
Curated prompt

The prompt was editor-reviewed; no completed build is recorded.

replacement boundaryScrape a watchlist of creators nightly, compute each creator's rolling median views, and surface the videos that beat their own baseline.

known limits · the cross-creator corpus; search across videos you never chose to watch

editorial reviewawaiting manual review
Build promptreviewed prompt · not run

the prompt

Curated prompt
Build me a personal TikTok outlier tracker to replace Wholana. Requirements:

- A nightly Node script (node-cron) that pulls recent videos for up to 25 handles listed in
  handles.txt, using a TikTok scraper actor on Apify, token in .env. Do not scrape TikTok
  directly, you will be blocked inside a day.
- Store videos in SQLite via better-sqlite3: handle, video id, url, caption, posted date,
  views, likes, comments, shares, date first seen. Upsert on video id so a re-scrape
  updates metrics instead of duplicating rows.
- Per creator, keep a rolling median of views over their last 30 videos and score each
  video as views divided by that median. 3x or higher is a breakout. Skip creators under
  10 videos, the median is noise below that.
- Label each breakout with one LLM call (Anthropic or OpenAI, key in .env): caption plus
  the first 15 seconds of subtitles from yt-dlp, returning one hook type from a fixed list
  of 12 in hooks.json. Fixed list, not free text, or nothing groups.
- A page on localhost:3000 (Express, server-rendered HTML, Chart.js): last 7 days of
  breakouts sorted by score, filterable by handle, each row showing score, views, hook
  type, and a link, plus a per-creator sparkline of views over time.
- A save button per row that writes the video into a swipe collection and appends it to
  swipe.md, so my picks survive the database.
- Localhost only. No accounts, no telemetry, everything on my machine except the Apify and
  LLM calls.
- Out of scope: search across creators I am not already tracking, and a shared craft
  taxonomy. Do not build auth, multi-user workspaces, or hosting config.
- README: Apify token and actor id, the cron entry, and the cost per 1,000 videos scraped.
  The scraper bill, not the code, is what makes people quit this build.
Copy or open in an agent

The prompt stays readable first. Choose a launch option when you are ready.

$ open in your agent (prompt prefilled, you press enter) or copy it raw

BUILD FEEDBACK

Did you try this build?

Report the outcome. Submissions enter a manual evidence queue and never auto-upgrade the verdict.

questions

Can AI replace Wholana?

Possibly for a narrower core workflow, but this catalog judgment is not a verified build. Expected gaps include: the cross-creator corpus, search across videos you never chose to watch. Validate the prompt against your own acceptance criteria before committing.

How much does Wholana cost?

Wholana is listed at about $5/month (Personal, checked 2026-07-31), or $60 per year. This is a pricing reference, not evidence of a completed replacement or realized savings.

What do I lose by replacing Wholana?

Honestly: the cross-creator corpus; search across videos you never chose to watch; a curated craft taxonomy instead of labels you invented; semantic and hybrid search; subject classification; creator equity and track-record views; someone else absorbing the scrape cost and keeping it running. If any of those are load-bearing for you, keep paying.

Is there an open-source alternative to Wholana?

Yes — TikTokApi (Unofficial Python wrapper for TikTok's web endpoints; gets you raw metrics, not a corpus, and breaks when TikTok changes). Using prior art is also a valid exit; the prompt is for when you want it exactly your way.