One open-source agent just hit 200,000 stars

New data point that stopped me cold: one of these open-source AI projects is sitting at 200,000 GitHub stars, and another at 143,000. Those aren’t startup vanity numbers. They’re the kind of adoption that tells you where developers are actually spending their nights and weekends. I came across all of this in a roundup from Matthew Berman, the creator who spends his weekends digging through GitHub so the rest of us don’t have to, and he packed 12 projects into one video.

What caught my attention isn’t any single tool. It’s the pattern. The expert who curated this list keeps landing on the same idea over and over: stop buying finished apps, start handing your AI agent a ‘skill’ or a ‘harness’ and let it do the heavy work. That shift is the real story here.

The big picture

Most of these projects fall into three buckets, and once you see them this way the whole list clicks:

  • 🧭 Skills you bolt onto an agent. Matt Pocock’s skills (143k stars) teach your agent to write code the way a senior engineer does. Garry Tan’s G Stack (114k) turns your coding agent into a full engineering team with a think-plan-build-review-ship process. Anthropic Cybersecurity Skills (near 20k) plug in six real security frameworks like MITRE ATT&CK and NIST so your agent can harden your codebase.
  • 🛠️ Agent harnesses that run for hours. ByteDance’s Deer Flow (74k) is built for long-horizon tasks, orchestrating sub-agents, memory, and sandboxes for jobs that run for hours or days. Hermes (200k) leans hard into self-healing, fixing its own skills when they fail.
  • 🎬 Media and code engines. Open Montage (15k) turns an agent into a video production studio. Hyperframes from Heygen (30k) renders HTML and CSS into clean MP4s. Voicebox (33k) is voice cloning plus transcription, fully local.

The original poster’s point is that the agent is the worker, and these repos are the training and tooling that make it competent.

Three ways to put this to work

  1. Make your agent understand a giant codebase. Codebase Memory MCP (12k) indexes an average repo in milliseconds and the full Linux kernel, 28 million lines, in three minutes. It answers structural questions in under a millisecond and uses 120 times fewer tokens. If your agent keeps getting lost in a big project, this is the fix the creator points to.
  2. Build video and audio without a production team. Open Montage handles research, scripting, asset generation, and editing across 12 pipelines, from explainers to cinematic trailers. Palmier Pro (8k) is a free, AI-native video editor for macOS that your agent can control through MCP. Pair either with Voicebox for narration you actually own.
  3. Read and process documents fast. Baidu’s Unlimited OCR is a brand-new open-weights vision model, only about 6.5 GB, that doesn’t just read a PDF but knows where each piece of text sits on the page and can highlight it. The mind behind it solved a genuinely hard problem: understanding content and its exact location at the same time.

Tips and pitfalls

Here’s where I want you to slow down. The most important project in the whole list is the one Matthew admits he almost buried at the bottom: Nvidia’s Skill Spector (under 10k stars). It’s a security scanner for AI agent skills, checking for 65 vulnerability patterns across 16 categories, including prompt injection, data exfiltration, and supply chain attacks.

Think about the workflow these projects encourage. You copy a URL, paste it into your agent, and say ‘install it.’ That convenience is also the risk. A skill is just instructions your agent will trust and run. So the practical rule from this roundup writes itself:

  • Scan every skill before you install it. Run it through Skill Spector first. It accepts repos, URLs, zip files, and single files.
  • Start with the high-trust sources. Anthropic, Nvidia, ByteDance, and a known educator like Matt Pocock are safer first steps than a random repo.
  • Match the tool to the job. A harness like Deer Flow or Hermes is overkill for a quick task. Reach for it when you have something that genuinely runs for hours.
  • Watch your token bill. The reason the contributor behind Codebase Memory MCP brags about 120x fewer tokens is that agent costs add up fast. Efficiency is a feature, not a footnote.

One more thing I appreciated: a lot of these run locally. Voicebox and Unlimited OCR both work on your own machine, which keeps your data off someone else’s servers and your costs near zero.

Why this matters

What I took away is that the gap between ‘I have an AI assistant’ and ‘I have an AI team’ is now just a handful of free repos. The expert who pulled this list together is basically showing the new starter kit: a harness to run long jobs, skills to make the agent skilled, a memory engine so it understands your code, a scanner so you don’t get burned, and media tools so it can ship real output.

Go watch the full video for the install steps and live demos on each one. The creator walks through them faster and shows the interfaces in action, so it’s worth the watch before you start plugging things into your agent.

Scroll to Top