Agentic frameworks ate GitHub trending: openclaw at 283k, superpowers at 113k

4 min read 20 sources clear_take
├── "Local, inspectable agent frameworks are beating hosted closed runtimes on developer attention"
│  ├── top10.dev editorial (top10.dev) → read below

The editorial argues the AI-coding stack has bifurcated into hosted opaque agents (Copilot Workspace, Cursor, Devin) versus local agent frameworks you run yourself. The six-figure star counts for openclaw and superpowers — both in the local/inspectable camp — show developers are voting with stars for runtimes they can read, fork, and version.

│  ├── openclaw (GitHub) → read

Pitches itself as 'Your own personal AI assistant. Any OS. Any Platform' — explicitly positioning as a local-first runtime that runs on the user's own hardware across Windows, macOS, and Linux rather than a hosted service.

│  └── anomalyco/opencode (GitHub) → read

Brands itself simply as 'The open source coding agent' — the open/inspectable framing directly contrasts with closed hosted alternatives and accumulated 118.5k stars on that pitch alone.

├── "The frontier has shifted from chat wrappers to structured agent execution surfaces (runtimes + skills)"
│  ├── top10.dev editorial (top10.dev) → read below

Argues the absence of any new VS Code plugin or 'AI for your codebase' chat wrapper in the top tier is itself the signal. The two breakout repos — a runtime (openclaw) and a skills layer (superpowers) — show the action has moved to giving agents real execution surfaces rather than another autocomplete UI.

│  ├── obra (Jesse Vincent) (GitHub) → read

Frames superpowers as 'an agentic skills framework & software development methodology that works' — explicitly codifying the search/plan/edit/verify patterns practitioners have hand-rolled for 18 months. The pitch is structure and methodology, not another chat interface.

│  └── affaan-m/everything-claude-code (GitHub) → read

Describes itself as 'the agent harness performance optimization system' covering skills, instincts, memory, security, and research-first development — a meta-framework about tuning the execution surface itself rather than building a new UI on top.

├── "Agentic workflow platforms are now production infrastructure, not experiments"
│  ├── langgenius/dify (GitHub) → read

Bills itself as a 'production-ready platform for agentic workflow development' at 131.7k stars — the production-ready framing signals that agent infrastructure has matured past the experimental AutoGPT-style proof-of-concept phase.

│  ├── n8n-io/n8n (GitHub) → read

Positions as a workflow automation platform with 'native AI capabilities' and 400+ integrations at 178.2k stars. The framing treats AI agents as one more component in a long-running integrations stack rather than a standalone novelty.

│  └── langflow-ai/langflow (GitHub) → read

Self-describes as 'a powerful tool for building and deploying AI-powered agents and workflows' at 145.4k stars. The deploy-focused language reinforces that agent platforms are now treated as deployable infrastructure components.

├── "Local model runtimes are the substrate enabling the local-agent boom"
│  ├── ollama/ollama (GitHub) → read

At 164.5k stars and explicitly listing support for Kimi-K2.5, GLM-5, MiniMax, DeepSeek, gpt-oss, Qwen and Gemma, ollama makes the case that local model serving is now turnkey. This is what makes local agent frameworks like openclaw viable in the first place — you can't run an agent on your laptop without something running the model.

│  └── NousResearch/hermes-agent (GitHub) → read

Pitched as 'the agent that grows with you' from a lab known for open-weights models — reinforces the thesis that the agentic stack is being built on top of inspectable, local-runnable model infrastructure rather than API-gated services.

└── "The original autonomous-agent vision (AutoGPT) has been overtaken by more structured successors"
  └── Significant-Gravitas/AutoGPT (GitHub) → read

Still trending at 182.3k stars on its 'accessible AI for everyone' mission, but the newer breakouts — openclaw at 283.1k, superpowers at 113.5k — frame agents around structured skills, runtimes, and methodology rather than AutoGPT's open-ended loop. The torch has visibly passed from autonomous-loop ambition to disciplined execution surfaces.

What happened

