The week of March 20-26, 2026 saw an unusual concentration of new AI agent frameworks on GitHub. Four projects dominated the trending charts during that week. Each represents a different philosophy of what agents should do โ from disciplined software development to deep research to offline survival to financial trading.
Note on numbers in this entry: weekly and total star counts throughout are as reported by ๆๆขAIโs weekly โAgent ๆฐๆๅบโ social-media posts at the time of each snapshot. They reflect a community ranking, not independently audited GitHub Star History data. For verification, look up each repo on Star History.
| *Source: ๆๆขAI โ Agent Weekly Hot List | ๆญๅฅAI็ฌ่ฎฐ โ DeerFlow 2.0 | Superpowers on GitHub | DeerFlow on GitHub | Project NOMAD on GitHub | TradingAgents on GitHub* |
The Leaderboard
| Rank | Project | Weekly Stars | Total Stars | What It Does |
|---|---|---|---|---|
| #1 | Superpowers | +17,540 | 130K+ | Disciplined software development methodology for coding agents |
| #2 | DeerFlow | +13,951 | 56K+ | Long-horizon SuperAgent harness (research, code, create) |
| #3 | NOMAD | +13,848 | 13K+ | Offline survival computer with local AI |
| #4 | TradingAgents | +8,939 | โ | Multi-agent LLM financial trading framework |
Stars gained (week of 3/20-3/26):
Superpowers โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ +17,540
DeerFlow โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ +13,951
NOMAD โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ +13,848
TradingAgents โโโโโโโโโโโโโโโโโโโโ +8,939
#1 Superpowers โ Teaching Agents Discipline
| Creator: Jesse Vincent (Prime Radiant) | License: MIT | Stars: 130K+ |
Most agent frameworks focus on what tools an agent can use. Superpowers focuses on how an agent should work โ enforcing a structured software development methodology instead of letting agents freestyle code.
The 7-Stage Workflow
1. Brainstorm โ Refine ideas through questioning, not coding
2. Git Worktrees โ Create isolated workspaces
3. Write Plans โ Break into 2-5 min tasks with exact specs
4. Implement โ Subagent-driven or batch execution
5. TDD โ RED โ GREEN โ REFACTOR (enforced, not optional)
6. Code Review โ Assess against the plan
7. Branch Complete โ Merge/PR options + cleanup
Why It Went Viral
The key insight: agents donโt fail because they canโt code โ they fail because they skip the steps that make code work. Superpowers prevents agents from jumping straight to implementation, forcing brainstorming, planning, and test-driven development first.
Works with Claude Code, Cursor, Gemini CLI, and other coding agents. Ships with 14+ composable skills including systematic debugging (root-cause tracing, not guessing), parallel agent dispatching, and verification-before-completion.
#2 DeerFlow 2.0 โ ByteDanceโs SuperAgent Harness
| Creator: ByteDance | License: MIT | Stars: 56K+ | Tech: Python + LangGraph + LangChain |
DeerFlow (Deep Exploration and Efficient Research Flow) is ByteDanceโs open-source SuperAgent framework โ a ground-up rewrite from v1 that hit #1 on GitHub Trending the day it launched.
Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ DeerFlow 2.0 SuperAgent โ
โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โ
โ โ Planner โ โ Sub- โ โ Skills & โ โ
โ โ (task โ โ agents โ โ Tools โ โ
โ โ decomp) โ โ (delegatedโ โ (extensible) โ โ
โ โโโโโโฌโโโโโโ โ tasks) โ โโโโโโโโโโโโโโโโ โ
โ โ โโโโโโโโโโโโ โ
โ โผ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โ
โ โ Memory โ โ Sandbox โ โ Message โ โ
โ โ (long- โ โ (Docker/ โ โ Gateway โ โ
โ โ term) โ โ K8s) โ โ (Slack/TG/ โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โ Feishu) โ โ
โ โโโโโโโโโโโโโโโโ โ
โ โ
โ Models: Doubao-Seed-2.0, DeepSeek v3.2, โ
โ Kimi 2.5, OpenAI, Claude โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Key Features
| Feature | Detail |
|---|---|
| Sandbox execution | Code runs in isolated Docker/K8s containers, not your machine |
| Long-term memory | Persists context across tasks and sessions |
| Sub-agent orchestration | Planner decomposes tasks, spawns specialized workers |
| MCP integration | Model Context Protocol for external tool access |
| IM channels | Control via Telegram, Slack, or Feishu with /new, /status, /models commands |
| Extensible skills | Add custom capabilities beyond the built-in set |
Use Cases Beyond Research
The community has extended DeerFlow for data pipeline automation, presentation generation, dashboard creation, and content workflow management โ far beyond its original research focus.
# Quick start
git clone https://github.com/bytedance/deer-flow.git
cd deer-flow && make config # Configure models
make docker-start # Launch with Docker
#3 NOMAD โ Offline Survival AI
| Creator: Chris Sherwood (Crosstalk Solutions) | License: Apache-2.0 | Stars: 13K+ |
Project N.O.M.A.D is the most unusual entry โ a self-contained, offline survival computer. It bundles local AI, 99.6GB of Wikipedia, and critical tools into a Docker-based system that works with zero internet.
Whatโs Inside
| Component | Purpose |
|---|---|
| Ollama | Local LLM runtime (run models offline) |
| Open WebUI | AI chat interface |
| Qdrant | Vector database for semantic search |
| Kiwix | Offline Wikipedia (99.6GB) |
| Tools | Maps, radio, medical references, survival guides |
Why Itโs Trending
In a world increasingly dependent on cloud AI, NOMAD asks: what if the cloud isnโt there? It packages everything youโd need for AI-assisted decision-making into a system that runs on commodity hardware with no network. The intersection of prepper culture and AI captured developersโ imagination.
#4 TradingAgents โ Wall Street in a Repo
| Creator: Tauric Research | License: Apache-2.0 |
TradingAgents simulates a professional trading firm using LLM-powered agents with specialized roles:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ TradingAgents Framework โ
โ โ
โ Analysts: โ
โ โโโ Fundamental Analyst (financials) โ
โ โโโ Sentiment Analyst (news/social) โ
โ โโโ Technical Analyst (charts/signals) โ
โ โ
โ Decision Layer: โ
โ โโโ Researcher (synthesize analysis) โ
โ โโโ Traders (diverse risk profiles) โ
โ โโโ Risk Manager (position sizing) โ
โ โ
โ Models: GPT-5.x, Gemini 3.x, โ
โ Claude 4.x, Grok 4.x, Ollama โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Supports multi-provider LLM backends (OpenAI, Google, Anthropic, xAI, OpenRouter, Ollama), backtesting with historical data, and a five-tier rating scale for trade recommendations. Treat it as a research and simulation framework, not financial, investment, or trading advice.
What This Wave Tells Us
1. Agents Are Specializing
The era of โgeneral-purpose agent frameworkโ is splitting into verticals: software development (Superpowers), research (DeerFlow), survival/offline (NOMAD), finance (TradingAgents). Each domain has unique requirements that generic frameworks canโt serve well.
2. Methodology > Tooling
Superpowersโ dominance (#1 with 130K+ stars) shows that developers care more about how agents work than what tools they have. The most impactful improvement isnโt adding more tools โ itโs enforcing disciplined processes.
3. Open Source Is the Default
All four projects are open source. ByteDance (DeerFlow) open-sourcing their internal agent framework signals that even big companies see more value in community adoption than proprietary lock-in.
4. Offline AI Is a Real Category
NOMADโs 13K+ star surge shows genuine demand for AI that works without internet โ not just for preppers, but for edge deployment, privacy-sensitive use cases, and regions with unreliable connectivity.
May 2026 Update โ Week of 5/02โ5/08 Leaderboard (per ๆๆขAI)
Six weeks later, the leaderboard had rotated. ๆๆขAI published their agent-category top 5 for the week of May 2โ8, 2026 (Episode #7 of their weekly โAgent ๆฐๆๅบโ series). Numbers below are as reported by ๆๆขAIโs social post and reflect their internal ranking method; treat as a community snapshot rather than independently audited GitHub Star History data.
| Rank | Project | Total Stars (per ๆๆขAI) | Weekly Stars (per ๆๆขAI) | Category |
|---|---|---|---|---|
| #1 | TradingAgents | ~70K | ~+15K | Finance |
| #2 | Warp | ~56K | ~+14K | Agentic Terminal |
| #3 | ruflo (Claude Flow) | ~45K | ~+2.6K | Multi-Agent Orchestration |
| #4 | Scrapling | ~47K | ~+2.6K | Web Scraping |
| #5 | Skills (mattpocock/skills) | ~63K | ~+21K | Agent Discipline Skills |
Theme captured by ๆๆขAI: โ็ป็ซฏ + ้่ + ็ฌ่ซ + ็ผๆโ (Terminal + Finance + Crawler + Orchestration).
Note on ranking: ๆๆขAIโs order isnโt pure weekly-gain โ by that metric Skills (+~21K) would be first and TradingAgents (+~15K) second. Their published order seems to weight total + weekly together. For verifiable star history, check each repo on Star History.
What Each Project Is
TradingAgents โ already profiled above. Still gaining stars six weeks later according to ๆๆขAIโs snapshot. (repo)
Warp (github.com/warpdotdev/warp) โ open-sourced its terminal client on April 30, 2026 under AGPL-3.0, with OpenAI listed as the founding sponsor. Marketed as an Agentic Development Environment (ADE) with native support for Claude Code, Codex, and Gemini CLI. The companion Oz platform orchestrates cloud agents from the terminal. Product site: warp.dev.
ruflo (github.com/ruvnet/ruflo) โ previously named Claude Flow, renamed to ruflo by creator rUv. Multi-agent orchestration platform on top of Claude Code; ships with a large suite of MCP tools and pre-defined agent roles. The projectโs own README claims notable SWE-bench numbers and API cost savings โ useful as a marketing reference, not as an independent benchmark.
Scrapling (github.com/D4Vinci/Scrapling) โ Karim Shoairโs adaptive Python web-scraping framework. Its agent-category interest comes from a built-in MCP server that lets Claude/Cursor agents extract structured content from web pages before LLM ingestion (cutting tokens and cost). The framework also advertises anti-detection features for sites with strong bot defenses โ use responsibly and within each siteโs terms of service.
Skills โ mattpocock/skills (covered in its own wiki entry: Matt Pocockโs Skills โ Claude Code for Real Engineers). Discipline skills for coding agents โ TDD, structured debugging, architecture review. The largest weekly gain in the May snapshot.
What Changed Between March and May
| Dimension | March 20โ26 | May 2โ8 |
|---|---|---|
| Top by total stars | Superpowers | TradingAgents |
| Top by weekly gain | Superpowers | Skills (mattpocock/skills) |
| Vertical mix | Software / research / survival / finance | Finance / terminal / orchestration / scraping / discipline |
| New category | Survival AI (NOMAD) | Agentic terminals (Warpโs open-source pivot) |
Three signals worth noting:
- Multi-agent orchestration is emerging as an infrastructure layer โ rufloโs traction suggests teams want a โswarm conductorโ on top of Claude Code, not just better skills inside it.
- Terminal is becoming a primary agent surface โ Warpโs open-source pivot bets that the agentic future runs in the terminal as much as in the IDE. Aligns with Boris Chernyโs phone-based workflow direction.
- Skills/discipline repos keep ranking high โ six weeks apart, two different skill repos (Superpowers, mattpocock/skills) lead by weekly gains. The discipline-skills category isnโt a one-week story.
Links
- Superpowers: github.com/obra/superpowers
- DeerFlow: github.com/bytedance/deer-flow
- NOMAD: github.com/Crosstalk-Solutions/project-nomad
- TradingAgents: github.com/TauricResearch/TradingAgents
- DeerFlow 2.0 coverage: byteiota.com
How LearnAI Team Could Use This
- Use Superpowers-style workflows as a template for coding-agent lesson plans: brainstorm, plan, test, review, and finish branches deliberately.
- Use DeerFlow as a case study for long-horizon research agents with planning, memory, sandboxes, and messaging surfaces.
- Use NOMAD to discuss local-first AI, offline knowledge bases, and resilience for low-connectivity environments.
- Use TradingAgents as a cautionary finance-agent example focused on simulation, research, evaluation, and risk controls rather than investment advice.
Real-World Use Cases
- Software teams: Enforce repeatable agent development workflows with planning, TDD, review, and branch hygiene.
- Research and content teams: Coordinate long-running research, report generation, data analysis, and presentation drafts.
- Field and offline deployments: Run local AI plus offline reference libraries where internet access is unreliable or unavailable.
- Finance education and research: Simulate multi-agent market analysis for backtesting and decision-process study, with clear non-advice disclaimers.