← All posts

AI + Dev Digest — July 21, 2026

An AI agent engineering textbook rockets up the charts, a free gateway aggregates 271 providers, and a Rust-built coding harness uses 27MB where competitors use 386MB.

Today's top GitHub projects reveal an AI ecosystem busy solving its own growing pains: the field has enough production deployments now that education, cost management, persistent memory, and resource efficiency all make the trending list simultaneously.

AI Agent Book: From LLM Primitives to Multi-Agent Systems

Li Bojie's open-source book "Deep Understanding of AI Agents: Design Principles and Engineering Practice" shot to the top of GitHub Trending today with over 4,400 new stars — the largest single-day gain on the platform. The book frames agents around the formula "Agent = LLM + Context + Tools" and walks through ten chapters of progressive concepts, from context engineering and RAG through model training, self-evolution, and multi-agent coordination. What makes it stand out is the accompanying 88 runnable code experiments (over 70 independently executable), available in Chinese, English, Traditional Chinese, Tamil, and Vietnamese. If you've been assembling agent knowledge from scattered blog posts, this is a structured alternative.

github.com/bojieli/ai-agent-book

OmniRoute: One Endpoint, 271 AI Providers, No Bill

OmniRoute is a local-first AI gateway that sits between your coding tools and the AI APIs you use, routing requests across 271+ providers through a single OpenAI-compatible endpoint. It handles automatic fallback when rate limits hit, distributes load across provider tiers, and offers 18 routing strategies including cost-optimized, weighted, and pipeline modes. The headline claim is roughly 1.4 billion free tokens per month by aggregating free tiers across 39 provider pools. On top of routing, it bundles 11 composable token compression engines that the project claims save an average of 89% of prompt tokens while preserving code, URLs, and JSON byte-perfectly. It supports 26 coding agents including Claude Code, Cursor, and Copilot, and runs entirely locally with AES-256-GCM encrypted API keys and no telemetry.

github.com/diegosouzapw/OmniRoute

Cognee: Persistent Long-Term Memory for AI Agents

Most AI agents forget everything between sessions. Cognee addresses this by building a self-hosted knowledge graph that persists across conversations, combining vector embeddings for semantic search with graph structure for relationship reasoning. Data ingested in any format gets unified into a single repository that agents can query later to recall past context, reuse successful patterns, and operate with accumulated domain knowledge. The project recently posted strong benchmark numbers — a score of 0.79 on the BEAM benchmark at 100K tokens, ahead of the previous state of the art of 0.735 — and supports deployment on PostgreSQL with Docker, with official clients for Python, Rust, and TypeScript.

github.com/topoteretes/cognee

jcode: A Coding Agent Harness Built for Efficiency

jcode is a Rust-based coding agent harness that makes resource consumption a first-class concern. With local embeddings disabled it uses roughly 27.8 MB of RAM per session; comparable tools land between 140 and 386 MB. Time to first frame is 14 milliseconds against a field ranging from 383 to 3,436 ms, and opening ten parallel sessions costs only about 10 MB extra each. Beyond raw efficiency, it adds a semantic memory layer for automatic context recall across sessions, multi-agent swarm coordination for parallel task execution, browser automation through a Firefox bridge, and a self-development mode where the agent can modify its own source code. It supports Claude, OpenAI, Gemini, GitHub Copilot, and over 20 additional providers.

github.com/1jehuang/jcode