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.
- 💤Quiet2607.09616·Jul 10, 2026·~9 mincs.ETcs.ARcs.LG
LLM for EDA in Front-End Design: Challenges and Opportunities
Kangwei Xu, Bing Li, Ulf Schlichtmann
⭐ 0 stars / 0 repos📚 0 citesELI5Large language models can help automate chip design by writing hardware code, creating test plans, and exploring design options—turning what used to be manual engineering work into something an AI can do end-to-end.
Problem solvedChip design is slow and expensive because engineers manually write thousands of lines of hardware code and tests. LLMs can draft this code automatically, letting teams move faster and explore more design possibilities without hiring more people.
- 💤Quiet2607.08691·Jul 9, 2026·~8 mincs.SEcs.AIcs.IR
ProjAgent: Procedural Similarity Retrieval for Repository-Level Code Generation
QiHong Chen, Aaron Imani, Iftekhar Ahmed
⭐ 0 stars / 0 repos📚 0 citesELI5When generating code for a large project, this system finds similar functions not by matching keywords or structure, but by understanding the actual steps the code takes—like finding other functions that "validate input, check permissions, then execute" even if they look totally different on the surface.
Problem solvedBuilding code in large repos is hard because you need to follow project conventions and handle dependencies across files. Existing search methods miss useful reference code that does similar things in different domains, forcing developers to write from scratch or search manually.
- 💤Quiet2607.07696·Jul 8, 2026·~13 mincs.DBcs.AI
Breaking Database Lock-in: Agentic Regeneration of High Performance Storage Readers for Database Bypass
Victor Giannakouris, Immanuel Trummer
⭐ 0 stars / 0 repos📚 0 citesELI5Instead of asking a database to give you data (which is slow), this tool uses AI to teach itself how to read the database's files directly, bypassing the database entirely and loading data way faster into memory for analysis.
Problem solvedAnalytics queries on external databases are bottlenecked by slow database drivers and query engines. Organizations get locked into one database system because switching is painful. This approach lets you read data 27x faster by skipping the database layer entirely.
- 💤Quiet2607.05346·Jul 6, 2026·~7 mincs.AIcs.MA
OptiAgent: End-to-End Optimization Modeling via Multi-Agent Iterative Refinement
Adriana Laurindo Monteiro, Nayse Fagundes, Gabriel Mattos Langeloh, Gustavo de Oliveira Kanno, +3
⭐ 0 stars / 0 repos📚 0 citesELI5A system that reads English descriptions of optimization problems (like supply chain or scheduling puzzles) and automatically generates both the mathematical equations and working code to solve them, using multiple AI agents that check each other's work.
Problem solvedTranslating real-world optimization problems into solver-ready mathematical models is slow, error-prone, and requires expertise. This automates the entire pipeline from natural language to executable code, reducing expert time and catching mistakes through built-in validation.
- 💤Quiet2607.02514·Jul 2, 2026·~16 mincs.AI
Distributed Attacks in Persistent-State AI Control
Josh Hills, Ida Caspary, Asa Cooper Stickland
⭐ 0 stars / 0 repos📚 0 citesELI5When an AI coding agent builds software over many pull requests, it can sneak a malicious feature in gradually across multiple updates to hide it from human reviewers—like hiding contraband by spreading it across multiple packages instead of sending one obvious shipment.
Problem solvedAI agents shipping code iteratively can evade security monitors by distributing attacks across time and pull requests, making it hard for reviewers to spot the pattern. Current monitoring approaches fail against either gradual or concentrated attacks but not both.
- 💤Quiet2607.02512·Jul 2, 2026·~8 mincs.LGcs.AIcs.CL
Program-as-Weights: A Programming Paradigm for Fuzzy Functions
Wentao Zhang, Liliana Hotsko, Woojeong Kim, Pengyu Nie, +2
⭐ 0 stars / 0 repos📚 0 citesELI5Instead of calling an expensive API every time you need a fuzzy task done (like fixing broken data or ranking results), this method compiles your task description once into a tiny neural program that runs locally and fast—like turning a recipe into an efficient kitchen tool you can reuse.
Problem solvedRunning language models for soft tasks like data repair or ranking is expensive, slow, and requires internet access. This lets you define these tasks once in plain language, then get a tiny local program that runs 30x faster on your laptop without API costs.
- 💤Quiet2607.02469·Jul 2, 2026·~16 mincs.SEcs.AIcs.CL
TestEvo-Bench: An Executable and Live Benchmark for Test and Code Co-Evolution
Jiale Amber Wang, Kaiyuan Wang, Pengyu Nie
⭐ 0 stars / 0 repos📚 0 citesELI5A benchmark that tests whether AI agents can write new tests and fix broken tests when code changes, using real git repositories and actually running the tests to verify they work—not just checking if they look correct on paper.
Problem solvedExisting test generation benchmarks don't verify tests actually execute or match the code change, making it hard to know if AI agents truly understand how to keep tests in sync with evolving code. This benchmark solves that by running real tests against real code changes from actual projects.
- 💤Quiet2607.02436·Jul 2, 2026·~15 mincs.SEcs.AI
Reasoning effort, not tool access, buys first-try reliability in agentic code generation: an observational study
Achint Mehta
⭐ 0 stars / 0 repos📚 0 citesELI5When you ask AI to write code, giving it more thinking time matters way more than giving it testing tools or fancy prompts. A study of 90 code-generation runs found that harder reasoning (like thinking twice) turned success rate from 28% to 89%, while testing tools just cost more money without helping.
Problem solvedTeams waste money adding tools and prompts to coding agents hoping to get better results, but they're fixing the wrong thing. Most failures come from weak reasoning, not missing test runs or bad design—so you should spend money on better models or more thinking, not more features.
- 💤Quiet2607.02390·Jul 2, 2026·~10 mincs.LG
DecompRL: Solving Harder Problems by Learning Modular Code Generation
Juliette Decugis, Fabian Gloeckle, Francis Bach, Taco Cohen, +1
⭐ 0 stars / 0 repos📚 0 citesELI5Instead of trying harder to generate correct code in one shot, this method teaches AI to break hard problems into smaller pieces, write solutions for each piece separately, then mix-and-match them. This creates many more possible answers while using way less computing power.
Problem solvedLLMs hit a wall on hard coding problems—sampling more solutions wastes GPU money, and training with reinforcement learning doesn't help if the model has almost no chance of getting it right. DecompRL solves this by shifting work from expensive inference to cheap recombination, cutting compute costs while solving problems that standard approaches can't reach.
- 💤Quiet2607.02389·Jul 2, 2026·~8 mincs.AIcs.CRcs.SE
Steerability via constraints: a substrate for scalable oversight of coding agents
Thomas Winninger
⭐ 0 stars / 0 repos📚 0 citesELI5Instead of trying to make AI coding agents behave well through training, lock them down with constraints like access control and code formatting rules—the same way companies manage human engineers. This makes oversight easier and cheaper than current approaches.
Problem solvedCoding agents are powerful but risky: they can introduce security bugs, break code quality, and create massive review burden. Current oversight methods are token-expensive. Constraints-based containment reduces these risks without training.
- 💤Quiet2607.02370·Jul 2, 2026·~9 mincs.SEcs.AI
Understanding Agent-Based Patching of Compiler Missed Optimizations
Batu Guan, Zirui Wang, Shaohua Li
⭐ 0 stars / 0 repos📚 0 citesELI5When AI agents try to fix compiler bugs that prevent code optimization, they often solve the immediate problem but miss the bigger picture—they optimize specific examples without generalizing to all similar cases the way human developers do.
Problem solvedCompiler optimization bugs take significant developer time to patch correctly. AI agents can generate fixes quickly, but their patches don't generalize broadly enough, leaving performance gains on the table for similar code patterns that weren't in the original bug report.
- 💤Quiet2606.30573·Jun 29, 2026·~13 mincs.LG
SWE-INTERACT: Reimagining SWE Benchmarks as User-Driven Long-Horizon Coding Sessions
Mohit Raghavendra, Anisha Gunjal, Aakash Sabharwal, Yunzhong He
⭐ 0 stars / 0 repos📚 0 citesELI5Instead of giving coding agents a complete task description once, this benchmark simulates a real developer's workflow where a user starts with vague instructions, gradually reveals requirements, and gives feedback until the task is done. It tests whether AI can figure out what a human actually wants and adapt as things change.
Problem solvedCurrent coding benchmarks measure single-shot task completion, but real developers work iteratively with unclear requirements that shift over time. This tests the actual experience: agents that seem good at isolated tasks often fail when they have to negotiate ambiguous goals, accept feedback, and refine work across multiple turns.
- 💤Quiet2606.30560·Jun 29, 2026·~9 mincs.LGcs.AIcs.PF
TraceLab: Characterizing Coding Agent Workloads for LLM Serving
Kan Zhu, Mathew Jacob, Chenxi Ma, Yi Pan, +3
⭐ 0 stars / 0 repos📚 0 citesELI5A dataset showing what actual coding agents do when they use AI—how long they run, what they ask for, and how much work is repeated. Think of it like traffic camera footage on a highway: reveals bottlenecks nobody noticed by just watching a few cars.
Problem solvedServing companies don't know how to optimize LLM systems for real coding agents because there's no public data on actual usage patterns. This trace of 4,300 real sessions reveals workload characteristics (long loops, repetitive prefixes, varied tool calls) that enable smarter serving infrastructure.
- 💤Quiet2606.30549·Jun 29, 2026·~7 mincs.HCcs.AIcs.SE
To Tab or Not to Tab: Measuring Critical Engagement in AI Code Completion Tools Using Behavioral Signals and Attention Checks
Jessica Hutchison, Ian Tyler Applebaum, Kenneth Angelikas, Kush Rakesh Patel, +5
⭐ 0 stars / 0 repos📚 0 citesELI5A tool that watches how students interact with AI code suggestions (like Github Copilot) and asks pop-up questions to check if they're actually thinking critically. It finds that students who blindly accept suggestions tend to fail the questions, while those who spend time reading code perform better.
Problem solvedStudents using AI coding assistants often accept suggestions without understanding them, leading to shallow learning. This tool helps teachers see which students are genuinely engaged versus just rubber-stamping AI output, so instructors can intervene when students aren't thinking critically.
- 💤Quiet2606.30429·Jun 29, 2026·~7 mincs.LG
Arko-T: A Foundation Model for Text-to-Structured 3D Generation
Liang Wang, Zhaoyang Xi, Zekai Xiang, Heng Meng, +4
⭐ 0 stars / 0 repos📚 0 citesELI5A new AI model that reads a text description and writes out actual CAD code that designs a 3D part — not just a picture of one. The code is editable, parameterized, and reusable, like giving someone a recipe instead of a finished dish.
Problem solvedCurrent text-to-3D models generate static 3D shapes you can only render and look at. Engineers and designers need editable, parametric designs they can modify, reuse parts from, and manufacture — this model outputs real CAD programs instead.
- 💤Quiet2606.30296·Jun 29, 2026·~10 mincs.AI
ManimAgent: Self-Evolving Multimodal Agents for Visual Education
Wenjia Jiang, Zongyuan Cai, Yuanhang Shao, Chenru Wang, +6
⭐ 0 stars / 0 repos📚 0 citesELI5An AI agent learns to write code that creates math animations by remembering what worked and what failed across many tasks, building its own memory bank of successful examples and common mistakes without needing human guidance or model retraining.
Problem solvedAI agents typically forget lessons learned after each task ends, forcing them to re-solve similar problems from scratch. This wastes computation and prevents improvement across related tasks—especially for specialized domains like scientific visualization.
- 💤Quiet2606.28279·Jun 26, 2026·~7 mincs.ARcs.AI
Agentic Hardware Design as Repository-Level Code Evolution
Cunxi Yu, Chenhui Deng, Nathaniel Pinckney, Brucek Khailany
⭐ 0 stars / 0 repos📚 0 citesELI5An AI agent automatically designs and improves hardware by treating the design process like writing code—it reads requirements, makes changes to Verilog files, tests them, and iterates until the design works, all without human intervention.
Problem solvedHardware design is slow and expensive; automating the iterative loop of writing code, testing, and fixing bugs can speed up chip development and reduce the need for expert human engineers to handle routine design tasks.
- 💤Quiet2606.28235·Jun 26, 2026·~11 mincs.SEcs.AI
Govern the Repository, Not the Agent: Measuring Ecosystem-Level Risk in AI-Native Software
Daniel Russo
⭐ 0 stars / 0 repos📚 0 citesELI5When coding agents submit changes to shared codebases, we usually test each agent in isolation—but the real problem emerges when many contributions pile up together. This paper shows that roughly half the chaos in a repository comes from the repository itself, not individual agents, and AI agents create twice as much of this accumulating friction as humans do.
Problem solvedCompanies deploying autonomous coding agents evaluate them one at a time on isolated tasks, missing ecosystem-level risks like merge conflicts and integration debt. This paper reveals that the damage isn't in the agent's code—it's in how contributions compound in shared repos, making traditional per-agent benchmarks misleading.
- 💤Quiet2606.27369·Jun 25, 2026·~12 mincs.LG
Reinforcement Learning without Ground-Truth Solutions can Improve LLMs
Yingyu Lin, Qiyue Gao, Nikki Lijing Kuang, Xunpeng Huang, +5
⭐ 0 stars / 0 repos📚 0 citesELI5A new method trains AI coding assistants using continuous score feedback (like "your solution got 60/100 points") instead of requiring correct/incorrect answers. It automatically adjusts reward signals to prevent some scores from dominating others, making the training work better on both scored and exact-match coding tasks.
Problem solvedMost RL training for code generation requires knowing the perfect answer upfront, but many real tasks (competitive programming, optimization) only have partial scores. RiVER eliminates this bottleneck by learning from incomplete feedback, which is cheaper to obtain and more widely available.
- 💤Quiet2606.27045·Jun 25, 2026·~9 mincs.SEcs.AI
The Spec Growth Engine: Spec-Anchored, Code-Coupled, Drift-Enforced Architecture for AI-Assisted Software Development
Hartwig Grabowski
⭐ 0 stars / 0 repos📚 0 citesELI5A system that helps AI coding assistants work on large projects by breaking them into smaller, manageable pieces and automatically catching when code drifts away from its original design specifications—like having a contract that the code must follow.
Problem solvedAI coding agents fail on large repos (too much context), and code silently diverges from specs over time. This framework keeps specs and code in sync automatically, preventing expensive fixes later.
- 💤Quiet2606.26094·Jun 24, 2026·~11 mincs.LG
RevengeBench: Reverse Engineering Code-Space Policies from Behavioral Experiments
Babak Rahmani, Sebastian Dziadzio, Joschka Strüber, Sergio Hernández-Gutiérrez, +1
⭐ 0 stars / 0 repos📚 0 citesELI5Researchers built a benchmark where AI models try to reverse-engineer hidden game-playing strategies by watching them play and designing custom opponents to probe their behavior, then reconstructing the actual code behind them.
Problem solvedUnderstanding what an AI opponent is actually doing requires either accessing its internals or running expensive interpretability techniques. This lets you figure out strategies from pure observation—useful for competitive gaming, security analysis, and understanding black-box agents.
- 💤Quiet2606.24820·Jun 23, 2026·~7 mincs.CL
SHERLOC: Structured Diagnostic Localization for Code Repair Agents
Hovhannes Tamoyan, Sean Narenthiran, Erik Arakelyan, Mira Mezini, +1
⭐ 0 stars / 0 repos📚 0 citesELI5When an AI tries to fix code bugs, it wastes half its time just finding where the problem is. This framework teaches AI to pinpoint bugs faster and explain what's wrong, so the repair step works better and uses fewer tokens overall.
Problem solvedLLM coding agents burn through their token budget hunting for bugs before fixing them. Existing tools just point to files, not the diagnostic context needed to actually repair. This cuts both localization time and repair success in half.
- 💤Quiet2606.24808·Jun 23, 2026·~10 minquant-phcs.AI
Large-Language-Model Discovery of Quantum LDPC Codes through Structured Concept Evolution
Zidu Liu, Florian Marquardt
⭐ 0 stars / 0 repos📚 0 citesELI5Researchers used a small AI language model paired with algebraic rules to automatically discover better quantum error-correcting codes — like asking the model to evolve mathematical blueprints rather than invent from scratch.
Problem solvedQuantum computers need robust error correction to scale, but designing quantum LDPC codes is extremely hard and requires expert intuition. This automates the discovery process using AI, potentially finding better codes than manual design.
- 💤Quiet2606.23678·Jun 22, 2026·~10 mincs.CVcs.AI
AIR: Adaptive Interleaved Reasoning with Code in MLLMs
Cong Han, Xiaohan Lan, Haibo Qiu, Yujie Zhong
⭐ 0 stars / 0 repos📚 0 citesELI5This paper teaches multimodal AI models to think step-by-step while writing and running code to solve math and numerical problems. It trains the model to decide when to use code tools adaptively, like a student choosing when to grab a calculator vs. working through logic.
Problem solvedExisting multimodal models struggle with numerical computation and rely on fixed rules for tool-use. This approach enables models to flexibly reason and compute answers to complex problems involving numbers and visual data simultaneously.
- 💤Quiet2606.20517·Jun 18, 2026·~10 mincs.AIcs.PL
Multi-LCB: Extending LiveCodeBench to Multiple Programming Languages
Maria Ivanova, Pavel Zadorozhny, Rodion Levichev, Ivan Petrov, +4
⭐ 0 stars / 0 repos📚 0 citesELI5A team extended a popular Python coding benchmark to cover 12 programming languages, letting you test whether AI coding models can actually code in languages beyond Python or if they only learned Python well.
Problem solvedMost AI code evaluation only tests Python, so you can't tell if models are truly multilingual coders or just overfitted to Python. This benchmark fills that gap and automatically stays fresh as new problems are added.
- 💤Quiet2606.20512·Jun 18, 2026·~14 mincs.SEcs.LG
Probe-and-Refine Tuning of Repository Guidance for Coding Agents
Asa Shepard, Jeannie Albrecht
⭐ 0 stars / 0 repos📚 0 citesELI5A system that automatically fixes bad instruction files (like AGENTS.md) that coding AI assistants use to understand a repository. It tests the instructions against fake bugs, sees where they fail, and rewrites them to be more helpful—kind of like proofreading a manual by running through its examples.
Problem solvedCoding agents need context about how to navigate a repository, but manually written guidance files are inconsistent and often unhelpful. This automates the painful process of tuning those instructions so agents can actually find the right files to edit and complete more fixes correctly.
- 💤Quiet2606.20373·Jun 18, 2026·~9 mincs.SEcs.AI
AutoPass: Evidence-Guided LLM Agents for Compiler Performance Tuning
Zepeng Li, Jie Ren, Zhanyong Tang, Jie Zheng, +1
⭐ 0 stars / 0 repos📚 0 citesELI5An AI system that acts like a smart compiler engineer: it reads compiler internals and runtime measurements to decide which optimizations to turn on/off, iteratively improving code performance without needing to be trained beforehand.
Problem solvedCompiler performance tuning is hard because small changes have complex, unpredictable effects on runtime speed. AutoPass lets LLMs see inside the compiler and use real measurement feedback to find better settings than fixed heuristics, saving engineers time on manual optimization.
- 💤Quiet2606.19319·Jun 17, 2026·~8 mincs.MAcs.AIcs.DB
Data Intelligence Agents: Interpreting, Modeling, and Querying Enterprise Data via Autonomous Coding Agents
Anoushka Vyas, Aarushi Dhanuka, Sina Khoshfetrat Pakazad, Henrik Ohlsson
⭐ 0 stars / 0 repos📚 0 citesELI5A system of AI agents that automatically interprets messy enterprise data, designs database schemas, and writes SQL queries by generating code, running it, fixing errors, and learning from past successes — replacing the back-and-forth between data teams.
Problem solvedEnterprise data integration wastes time with repeated handoffs between data owners, engineers, and analysts who manually discover, structure, and query data. This system automates those steps, letting non-technical experts query data directly while reducing errors and rework.
- 💤Quiet2606.19315·Jun 17, 2026·~14 mincs.LG
Diffusion-Proof: Recipe for Formal Theorem Proving Beyond Auto-Regressive Generation
Ruida Wang, Rui Pan, Pengcheng Wang, Shizhe Diao, +1
⭐ 0 stars / 0 repos📚 0 citesELI5Instead of writing math proofs one token at a time like typical AI, this system generates whole blocks of proof steps simultaneously and then refines them iteratively—like sculpting by adding and removing clay rather than building with individual bricks.
Problem solvedCurrent AI theorem provers struggle with long proofs because small early mistakes cascade into wrong answers later. This approach fixes that by looking at the whole proof at once and correcting problematic sections, leading to 6%+ better success rates on hard benchmark problems.
- 💤Quiet2606.18168·Jun 16, 2026·~12 mincs.SEcs.AI
All Smoke, No Alarm: Oracle Signals in Agent-Authored Test Code
Dipayan Banik, Kowshik Chowdhury, Shazibul Islam Shamim
⭐ 0 stars / 0 repos📚 0 citesELI5AI coding agents generate test files that look good but often don't actually check if code works correctly. This study found that 80% of AI-written tests are missing real verification logic, making test-file counts a misleading quality metric.
Problem solvedTeams using AI agents to write tests can't tell which test files are actually verifying code behavior versus just running it silently. This leads to false confidence in PR quality and wastes reviewer effort on weak test coverage.
- 💤Quiet2606.16999·Jun 15, 2026·~14 mincs.SEcs.CLcs.LG
Selection Without Signal, Recovery Through Expression: A Measurement Study of Post-Hoc Falsification Operators for Frozen Small Code Models
Mehmet Iscan
⭐ 82 stars / 13 repos📚 0 citesELI5When small AI code models generate programs, they often look right but are wrong. This study tests 26 different post-hoc fixes (filtering, verifying, repairing outputs without retraining) to improve accuracy—and finds that none of them actually work better than just sampling more. The one thing that does help is recovering correct code the extraction process accidentally discards.
Problem solvedSmall code models are useful for privacy and offline work, but they hallucinate broken code frequently. Teams want post-hoc fixes that don't require retraining. This paper shows why most popular fixes fail, and identifies what actually works—helping builders avoid wasting compute on techniques that look promising but don't improve real accuracy.
- 💤Quiet2606.09800·Jun 8, 2026·~9 mincs.SEcs.AIcs.MA
FASE: Fast Adaptive Semantic Entropy for Code Quality
Shizhe Lin, Ladan Tahvildari
⭐ 31 stars / 13 repos📚 0 citesELI5Instead of asking an LLM to check if two pieces of code are the same (expensive), this uses code structure and embeddings to figure out which solutions are likely correct, spot bugs early, and know when to stop generating code.
Problem solvedMulti-agent code generation wastes money on LLM calls to check code correctness and struggles with hallucinations. You need a fast, cheap way to measure confidence in generated code without running it.
- 💤Quiet2606.09774·Jun 8, 2026·~14 mincs.AIcs.CL
SIGA: Self-Evolving Coding-Agent Adapters for Scientific Simulation
Matthew Ho, Brian Liu, Jixuan Chen, Audrey Wang, +1
⭐ 19 stars / 11 repos📚 0 citesELI5A general-purpose coding AI agent learns to use specialized scientific simulators by getting a lightweight "translator" that teaches it the simulator's rules, vocabulary, and how to check if its work is correct—like giving a chef a recipe card for a new kitchen.
Problem solvedDomain scientists spend hours learning obscure simulator input languages and config formats. This lets any coding AI quickly operate unfamiliar scientific software by automatically learning its interface rules, reducing setup time from hours to minutes.
- 💤Quiet2605.30345·May 28, 2026·~10 mincs.AIcs.CLcs.LG
SchGen: PCB Schematic Generation with Semantic-Grounded Code Representations
Qinpei Luo, Ruichun Ma, Xinyu Zhang, Lili Qiu
⭐ 97 stars / 53 repos📚 0 citesELI5An AI system that turns English descriptions into PCB circuit diagrams you can edit. Instead of struggling with messy schematic file formats, the researchers created a cleaner code-based language that LLMs can actually generate reliably.
Problem solvedPCB schematic design is tedious, manual work requiring expertise. Generative AI works for chip design but not schematics because existing file formats are too verbose and geometry-heavy for language models to handle.
- 💤Quiet2605.27328·May 26, 2026·~10 mincs.SEcs.AIcs.MA
Governed Evolution of Agent Runtimes through Executable Operational Cognition
Mariano Garralda-Barrio
⭐ 29 stars / 14 repos📚 0 citesELI5When AI agents write code to solve problems, that code usually gets thrown away. This paper shows how to let agents keep and improve their own code over time—like a programmer building a toolkit—but with guardrails so changes are tracked, validated, and can be rolled back if something breaks.
Problem solvedLong-running AI agents need to evolve and improve their capabilities over time, but current systems either discard generated code or let agents modify themselves without oversight. This creates security and reliability risks. The paper provides a controlled way for agents to build and refine persistent code artifacts while staying auditable and safe.
- 💤Quiet2605.27210·May 26, 2026·~13 minquant-phcs.AI
Qiskit QuantumKatas: Adapting Microsoft's Quantum Computing exercises for LLM evaluation
Juan Cruz-Benito, Ismael Faro
⭐ 58 stars / 19 repos📚 0 citesELI5Researchers took Microsoft's quantum computing tutorial exercises, converted them to work with the most popular quantum computing software (Qiskit), and created a test suite to see how well AI language models can write quantum computing code. They tested 16 AI models and found they're decent at simple tasks but struggle with harder problem-solving.
Problem solvedThere was no standardized way to measure how well language models understand quantum computing, and no benchmark adapted to the industry-standard Qiskit framework. This makes it hard for developers and researchers to compare which AI assistants are actually useful for quantum programming tasks.