▌ GitHub radar
GitHub top-10: the agent that writes 90% less code
Week 2026-W25 ·
GitHub is a social network too — stars are the likes. I don't pick favorites here: I take the repositories created over the past week, sort them by stars, and publish the top ten. No editorial taste, just the numbers. This time the range runs from a 'lazy senior dev' agent with almost 10k stars down to a skill that keeps your writing from sounding like a robot.
Ponytail is a plugin for AI coding agents that makes them behave like a jaded senior who hates writing new code. Before generating anything, the agent runs a checklist: does this need to exist, can the standard library do it, is there a native feature, is a dependency already installed, can it be one line. The repo publishes benchmarks claiming 80–94% less code, 3–6× faster runs, and noticeably lower cost across several models. It plugs into Claude Code, Codex, Gemini, and others.
Why a vibe-coder should care
Drop it into your agent and it stops reinventing wheels — less code is less to maintain. Tell Claude: 'before you write anything, check whether the stdlib or an existing dependency already does this.'
MiMo-Code is Xiaomi's open-source terminal coding assistant, built as a fork of OpenCode. Its headline feature is persistent memory: it stores project context and architectural decisions in local SQLite with full-text search, so it remembers your codebase across sessions instead of starting cold every time. It switches between build, plan, and compose modes, spawns subagents for parallel work, and makes automatic checkpoints.
Why a vibe-coder should care
If you hate re-explaining your project to a fresh chat every morning, this is the pitch. Worth a look as a free, local-first alternative to the usual cloud assistants.
Omnigent is a 'meta-harness' that puts one common layer over different AI agents — Claude Code, Codex, Pi, and your own. You can swap or combine them without rewriting, run several inside one live session, and rein them in with policies and sandboxing (spend caps, approval gates). The session syncs across terminal, browser, and phone, so you can supervise agents from any device.
Why a vibe-coder should care
If you're juggling more than one coding agent, this is the universal remote. Try running Claude and Codex side by side on the same task and compare.
RoguePlanet is a proof-of-concept exploit for a race-condition bug in Windows Defender that escalates a normal user to a SYSTEM shell. The author is candid that it's flaky — 100% reliable on some machines, hit-or-miss on others — and lists exactly what it was tested on, including patched Windows 10 and 11. It doesn't work on Windows Server, where standard users can't mount ISOs.
Why a vibe-coder should care
Strictly for security folks and the curious — read it to understand how a race condition turns into privilege escalation. Not something to run on a machine you care about.
This project unlocks full Apple Intelligence on Chinese-region Macs running macOS 27 on Apple Silicon, where Apple disables it by region. A small kernel extension changes the device's region code at the hardware-registry level from China to US, so every process sees a US Mac instead of patching apps one by one. It installs with a single command and ships detailed troubleshooting for Apple's security layers.
Why a vibe-coder should care
Niche but clever — a clean look at how a single region flag gates a whole feature set. Mostly relevant if you own a Chinese-market Mac.
Kage makes truly offline copies of websites. It renders each page in headless Chrome, captures the final DOM, strips out all JavaScript, and downloads CSS, images, and fonts locally — so the mirror actually works without scripts or a connection. It can pack everything into a single ZIM file (Kiwix-compatible) or a self-contained viewer, and crawls politely with resume support.
Why a vibe-coder should care
A proper archival tool — far better than the browser's 'Save As' for keeping a readable copy of something. Point it at docs or an article you don't want to lose.
After the June 2026 supply-chain attack on the Arch User Repository — where more than 1,600 packages were poisoned via malicious npm dependencies that stole developer credentials and CI secrets — this repo consolidates the community's scattered detection scripts into one toolkit. It ships a scanner with clear clean/warning/infected exit codes and a list of the roughly 1,600 compromised packages, pulled together from gists and mailing lists.
Why a vibe-coder should care
If you run Arch, scan now — this is the consolidated answer to a live incident. For everyone else, it's a sharp reminder of how deep dependency rot can reach.
Effective-html is a set of agent skills for turning a prompt into a clean, self-contained HTML artifact — a plan, an architecture diagram, or a one-off visual. It bundles three skills (html, html-diagram, html-plan) that you install into Claude Code or Codex, leaning on an 'SVG-first, minimal prose' style so the output looks tidy without manual design work.
Why a vibe-coder should care
Great for making your agent produce a sharable diagram instead of a wall of text. Tell Claude to 'draw this architecture as an effective-html diagram' and see.
World of Claudecraft is a playable mini-MMO inspired by classic World of Warcraft, built largely with AI assistance. It has three zones, nine classes with authentic vanilla-style abilities, parties, duels, a ranked arena, and 5-player dungeons — running online with PostgreSQL accounts or offline in the browser, both off the same simulation core. Assets are procedurally generated, so there are no external files, and it self-hosts in one Docker command.
Why a vibe-coder should care
Pure 'look what's possible' candy — a readable, hackable game you can stand up yourself. Clone it for a weekend and poke at how the simulation works.
Renwei-writing ('human-flavored writing') is an agent skill that edits text without scrubbing the person out of it. It was born from a familiar frustration: each AI pass made the writing cleaner but a little less human. The repo offers a post-edit checklist — adapted from Wikipedia's guidance on spotting AI text — plus before/after case studies to help your authentic voice survive the polish.
Why a vibe-coder should care
Run your AI-polished drafts through this so they stop sounding like an AI polished them. A neat antidote to that flat, over-smoothed tone.