GitHub trending this week tells a story that two years of LangChain conference talks didn't: the agentic-framework era has arrived, and it's measured in six-figure star counts. openclaw — a personal-AI-assistant framework pitched as 'any OS, any platform, the lobster way 🦞' — is sitting at 283.1k stars, behind only freeCodeCamp (437.9k) among trending repos. Right behind it, Jesse Vincent's `obra/superpowers` — billed as 'an agentic skills framework & software development methodology that works' — crossed 113.5k.

These aren't curriculum repos. They aren't awesome-lists. They're runnable code: openclaw is a local-first agent runtime targeting Windows, macOS, Linux, and (per its own claims) anywhere you can install a Node binary. superpowers is a skills layer that plugs into Claude Code and similar agentic harnesses, codifying patterns for multi-step coding work — search, plan, edit, verify — that practitioners have been re-implementing by hand for eighteen months.

The pattern matters because of what's *not* on the list. No new VS Code plugin cracked the trending top tier this cycle. No "AI for your codebase" chat wrapper. The two biggest non-curriculum repos are both about giving agents real, structured execution surfaces — runtimes and skill libraries — rather than another autocomplete UI.

Why it matters

The AI-coding stack has been bifurcating for a year, and these two repos are the clearest snapshot of where the split landed. On one side: hosted, opaque agents (Copilot Workspace, Cursor's background agents, Devin) — closed runtimes you rent. On the other: local, inspectable agent frameworks you run yourself, with skills you can read, fork, and version. openclaw and superpowers are both in the second camp, and the star velocity says the second camp is winning on developer attention if not yet on revenue.

Look at what each is actually solving. openclaw answers the question "how do I run a real agent on my laptop, on my OS, with my files, without a cloud round-trip for every tool call?" It's the descendant of every "local LLM + tools" experiment from the past two years, but with enough polish that 283k people pressed the star button. superpowers answers a different question: "once I have an agent loop, what *skills* do I plug into it?" — and codifies a methodology (the README's word: methodology, not framework) for how a senior engineer would actually break down a multi-step task.

The community signal in the comments under both repos splits cleanly. The skeptics — and there are loud ones — point out that star counts overstate adoption: stars are bookmarks, not deployments, and an agentic framework with no shipped product behind it is a graveyard waiting to happen. The believers point at the opposite data: when curriculum repos and joke awesome-lists historically dominated trending, executable agent frameworks couldn't crack the top 20. Now two of them are top-three. That's a regime change in what developers are *trying to build*, regardless of what they ship.

There's also the Jesse Vincent factor on superpowers. Vincent (obra) has been in this space long enough — Best Practical, Perl mail tooling, then Claude Code adjacent work — that the framework reflects real production experience, not a weekend hackathon. The README is unusually blunt about what doesn't work: skills that try to be too general, agents without verification loops, frameworks that prescribe instead of describing. That's the kind of opinionated documentation that makes a framework load-bearing, not a curiosity.

What this means for your stack

If you've been waiting for the agentic-framework space to consolidate before betting on one, this week is a signal — though not yet a verdict. Two things to do this quarter.

First, audit your existing "AI-in-the-loop" code paths. If you've built bespoke prompt-chain glue inside an internal tool — the "we wrote our own little agent" pattern that's now everywhere — compare your loop to what superpowers prescribes. The methodology section is short enough to read in 20 minutes, and if your homegrown version is missing the verification step, you have a known-bad pattern in production. Don't rewrite on top of someone else's framework yet; do steal the methodology.

Second, if you're evaluating local-first agent runtimes for a desktop or internal-tools use case, openclaw is now serious enough to bench. Run it against whatever you're using (LangGraph, AutoGen, your own loop) on the same three tasks: a multi-file refactor, a bug repro from a stack trace, and a "read this codebase and explain X" cold start. The 283k stars don't tell you it's better than your current stack — they tell you 283k people thought it was worth checking, and the cost of a one-day bench is small relative to picking the wrong runtime for the next two years.

