By Grego
I’ve been following GitHub Trending for a long time. I’ve seen frameworks jump to 50K stars overnight only to be abandoned six months later. I’ve watched hype cycles inflate and deflate around LLM wrappers, vector databases, and “autonomous agents” that weren’t particularly autonomous.
What’s happening now is different — and I think it deserves serious attention from anyone building or leading development teams in 2026.
Over the past few weeks, GitHub’s trending has been dominated by repositories with something in common: they package how to work rather than what to build. Reusable bundles of capabilities for agents. Collections of SKILL.md files. Structured workflows that your code agent can invoke on demand. At least five of the twenty fastest-growing repositories this week fall into this category — and the trend has been building since April.
The clearest signal is mattpocock/skills.
The repo that crystallized the format
Matt Pocock is a TypeScript educator — creator of Total TypeScript and former developer advocate at Vercel. In February 2026, he uploaded his personal .claude/skills/ directory to GitHub. By late April, it had accumulated 68,000 stars, ranked #2 in GitHub Trending for six consecutive days, and gained over 6,000 stars in a single day. At the time of writing, it exceeds 75,700 stars and has collected more than 6,400 in the past week — currently the AI repo with the most weekly traction on the entire platform.
What’s inside? Seventeen production engineering skills covering the complete developer workflow: planning tools like /grill-me (an intensive requirements interview), /to-prd, and /to-issues; coding skills like /tdd and /prototype; and quality tools like /improve-codebase-architecture and /diagnose.
The installation mechanism is equally relevant: npx skills@latest add mattpocock/skills/[skill-name] — turning skills from simple snippets into something more like a package manager.
But the star count is a surface-level signal. What matters is why this repo resonated so quickly with so many people.
The format itself is the insight
The SKILL.md format uses YAML frontmatter plus markdown instructions, following an open standard published by Anthropic in December 2025. Each skill packages instructions, metadata (name and description), and optional resources in a single file.
The repo puts private prompt routines into a public, versioned repository. It demonstrates how to think about decomposing engineering experience into skills invocable by agents — TDD as a skill, triage as a skill, vertical slicing as a skill.
This is a conceptual shift that I think is genuinely underestimated. For decades, engineering excellence lived in people’s heads, in wikis nobody read, in onboarding documents that became outdated on day two. What Pocock did — almost casually — was version his methodology, not just his code.
That’s what teams are now forking and adapting at scale.
The rest of trending confirms the direction
mattpocock/skills didn’t emerge in isolation. It emerged alongside a cluster of repos pointing in the same direction:
cc-switch is a cross-platform desktop assistant for Claude Code, Codex CLI, OpenCode, Gemini CLI, and Hermes Agent — a unified management layer for switching between providers and managing configurations across tools. It represents the infrastructure layer: when you’ve got multiple agents executing skills, you need a way to manage them.
github/spec-kit — a CLI toolkit from GitHub itself that implements Spec-Driven Development with commands like /speckit.constitution, /speckit.specify, /speckit.plan, and /speckit.implement. It works with Claude Code, Gemini CLI, Cursor, Codex CLI, and a dozen more agents. This is GitHub’s official answer to the question: how do you give your agent a structured way to understand a project before touching the code?
easy-vibe (from Datawhale China) has complete coverage of Claude Code’s skills system, MCP, Agent Teams, and long-running tasks — now fully multilingual in ten languages, including Spanish. The multilingual angle matters: the skills movement isn’t a Silicon Valley phenomenon. It’s global.
What this means if you lead a development team
The shift from individual AI tools toward composable, multi-agent orchestration layers is real and accelerating. But I want to be specific about what that means in practice — and avoid the mistake of turning an observation into abstract hype.
The concrete implication is this: your team’s engineering methodology is now a repository artifact.
The decisions you made about how to approach TDD, how to structure architecture reviews, how to triage issues — all of that can be coded as skills and loaded into your agents’ context on demand. The teams that are going to get the most out of agents aren’t the ones with the biggest model budgets. They’re the ones that invest in defining how they work with enough precision to make it machine-readable.
There are real caveats. The mattpocock repo is explicitly the working set of a single engineer made public — not a comprehensive catalog, not a community-contributed skills directory. Adopting someone else’s skills without adapting them to your context is the same mistake teams made copying and pasting Stack Overflow answers. The format enables exchange; it doesn’t replace judgment.
The SKILL.md standard is also still young. It’s model-centric (primarily Claude Code today), and while the community is pushing toward multi-agent portability — tools like cc-switch and spec-kit are explicitly model-agnostic — the ecosystem hasn’t quite gotten there yet.
The signal in the noise
I’m not particularly moved by star counts. But when the #1 repo trending on GitHub for a full week is a collection of 17 markdown files from an engineer’s personal workflow directory — and when that repo is surrounded by six others solving the same class of problem from different angles — that’s not hype. It’s a community converging on a solution to a real problem.
The problem: AI agents are only as good as the context you give them. Skills are the community’s answer to that problem.
For teams in Latin America, this moment has a specific advantage: the format is low-cost to adopt, language-agnostic at the tooling level, and the community is actively building multilingual resources. The gap between teams that understand this shift and those that don’t will widen quickly in the second half of 2026.
Trending is trying to tell you something. It’s worth listening to.
To explore:
mattpocock/skills— GitHub - mattpocock/skills: Skills for Real Engineers. Straight from my .claude directory. · GitHubgithub/spec-kit— GitHub - github/spec-kit: 💫 Toolkit to help you get started with Spec-Driven Development · GitHubcc-switch— GitHub - farion1231/cc-switch: A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io · GitHubeasy-vibe— GitHub - datawhalechina/easy-vibe: 💻 vibe coding 2026 | Your first modern Coding course for beginners to master step by step. · GitHub
