← All posts

AI + Dev Digest — June 24, 2026

Garry Tan's 810× agent toolkit, a C-binary code intelligence MCP server, ByteDance's super-agent platform, and AI stock analysis top GitHub trending.

Today's GitHub trending is a study in what happens when experienced engineers decide to build the infrastructure AI agents actually need rather than just use them. The common thread across the day's top repos: persistent memory, clearly defined roles, and production-grade execution environments — the unglamorous work that turns a promising demo into something that runs reliably at 3am.

gstack: Garry Tan Turns Claude Code Into a 23-Role Engineering Team

YC's president and CEO Garry Tan shipped gstack as an MIT-licensed, 30-second-install toolkit that gives Claude Code structured roles — CEO for product planning, a designer, an engineering manager, QA lead, security officer, and release engineer. Twenty-three skills cover the full product lifecycle from /plan-ceo-review to /land-and-deploy, with OWASP + STRIDE security audits baked into /cso. Tan claims the system pushed his logical code output to roughly 810× his 2013 baseline while working part-time — a number that will raise eyebrows but reflects what serious prompt engineering plus a structured workflow actually looks like in practice. Over a thousand new stars today, and the license is fully open with no paid tier.

github.com/garrytan/gstack

codebase-memory-mcp: A Single C Binary That Gives AI Agents Long-Term Code Memory

The premise is simple but the engineering is not: AI coding agents spend enormous context windows just figuring out where things live in a codebase. DeusData's codebase-memory-mcp is a single static C binary that parses a repo into a persistent knowledge graph using tree-sitter ASTs, covering 158 languages, and serves 14 MCP query tools so agents can ask "what calls ProcessOrder?" in under a millisecond rather than grepping through thousands of files. The claimed 99% token reduction is dramatic but plausible — if an agent already knows the call graph, it doesn't need to read every file. The Linux kernel (28 million lines) indexes in three minutes. It added 1,300 stars today and integrates out of the box with Claude Code, Cursor, VS Code, and ten other agents.

github.com/DeusData/codebase-memory-mcp

DeerFlow 2.0: ByteDance's Production-Grade Super-Agent Harness

ByteDance's DeerFlow is built for tasks that take minutes to hours rather than seconds — sandboxed execution environments, parallel sub-agents that decompose complex goals and synthesize results back to a lead agent, and persistent long-term memory across sessions. Built on LangGraph with a TypeScript frontend, it connects to messaging platforms like Telegram, Slack, and WeChat so agents can surface results wherever teams actually work. Version 2.0 launched in February and the project has remained near the top of GitHub since; it picked up 739 more stars today. The explicit "production infrastructure, not research prototype" framing is the tell — this is designed to run continuously, unsupervised, not just for demos.

github.com/bytedance/deer-flow

daily_stock_analysis: Real-Time AI Across Multiple Markets

Trending at nearly 48,000 total stars with over 1,100 new today, ZhuLinsen's daily_stock_analysis combines live news ingestion, multi-market data feeds, and an AI decision dashboard for automated stock analysis and alerts. The specific pattern isn't novel — AI plus financial data pipelines have existed for years — but the sustained star velocity suggests it's hitting a moment where retail investors are actively seeking self-hostable tools they can run themselves rather than subscribe to. The Python codebase keeps the barrier to entry low enough to adapt and extend.

github.com/ZhuLinsen/daily_stock_analysis