Can AI replace ArtificialWatch?

KINDA · weekend project
price $19.99/moyou'd save $239.88/yrbuild time one sitting for the poller, a weekend to make it trustworthycategory 📡 rss & researchreplaced by 0 peoplebuild unverified

The core loop is a genuine one-sitting build: poll the model-list endpoint of every provider you hold a key for, diff the ids against a local table, push the new ones to your phone. What does not one-shot is the three things a launch alert is actually judged on. Coverage · your script sees only the labs you have accounts with, while the watchlist here runs to 48 models including Chinese labs, restricted previews and things that have not shipped at all, which no API returns. Telephony · a call that rings until you answer means Twilio, a purchased number and US A2P 10DLC registration, which is days of paperwork before a line of code. And uptime, which is the whole product · a poller on a laptop that slept through the drop is worth nothing, and the second-sweep debounce that keeps preview aliases from crying wolf is the part you only tune after it has already cried wolf twice.

the prompt
Build me a new-AI-model launch alerter to replace ArtificialWatch. Requirements:

- Node 22 + node-cron + better-sqlite3, one process on a small VPS under pm2 so
  it never sleeps · a laptop that naps misses the launch.
- Every 60 seconds, GET the model-list endpoints for the keys in .env: OpenAI
  /v1/models, Anthropic /v1/models, Google generativelanguage /v1beta/models,
  and OpenRouter /api/v1/models, which covers labs I have no account with.
- Store every model id ever seen in SQLite. A launch is an id new to that table
  · seed it on first run so the first sweep is silent.
- Debounce: an id fires only after two consecutive sweeps, and ids matching a
  regex list in config.json (dated snapshots, -preview, -latest) never fire.
- Alert by POSTing to an ntfy.sh topic: model id as the title, provider plus
  context window and per-token price as the body, link to the provider's docs.
- Append each confirmed launch to launches.md as `YYYY-MM-DD · provider · id`.
- One page on localhost:8080: last 50 launches, last good sweep per provider,
  red banner when a provider has errored 10 minutes · a silent poller is worse
  than none.
- Out of scope: SMS and phone calls (Twilio plus US A2P 10DLC registration is
  paperwork, not code) and any watchlist of unshipped models.
- README with the four .env keys and the pm2 command.

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

why people still pay

Because the failure mode is asymmetric. A launch alerter that works 95% of the time is not 95% as good, it is worthless on the one morning it matters, and that is exactly the morning your VPS got rate limited or your ntfy topic was muted. Paying moves the pager duty to someone else, buys the labs you have no account with, and buys a phone that rings instead of a notification that stacks under forty others. At $19.99 it is priced against the AI subscriptions it watches, which is the comparison buyers actually make.

what you lose

xcoverage of labs you hold no key for · 48 tracked models including Chinese labs and restricted previews

xthe phone call that rings until you answer, and SMS · Twilio plus US A2P 10DLC registration

xthe pre-launch watchlist and live Polymarket odds on models that have not shipped, which no API can return

xdebounce and alias filtering tuned so dated snapshots and -preview ids do not fire false alarms

xsomeone else owning the uptime · your poller sleeps when your machine does

prior art · use these instead of building, if you'd rathermodels.devopen-source database of AI models, providers and pricing · the data layer a DIY watcher can diff againstchangedetection.ioself-hosted page-change monitoring with notifications · covers the docs and pricing pages an API cannot
share on X ↗"I just replaced ArtificialWatch ($19.99/mo) with one prompt"
questions
Can AI replace ArtificialWatch?

Kinda. The core of ArtificialWatch is buildable in a weekend with the prompt on this page, but there are real gaps: coverage of labs you hold no key for · 48 tracked models including Chinese labs and restricted previews, the phone call that rings until you answer, and SMS · Twilio plus US A2P 10DLC registration. Read the honest list above before committing.

How much does ArtificialWatch cost?

ArtificialWatch costs about $19.99/month (The Call, checked 2026-07-30), which is $239.88 per year.

What do I lose by replacing ArtificialWatch?

Honestly: coverage of labs you hold no key for · 48 tracked models including Chinese labs and restricted previews; the phone call that rings until you answer, and SMS · Twilio plus US A2P 10DLC registration; the pre-launch watchlist and live Polymarket odds on models that have not shipped, which no API can return; debounce and alias filtering tuned so dated snapshots and -preview ids do not fire false alarms; someone else owning the uptime · your poller sleeps when your machine does. If any of those are load-bearing for you, keep paying.

Is there an open-source alternative to ArtificialWatch?

Yes — models.dev (open-source database of AI models, providers and pricing · the data layer a DIY watcher can diff against), changedetection.io (self-hosted page-change monitoring with notifications · covers the docs and pricing pages an API cannot). Using prior art is also a valid exit; the prompt is for when you want it exactly your way.