The harder call: should you start *publishing* skills back upstream? superpowers is structured as a skills marketplace in spirit, even if the on-ramp is rough. If your team has an internal skill — say, "safely run a migration against staging, verify row counts, post to Slack" — it's worth asking whether that's better as a private prompt or a public, versioned skill that earns you reputation and pulls fixes from the community.

Looking ahead

The trending list will rotate, as it always does. But the bigger question — whether agentic frameworks become the new "web framework" tier of the developer stack, with consolidation around two or three winners — is the one to watch through the next two quarters. If openclaw and superpowers are still in the trending top ten in October, the answer is yes, and the next round of dev-tools VC theses will be written against that fact. If they fade, the lesson is that the hosted-agent vendors won the war for production, even as they lost the war for stars.

GitHub 455254 pts 46156 comments

freeCodeCamp/freeCodeCamp trending with 437.9k stars

freeCodeCamp.org's open-source codebase and curriculum. Learn math, programming, and computer science for free.

→ read on GitHub
GitHub 389331 pts 81821 comments

openclaw/openclaw trending with 283.1k stars

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

→ read on GitHub
GitHub 284193 pts 25423 comments

obra/superpowers trending with 113.5k stars

An agentic skills framework & software development methodology that works.

→ read on GitHub
GitHub 255069 pts 38213 comments

affaan-m/everything-claude-code trending with 115.1k stars

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

→ read on GitHub
GitHub 243957 pts 50387 comments

NousResearch/hermes-agent trending with 115.5k stars

The agent that grows with you

→ read on GitHub
GitHub 206236 pts 26944 comments

anomalyco/opencode trending with 118.5k stars

The open source coding agent.

→ read on GitHub
GitHub 203899 pts 60628 comments

n8n-io/n8n trending with 178.2k stars

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

→ read on GitHub
GitHub 199351 pts 76298 comments

tensorflow/tensorflow trending with 194.1k stars

An Open Source Machine Learning Framework for Everyone

→ read on GitHub
GitHub 191534 pts 42079 comments

microsoft/vscode trending with 182.5k stars

Visual Studio Code

→ read on GitHub
GitHub 187239 pts 46247 comments

Significant-Gravitas/AutoGPT trending with 182.3k stars

AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.

→ read on GitHub
GitHub 183636 pts 13553 comments

avelino/awesome-go trending with 167.1k stars

A curated list of awesome Go frameworks, libraries and software

→ read on GitHub
GitHub 180530 pts 17780 comments

ollama/ollama trending with 164.5k stars

Get up and running with Kimi-K2.5, GLM-5, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models.

→ read on GitHub
GitHub 178506 pts 9721 comments

firecrawl/firecrawl trending with 110.4k stars

🔥 The API to search, scrape, and interact with the web for AI

→ read on GitHub
GitHub 169779 pts 21847 comments

f/prompts.chat trending with 151.0k stars

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

→ read on GitHub
GitHub 155289 pts 24520 comments

langgenius/dify trending with 131.7k stars

Production-ready platform for agentic workflow development.

→ read on GitHub
GitHub 154529 pts 10061 comments

langflow-ai/langflow trending with 145.4k stars

Langflow is a powerful tool for building and deploying AI-powered agents and workflows.

→ read on GitHub
GitHub 142224 pts 31896 comments

vercel/next.js trending with 138.2k stars

The React Framework

→ read on GitHub
GitHub 138524 pts 8559 comments

microsoft/PowerToys trending with 130.3k stars

Microsoft PowerToys is a collection of utilities that supercharge productivity and customization on Windows

→ read on GitHub
GitHub 138215 pts 8031 comments

iptv-org/iptv trending with 112.6k stars

Collection of publicly available IPTV channels from all over the world

→ read on GitHub
GitHub 128163 pts 12472 comments

Chalarangelo/30-seconds-of-code trending with 127.2k stars

Coding articles to level up your development skills

→ read on GitHub

// share this

// get daily digest

Top 10 dev stories every morning at 8am UTC. AI-curated. Retro terminal HTML email.