Replace ArtificialWatch?
KINDA · weekend projectThe 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.
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
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.
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
What does the ArtificialWatch verdict mean?
The core job looks buildable, with meaningful 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 full tradeoff list before committing. This research record is not a hosted IVCIFY tool.
What price does this directory record show for ArtificialWatch?
The directory records $19.99/month for The Call, checked 2026-07-30. Verify the source before making a purchase decision. This reference stays outside retail Stack Math unless current matched evidence supports the comparison.
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?
The listed prior art includes 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). Inspect those projects before starting from a blank prompt.