What do these badges mean?
- 🚀ShippingCode exists. Multiple GitHub repos already reference this paper — people are building on it.
- 📈ClimbingCitation velocity is rising. Researchers are starting to pick it up.
- 💤QuietPublished but no notable signal yet. Most papers live here — could become anything later.
- 🎭HypeHeavy social buzz but no shipping signal. The counter-signal — defer until Twitter/X data is wired up.
- 🚀Shipping2606.13643·Jun 11, 2026·~10 mincs.CL
Recursive Agent Harnesses
Elias Lumer, Sahil Sen, Kevin Paul, Vamse Kumar Subbiah
⭐ 1.3k stars / 43 repos📚 0 citesELI5Instead of a single AI agent tackling a huge problem, spawn smaller AI agents in parallel to handle different pieces—like delegating tasks to a team. The parent agent writes code that creates and manages these child agents, each with their own tools and reasoning abilities.
Problem solvedLong-context reasoning is slow and error-prone when forced into a single agent pass. By splitting work across parallel subagents coordinated by a parent, you get faster execution and better accuracy on massive documents (up to 4M tokens) without needing a smarter base model.
- 🚀Shipping2606.13535·Jun 11, 2026·~12 minhep-excs.AIhep-ph
AgentRivet: an automated system for producing Rivet routines from journal publications
Antonio J. Costa, Caterina Doglioni, Christian Gütschow, Andrew D. Pilkington, +1
⭐ 183 stars / 21 repos📚 0 citesELI5An AI system that reads physics research papers and automatically writes code (Rivet routines) that lets physicists test new theories against real experiment data, filling a gap where 61% of papers lack this code.
Problem solvedParticle physics experiments publish findings but 61% lack the standardized code needed for comparing theories to data. Manually writing these routines is tedious and creates a backlog; automating it with LLMs speeds up analysis preservation and theory testing.
- 🚀Shipping2606.13468·Jun 11, 2026·~16 mincs.SEcs.AI
Understanding the Rejection of Fixes Generated by Agentic Pull Requests -- Insights from the AIDev Dataset
Mahmoud Abujadallah, Ali Arabat, Mohammed Sayagh
⭐ 197 stars / 30 repos📚 0 citesELI5Nearly half of code fixes generated by AI coding agents like Copilot and Claude get rejected by developers. This study analyzed why—identifying 14 specific failure modes like incomplete implementations, failing tests, and low-priority tasks—to help AI agents become better teammates.
Problem solvedAI agents waste developer time and compute resources by generating pull requests that get rejected. Understanding why fixes fail lets teams guide agents better and avoid throwing away half their work.
- 🚀Shipping2606.13449·Jun 11, 2026·~14 mincs.SEcs.AI
Toward Instructions-as-Code: Understanding the Impact of Instruction Files on Agentic Pull Requests
Ali Arabat, Mohammed Sayagh
⭐ 209 stars / 26 repos📚 0 citesELI5When developers write instruction files to guide AI coding agents (like Copilot), it doesn't automatically make those agents better at creating pull requests. Some projects see big improvements in merge rates, while others actually get worse—suggesting how you *write* the instructions matters a lot.
Problem solvedTeams using AI agents to generate code don't know if or how to write effective instruction files to improve the agent's output. This paper reveals that instruction quality varies wildly—some boost merge rates by 20%+, others tank them—highlighting the need for actual best practices in this new area.
- 🚀Shipping2606.12344·Jun 10, 2026·~13 mincs.LGcs.CL
Claw-SWE-Bench: A Benchmark for Evaluating OpenClaw-style Agent Harnesses on Coding Tasks
Mengyu Zheng, Kai Han, Boxun Li, Haiyang Xu, +12
⭐ 1.5k stars / 22 repos📚 0 citesELI5A toolkit for fairly comparing different AI agent designs on real software engineering tasks across multiple programming languages. It standardizes how agents interact with code, extract patches, and get scored so you can see which agent setup actually works best.
Problem solvedTesting AI coding agents fairly is hard because each agent design needs different handling—there's no standard way to measure them against each other. This benchmark lets you actually compare agent harnesses (the glue code that connects models to tools) on an apples-to-apples basis, including cost.
- 🚀Shipping2606.06492·Jun 4, 2026·~11 mincs.SEcs.AIcs.CL
Code2LoRA: Hypernetwork-Generated Adapters for Code Language Models under Software Evolution
Liliana Hotsko, Yinxi Li, Yuntian Deng, Pengyu Nie
⭐ 966 stars / 57 repos📚 0 citesELI5A system that automatically creates customized instruction packs (LoRA adapters) for code models based on a repository's unique style and APIs, so the model understands project-specific context without needing to include that context in every prompt.
Problem solvedCode models struggle with repository-specific knowledge (imports, APIs, conventions), requiring either massive prompt context that slows inference or expensive per-repo fine-tuning that breaks when code evolves. This solves both by pre-computing lightweight adapters.
- 🚀Shipping2606.06468·Jun 4, 2026·~10 mincs.AI
Goedel-Architect: Streamlining Formal Theorem Proving with Blueprint Generation and Refinement
Jui-Hui Chung, Ziyang Cai, Zihao Li, Qishuo Yin, +13
⭐ 1.1k stars / 32 repos📚 0 citesELI5Instead of trying to prove theorems line-by-line, this system first draws a map of all the definitions and lemmas needed, then proves them in parallel. When proofs fail, it fixes the map and tries again—like building a blueprint before constructing a house.
Problem solvedFormal theorem proving is painfully slow because systems get stuck trying dead-end proof strategies one at a time. This approach proves theorems 500x cheaper than competing systems while actually solving harder problems by planning the proof structure upfront.
- 🚀Shipping2606.06454·Jun 4, 2026·~15 mincs.SEcs.CL
Scaffold, Not Vocabulary? A Controlled, Two-Tier, Pre-Registered Study of a Popperian Code-Generation Skill
Mehmet Iscan
⭐ 237 stars / 24 repos📚 0 citesELI5A research team rigorously tested whether a popular technique (asking AI models to think like a scientist checking their own work) actually improves code quality, or if the improvements come just from having any structured format. They found the structure helps, but the specific 'scientist' approach doesn't add much beyond simpler scaffolding.
Problem solvedLLMs are increasingly used to generate code, and prompt engineering techniques claim to improve quality—but most claims rely on the LLM judging its own output, which is known to be biased. This study cuts through hype by isolating what actually works versus what just looks good to a biased judge.
- 🚀Shipping2606.06447·Jun 4, 2026·~12 mincs.CLcs.LG
Latent Reasoning with Normalizing Flows
Guancheng Tu, Xiangjun Fu, Suhao Yu, Yao Tang, +4
⭐ 1.1k stars / 37 repos📚 0 citesELI5Instead of forcing AI to write out its thinking as words (which is slow and uses lots of tokens), this method lets it think in compressed hidden patterns using a mathematical technique called normalizing flows, then output the final answer — like someone solving a math problem in their head rather than narrating every step.
Problem solvedChain-of-thought reasoning works well but wastes compute by serializing all thoughts as text tokens. This approach compresses intermediate reasoning into efficient continuous vectors while keeping the fast decoding, likelihood calculations, and left-to-right generation that make modern LLMs practical.
- 🚀Shipping2606.04967·Jun 3, 2026·~14 mincs.SEcs.AI
From Prompt to Process: a Process Taxonomy and Comparative Assessment of Frameworks Supporting AI Software Development Agents
Sanderson Oliveira de Macedo
⭐ 890 stars / 15 repos📚 0 citesELI5This paper maps out six different frameworks that use AI agents to build software, and creates a scoring system to compare how they organize work—like measuring whether they use specs, track context, assign roles, validate results, and work across different AI tools.
Problem solvedTeams using AI coding agents struggle because each framework does things differently and nobody knows which covers the full development process best. This creates confusion about which to adopt and leaves gaps in oversight, traceability, and reliability.
- 🚀Shipping2605.18747·May 18, 2026·~13 mincs.CLcs.AI
Code as Agent Harness
Xuying Ning, Katherine Tieu, Dongqi Fu, Tianxin Wei, +38
⭐ 1.3k stars / 9 repos📚 0 citesELI5Instead of treating code as just the output LLMs produce, this survey shows how code can be the central operating system for AI agents—the glue that lets them think, act, remember, and verify their work in a way humans can actually understand and check.
Problem solvedCurrent AI agents are hard to make reliable, debuggable, and controllable. Using code as the core infrastructure lets you write agent logic you can read, test, and fix—solving the black-box nature of pure neural approaches and making agents deployable in real systems.