← All posts

AI + Dev Digest — April 16, 2026

Self-evolving agents and Claude Code tooling dominate GitHub trending as developers race to build AI that learns from its own experience.

Today's theme emerging from the developer community is unmistakable: agents that don't just execute tasks but learn from them are the new frontier. The fastest-rising repositories on GitHub right now are autonomous agent frameworks built around persistent memory, self-generated skill libraries, and adaptive behavior — a sign that agentic AI has moved firmly from concept to active construction. Alongside that trend, a growing ecosystem of Claude Code tooling reflects how seriously developers are taking the day-to-day ergonomics of working alongside AI.

A CLAUDE.md Inspired by Karpathy's Coding Observations

Andrej Karpathy has noted that LLMs tend to overcomplicate solutions, make unfounded assumptions, and silently modify unrelated code. A new repository, forrestchang/andrej-karpathy-skills, distills these observations into a single CLAUDE.md file with four operating principles: think before coding, keep solutions minimal, make only surgical changes, and define verifiable success criteria before starting. With nearly 10,000 new stars in a single day, it's clearly striking a nerve with developers who've run into exactly these frustrations when using AI coding assistants.

github.com/forrestchang/andrej-karpathy-skills

Hermes Agent: A Self-Improving Agent from Nous Research

Nous Research released Hermes Agent, an open-source framework that builds a persistent skill library from every task it completes, refining those skills over time through a closed learning loop. It supports over 200 LLM providers, can spawn isolated subagents for parallel workstreams, and reaches users across CLI, Telegram, Discord, Slack, WhatsApp, and email through a single gateway process. Memory is compressed and full-text searchable across past sessions, so the agent accumulates useful context rather than starting fresh each run. It collected over 5,500 new stars today.

github.com/NousResearch/hermes-agent

Claude Mem: Persistent Session Memory for Claude Code

A consistent frustration with AI coding assistants is the blank slate problem — every new session begins with no awareness of what came before. thedotmack/claude-mem is a Claude Code plugin that records coding activity during sessions, compresses it with AI, and reinjects the most relevant context automatically when work resumes. No external database is required; the whole thing is lightweight and self-contained. More than 2,300 developers starred it today, suggesting this is a gap many people have been quietly waiting for someone to close.

github.com/thedotmack/claude-mem

GenericAgent: The Agent That Wrote Its Own Codebase

lsdefine/GenericAgent makes a striking claim: every commit in the repository was created by GenericAgent running autonomously, without a human touching a terminal. The framework gives any LLM system-level control of a computer through nine atomic tools and a roughly 100-line execution loop, building a personalized skill tree from real task experience rather than pre-loaded capabilities. It consumes fewer than 30K context tokens per task — far below what comparable agents typically require — by crystallizing completed work into reusable skills instead of repeating reasoning from scratch each time.

github.com/lsdefine/GenericAgent

Camofox: A Headless Browser Designed for AI Agents

Agents that need to browse the real web keep hitting the same wall: Playwright and headless Chrome get fingerprinted and blocked by modern anti-bot systems. jo-inc/camofox-browser wraps Camoufox — a Firefox fork that spoofs browser fingerprints at the C++ level before JavaScript even executes — in a REST API built for agentic access. Accessibility snapshots are roughly 90% smaller than raw HTML, sessions are isolated, and deployment works via Docker or serverless platforms. For developers building agents that need to interact with the messy real web, it addresses a problem that has quietly been blocking a lot of use cases.

github.com/jo-inc/camofox-browser