Every few months, a new framework appears promising to make AI coding agents write better code. Three have risen above the noise in 2025 and 2026: Superpowers by Jesse Vincent, Agent Skills by Addy Osmani, and Matt Pocock's Skills. As of July 2026, their combined GitHub stars exceed 350,000.
But star counts do not tell you what these frameworks actually do, how they differ architecturally, or which one fits your work. After reading all three repos, their launch posts, their own comparison docs, and community discussions, here is what I found.
The Shared Problem They All Solve
AI coding agents default to the shortest path. They skip specs, rush to code, avoid writing tests, and skip security review. This is not a model limitation. The model is optimized to produce output quickly.
The result is code that looks correct but skips the practices that make software reliable. Senior engineers learned decades ago that process matters: spec before code, tests before features, review before merge. AI agents have not learned this, and so far no model improvement has taught it, because the model is optimizing for the wrong thing.






