New AI projects on Hugging Face or GitHub, May 15 2026. Finding them is easy. Telling which ones survive is the real skill.
A trending list tells you what got attention on one day. It cannot tell you whether the project will still be maintained in June. This guide gives the honest answer to where new projects surface, then shows the one artifact that actually predicts survival: a changelog. The worked example is the open-source macOS agent Fazm, which shipped four releases on the literal date in this question, every one of them readable in a public file.
Direct answer, verified 2026-05-17
No platform publishes an official "May 15, 2026" list of new AI projects. Both Hugging Face and GitHub order discovery by a rolling trending score, not by calendar date. New projects surface continuously on three live feeds:
- huggingface.co/models sorted by trending, for weights and quantized variants.
- huggingface.co/papers/trending, for research with implementations attached.
- github.com/trending, for the agent code, harnesses, and applications.
As a verifiable example of what shipped on that exact date: the open-source agent Fazm released versions 2.9.18, 2.9.19, 2.9.20, and 2.9.21, all dated 2026-05-15, all recorded in CHANGELOG.json at the root of the repository.
The question hides a wrong assumption
Most write-ups for a dated query like this one hand you a list. Five repositories, four models, a paper or two, each with a one-line description and a star count. The list looks authoritative because it is specific. It is also close to useless a week later, and it was never the thing you actually needed.
What you needed was a way to decide. Out of everything that appeared around May 15, 2026, which projects are worth installing, depending on, or building against, and which are demos that already peaked? A static list cannot answer that. Trending is a popularity measurement taken over a rolling window. A coordinated launch, a single viral post, or a well-timed announcement spikes it cheaply, and the spike decays within days. The list you found is a photograph of a moment that has already passed.
The signal that does survive is cadence. Not how much attention a project earned on one day, but how consistently it ships over weeks. Cadence is hard to fake, it is recorded in artifacts the maintainer authors directly, and it correlates with the only thing you actually care about: will this project still exist when you need it.
Two ways to read a new project
These are not opposites you choose between. A trending feed is how you discover a project; cadence is how you decide whether to trust it. The mistake is stopping at the first one. Here is what each actually measures.
| Feature | Trending snapshot | Release cadence |
|---|---|---|
| What it measures | Stars and attention earned on one day | Commits and releases over weeks |
| How fast it goes stale | Hours. A day-old list is already wrong | Slow. Cadence is a trailing signal |
| Can it be gamed | Yes. A coordinated launch spikes stars cheaply | Hard to fake sustained shipping |
| What you actually read | A curated list someone else wrote | The repo's own CHANGELOG and commit log |
| Tells you if it is maintained | No | Yes, directly |
| Where to look | github.com/trending, Hugging Face trending | /releases, /commits, CHANGELOG.json |
Trending is fine for discovery. It is a poor basis for a decision. Use it to find candidates, then switch to cadence to filter them.
Five checks before you run anything you found this week
None of these require installing the project. They are all things you can read in a browser tab in about two minutes. The first four are the qualifying checks. The last two are the most common patterns that should make you close the tab.
The two-minute vetting pass
- Open the changelog or Releases page. Count releases in the last 30 days. Zero is a warning sign.
- Read the last five commit messages. Real fixes for user-reported bugs beat docs-and-CI churn.
- Check the license. MIT, Apache 2.0, or BSD means you can actually build on it.
- Open the dependency manifest. Exact, current pins signal an author who tracks upstream.
- One large launch commit and nothing since. The demo shipped; the project did not.
- A model card with a leaderboard score and no inference code anywhere. Skip until the code lands.
Worked example: what May 15, 2026 looked like inside one project
Fazm is a native macOS agent, open source under the MIT license, that wraps Claude Code and Codex in a desktop UI. It is a useful specimen for this exercise for one boring reason: its release history is a plain JSON file at the root of the repository, so the cadence check takes seconds. Here is the slice of that file carrying the date in this question.
Four releases in one day. Look at what they are. A freeze when opening a tab. A CPU spike from an animation running in a hidden window. Stale session data left behind by a closed window. A misleading error message from the Codex backend. False billing errors triggered by a Claude 529 overload response during an Anthropic outage. Not one of these is a feature. Every one is a specific, observed, named defect, fixed and shipped the same week it was found.
That is exactly the texture you are looking for. Headline features are easy to fake with a launch post. A steady stream of small, dated, unglamorous fixes is not, because it can only come from a project that has real users hitting real edges. The week of May 11 to 17, 2026 shows three separate release days in this one file, with four releases on the 15th alone.
The second file worth opening: the dependency manifest
After the changelog, the highest-signal file in any AI project is the dependency manifest. It tells you what the project is built on and how carefully the author tracks it. In Fazm the relevant one is acp-bridge/package.json, the manifest for the Node sub-process that connects the macOS app to the agent runtime. As of mid-May 2026 it pins @playwright/mcp at 0.0.73, @agentclientprotocol/claude-agent-acp at 0.29.2, @zed-industries/codex-acp at 0.12.0, and the usual small libraries (ws, zod).
Exact version pins on fast-moving agent infrastructure mean the author updates deliberately and tests against a known set. The opposite pattern, wildcard ranges or vendored copies of upstream packages frozen a year ago, tells you a project has stopped tracking the ecosystem it depends on. For a new project you are evaluating, the manifest answers a question the README never will: is this still being steered.
Why most "new AI projects" are statistically noise
The instinct to find more new projects is the wrong instinct. The catalog is already enormous and brutally concentrated. Hugging Face's Spring 2026 State of Open Source report put hard numbers on it.
Roughly half of all models on Hugging Face have fewer than 200 total downloads. The top 200 models, about 0.01 percent of the catalog, take 49.6 percent of all downloads. The distribution is not a gentle curve, it is a cliff. Most of what appears on a trending feed on any given day is a real upload that will never be adopted and never maintained past its first week.
This is why a dated roundup is the wrong tool. It treats every entry as equal because they all appeared in the same window. The skill worth building is the opposite of collecting: it is discarding fast. A two-minute cadence and manifest check throws out the noise before you waste an afternoon on it.
When the trending list is genuinely enough
The cadence check is not always worth running. If you are browsing for awareness, skimming what the field is excited about this week with no intention of depending on any of it, a trending feed is exactly the right amount of effort. The same is true for projects from organizations with a long, public track record: a new release from an established model lab does not need its commit log audited before you try it.
The cadence and manifest checks earn their two minutes when the decision has a cost: you are about to add a dependency, wire a tool into a workflow, or recommend something to other people. That is the moment the question stops being "what is new" and becomes "what will still be here." The two halves of this guide map cleanly onto those two questions. The companion piece on Hugging Face or GitHub for new AI projects in April 2026 covers the discovery half, the split between weights and code, in more depth.
Want help vetting an AI project before you build on it
Bring a repository or a model you are considering. In twenty-five minutes we run the cadence and manifest check together and decide whether it is worth your time.
Frequently asked questions
What new AI projects appeared on Hugging Face or GitHub on May 15, 2026?
There is no single canonical answer, because neither platform publishes a dated release list. New models, datasets, and repositories appear continuously. On any given day the honest places to look are three live feeds: huggingface.co/models sorted by trending, huggingface.co/papers/trending for papers with code attached, and github.com/trending for repositories. As a concrete and verifiable example of what 'new on May 15, 2026' actually looks like at the project level, the open-source macOS agent Fazm shipped four releases that exact day: versions 2.9.18, 2.9.19, 2.9.20, and 2.9.21, each recorded with a dated entry in CHANGELOG.json at the root of github.com/mediar-ai/fazm. That file is the kind of artifact you should be reading for any project you are considering, not a third-party roundup.
Is there an official list of AI projects released on a specific date?
No. Hugging Face and GitHub both order discovery by trending score, which is a popularity signal computed over a rolling window, not a calendar index. You cannot ask either platform 'what shipped on May 15' and get a clean answer. The closest honest substitute is each project's own dated record: a GitHub Releases page, a CHANGELOG file, or the commit history with timestamps. Those are authored by the maintainer and tied to real dates, which is why this guide treats a project's changelog as the primary source and trending lists as a secondary, lossy one.
How do I tell a maintained AI project from a launch-day spike?
Open the changelog or the Releases page and count releases in the trailing 30 days. A project that ships small, named, dated fixes every few days is alive. A repository with one large launch commit, a burst of stars, and nothing since is a demo that already peaked. Read the last five commit messages too: fixes for specific user-reported bugs signal real usage, while commits that only touch documentation, CI, or formatting signal a project coasting. Fazm is a useful reference point here because its changelog shows three separate release days in the week of May 11 to 17, 2026, with four releases on the 15th alone, all small and all fixing concrete behavior.
What did Fazm actually ship on May 15, 2026?
Four releases, all patch-level, all bug fixes. Version 2.9.18 stopped false 'out of credit' errors during Anthropic outages by handling Claude 529 overload responses without aborting other work. Version 2.9.19 pre-warmed new pop-out chat sessions for an instant first reply, made the Codex backend surface the real failure reason instead of a generic error, and added a Sign In button to the Claude Account settings card. Version 2.9.20 fixed a CPU spike from a mic indicator animating while its window was hidden, and stopped pop-out windows from leaving stale session data behind. Version 2.9.21 fixed a multi-second freeze when opening the Floating Bar tab. None of these are headline features. That is the point: this is what an ordinary Tuesday looks like for a project that is actually being used.
What does Fazm's acp-bridge depend on, and why does that matter when vetting a project?
The Node sub-process that bridges Fazm to the agent runtime declares its dependencies in acp-bridge/package.json. As of mid-May 2026 it pins @playwright/mcp at 0.0.73, @agentclientprotocol/claude-agent-acp at 0.29.2, @zed-industries/codex-acp at 0.12.0, ws at ^8.20.0, and zod at ^4.0.0. When you vet any new AI project, the dependency manifest is one of the highest-signal files in the repository. Exact, current pins tell you the author tracks upstream releases and tests against specific versions. A manifest full of vendored copies, wildcard ranges, or year-old versions tells you the opposite. You can read Fazm's manifest directly in the public repo without installing anything.
Where should I actually look for new AI projects day to day?
Three feeds cover most of it. huggingface.co/models sorted by trending shows weights and quantized variants as they gain traction. huggingface.co/papers/trending shows research with linked implementations, which is where genuinely new techniques surface before they have a polished repository. github.com/trending shows the code: agent harnesses, MCP servers, inference engines, and applications. Hugging Face and GitHub are complements, not competitors. A useful project usually has a presence on both, the model on one and the code that runs it on the other. For a deeper treatment of that split see the companion guide on Hugging Face or GitHub for new AI projects in April 2026.
Why does it matter that roughly half of Hugging Face models have under 200 downloads?
Because it reframes what 'new' means. Hugging Face's Spring 2026 State of Open Source report found that the top 200 most downloaded models, about 0.01 percent of the catalog, account for 49.6 percent of all downloads, and that roughly half of all models have fewer than 200 total downloads. The catalog is enormous and heavily concentrated. Most things you will see described as a new AI project are statistically noise: real uploads, but never adopted, never maintained past week one. A dated roundup cannot tell the difference. A changelog and a download count can. The skill worth building is not finding more new projects, it is quickly discarding the ones that will not exist in a month.
Related guides
Hugging Face or GitHub for new AI projects in April 2026
The companion guide on why the two platforms are complements, what each shipped in April, and the wire path that joins weights to code.
Best new Hugging Face models for Mac AI agents, April 2026
The agent filter applied to recent Hugging Face releases: which ones a desktop agent can actually run, and which to skip.
New LLM releases, April 2026, for Mac desktop agents
A look at the open-weight model releases that matter for a local-first agent on Apple Silicon.
Comments (••)
Leave a comment to see what others are saying.Public and anonymous. No signup.