AI model releases, new papers, and open source projects in the past 24 hours (June 2026)
If you searched this expecting a tidy list of everything that shipped in the last day, here is the honest problem: a static page cannot answer a rolling 24-hour question. The list is already wrong by the time it loads. So this guide does two things. First it points you at the four sources where last-24h drops actually appear, live. Then it shows how to stop refreshing tabs and have a scheduled local agent pull that window for you every morning.
There is no fixed article that stays accurate for the past 24 hours. The genuinely live windows are Hugging Face recently-created models, Hugging Face Papers, arXiv cs.AI recent, and GitHub Trending (daily). The aggregators llm-stats and Price Per Token summarize releases on top of those. Read the four primaries and you have the real window.
Where last-24h drops actually surface
Three primary sources cover the three things in this question, model releases, new papers, and open source projects, and each has a way to scope it to the last day. The two aggregators are useful but read-only: you cannot bend them to the topics you care about.
| Source | What it covers | How to scope to 24h |
|---|---|---|
| Hugging Face, recently created models | Open-weight model releases the moment a repo is pushed | Sort by Recently created; anything dated today is inside the window |
| Hugging Face Papers | New papers the community is surfacing, with linked code and models | The daily list resets every morning UTC |
| arXiv cs.AI recent | Preprints announced in the last mailing cycle | The recent listing groups by announcement date; read the top date header |
| GitHub Trending (daily) | Repos gaining the most stars in the last day | The since=daily filter is the 24-hour view |
| llm-stats news (aggregator) | Hosted changelog of model releases and updates | Read-only; you cannot scope or filter it to your own interests |
| Price Per Token releases (aggregator) | Daily changelog of new model and API releases | Read-only; provider-centric, not paper or repo centric |
The catch is obvious once you do this by hand a few times: you are opening four tabs, reading the date headers, filtering out yesterday, and deduping the same release that shows up on Hugging Face and GitHub and the aggregators. That is a ten-minute chore that you will skip on the days it matters most. The fix is to make it run itself.
Turn the chore into a routine that reads your sources for you
Fazm is a native macOS app that wraps Claude Code and Codex through the Agent Client Protocol. Beyond chat, it can drive your real browser through an extension and reach native apps through macOS accessibility APIs, not screenshots. The piece that matters for this question is scheduling: the agent can create a recurring task that fires on its own, opens those four sources in your logged-in browser, and writes a deduped last-24h digest into your chat.
A daily digest routine, end to end
Because it drives your actual browser session, the routine sees the same pages you do when signed in, which matters for sources that rate-limit anonymous traffic. And because Fazm persists sessions, the routine and its output are still there after a reboot.
Building the digest in four steps
- 1
Write the prompt
Tell the agent which sources to open and to summarize only items dated in the last 24 hours.
- 2
Pick a schedule
Weekday mornings, hourly, or one-shot. The agent converts plain English into a cron or interval string.
- 3
Let it run
The routine fires, drives your browser, dedupes across sources, and writes the digest to your chat.
- 4
Audit and tune
Check run history with routines_runs, then refine the prompt or pause the routine without deleting it.
In practice you do not write any of this in a config file. You ask the agent in plain language and it calls the tool. But the underlying call looks like this, which is worth seeing because it is the part no other guide on this topic can show you:
routines_create({
name: "Last 24h AI digest",
schedule: "cron:0 9 * * 1-5", // weekdays at 9am
session_mode: "resume", // remember what was already reported
prompt:
"Open huggingface.co/models?sort=created, " +
"huggingface.co/papers, arxiv.org/list/cs.AI/recent, " +
"and github.com/trending?since=daily. List only model " +
"releases, papers, and repos dated in the last 24 hours. " +
"Dedupe items that appear on more than one source. " +
"Group by model / paper / project and keep it short.",
})The part that makes this real: routines_create
This is not a roadmap promise. The tool is defined in the open source repo at acp-bridge/src/fazm-tools-stdio.ts (the routines_create definition sits with its siblings routines_list, routines_update, and routines_runs). Three facts from that source matter for a daily digest:
- Three schedule formats. Five-field cron (
cron:0 9 * * 1-5), an interval in seconds (every:1800), or a one-shot ISO 8601 timestamp (at:2026-06-20T13:00:00Z). - Session memory is opt-in.
session_mode: "resume"keeps the ACP session across runs so consecutive digests do not repeat what they already reported. The default is a fresh session per run. - Every run is auditable. Output lands in your chat under
taskId="routine-<id>", and each execution is a row in thecron_runstable with status, tokens, cost, and timestamps, readable viaroutines_runs.
You can read all of it yourself. The repository is MIT-licensed and public at github.com/mediar-ai/fazm. That is the difference between this and a hosted tracker: the thing that fetches your news runs on your machine, in your browser, and you can read every line of how it decides what counts as the last 24 hours.
Want a digest tuned to your stack, not a generic feed?
Book a short call and we will help you wire up a routine that watches the exact sources, models, and repos you care about.
Frequently asked questions
What AI models, papers, and projects actually dropped in the past 24 hours?
That answer changes every hour, so no fixed page can hold it. The live sources are Hugging Face's recently-created models (huggingface.co/models?sort=created), Hugging Face Papers (huggingface.co/papers), arXiv's cs.AI recent listing (arxiv.org/list/cs.AI/recent), and GitHub Trending with the since=daily filter (github.com/trending?since=daily). Read those four and you have the real last-24h window. Aggregators like llm-stats and Price Per Token summarize releases on top of those.
Why is a dated roundup article a bad way to track this?
A roundup titled for a specific day is a snapshot. The moment it is published it stops updating, while the four primary sources keep moving. By the time a roundup ranks in search it is days or weeks old, and it only reflects what one author chose to include. For a rolling 24-hour question you want a live read of the source, not someone's archived summary.
How can I get a last-24h AI digest delivered to me automatically?
Build a recurring routine instead of refreshing tabs. Fazm exposes a routines_create tool to the agent. You give it a name, a prompt (for example: open Hugging Face recently-created, arXiv cs.AI recent, and GitHub Trending daily, and summarize only items dated in the last 24 hours), and a schedule like cron:0 9 * * 1-5 for every weekday at 9am. The routine fires on its own, drives your real logged-in browser, and writes the digest into your chat history.
Does the routine use a headless browser or my real one?
Fazm drives your actual browser through the extension and reaches native apps through macOS accessibility APIs, not a headless throwaway instance and not screenshots of pixels. That matters for sources that gate content behind a login or rate-limit anonymous traffic: the routine sees what you would see when signed in, because it is your session.
What schedule formats does routines_create accept?
Three. Five-field cron (cron:0 9 * * 1-5 is weekdays at 9am), a fixed interval in seconds (every:1800 is every 30 minutes), and a one-shot ISO 8601 timestamp (at:2026-06-20T13:00:00Z). The agent turns plain English like 'every weekday morning' into the right string. Set session_mode to resume if you want the routine to remember what it already reported so it does not repeat yesterday's items.
Will the routine and its history survive a Mac restart?
Yes. Fazm persists sessions and auto-restores every window with full conversation history after a restart, and routine runs are logged to a cron_runs table you can query with routines_runs (status, output text, tokens, cost, duration, timestamps). So the digest is not lost when you reboot, and you can audit exactly what each run produced.
Is Fazm itself one of these open source projects?
Yes. Fazm is MIT-licensed and the full source, including the routines code described here, is on GitHub at github.com/mediar-ai/fazm. It wraps Claude Code and Codex via the Agent Client Protocol in a native macOS app, runs locally, and you bring your own Claude Pro or Max account.
Keep reading
Open source AI projects and tools, April 17 2026 roundup
What ships after git clone, and the diagnostic the roundups skip.
AI news, model releases, papers, and open source (April 10 to 11, 2026)
A dated snapshot of the same beat this guide teaches you to automate.
Accessibility tree desktop automation
How an agent reaches your real apps through accessibility APIs instead of screenshots.
Comments (••)
Leave a comment to see what others are saying.Public and anonymous. No signup.