paper-with-me

Papers

AgentForge: Execution-Grounded Multi-Agent LLM Framework for Autonomous Software Engineering

2026-04-13 · Rajesh Kumar, Waqar Ali, Junaid Ahmed, Najma Imtiaz Ali, Shaban Usman arxiv

Large language models generate plausible code but cannot verify correctness. Existing multi-agent systems simulate execution or leave verification optional. We introduce execution-grounded verification as a first-class principle: every code change must survive sandboxed execution before propagation. We instantiate this principle in AGENTFORGE, a multi-agent framework where Planner, Coder, Tester, Debugger, and Critic agents coordinate through shared memory and a mandatory Docker sandbox. We formalize software engineering with LLMs as an iterative decision process over repository states, where execution feedback provides a stronger supervision signal than next-token likelihood. AGENTFORGE achieves 40.0\% resolution on SWE-BENCH Lite, outperforming single-agent baselines by 26--28 points. Ablations confirm that execution feedback and role decomposition each independently drive performance. The framework is open-source at https://github.com/raja21068/AutoCodeAI.

📄 PDF Abstract BibTeX arXiv:2604.13120

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

A Lightweight Modular Framework for Constructing Autonomous Agents Driven by Large Language Models: Design, Implementation, and Applications in AgentForge

2026-01-19 · Akbar Anbar Jafari, Cagri Ozcinar, Gholamreza Anbarjafari arxiv

The emergence of LLMs has catalyzed a paradigm shift in autonomous agent development, enabling systems capable of reasoning, planning, and executing complex multi-step tasks. However, existing agent frameworks often suff…

Klear-AgentForge: Forging Agentic Intelligence through Posttraining Scaling

2025-11-08 · Qi Wang, Hongzhi Zhang, Jia Fu, Kai Fu 외 arxiv

Despite the proliferation of powerful agentic models, the lack of critical post-training details hinders the development of strong counterparts in the open-source community. In this study, we present a comprehensive and …

Reinforcement Learning

AgentForge: A Flexible Low-Code Platform for Reinforcement Learning Agent Design

2024-10-25 · Francisco Erivaldo Fernandes Junior, Antti Oulasvirta

Developing a reinforcement learning (RL) agent often involves identifying values for numerous parameters, covering the policy, reward function, environment, and agent-internal architecture. Since these parameters are int…

Decision MakingReinforcement Learning (RL)

Self-Abstraction from Grounded Experience for Plan-Guided Policy Refinement

2025-11-08 · Hiroaki Hayashi, Bo Pang, Wenting Zhao, Ye Liu 외 arxiv

Large language model (LLM) based agents are increasingly used to tackle software engineering tasks that require multi-step reasoning and code modification, demonstrating promising yet limited performance. However, most e…

AutoResearch: An Execution-Grounded Multi-Agent Framework for Reliable Research Workflow Automation

2026-05-04 · Rajesh Kumar, Waqar Ali, Junaid Ahmed, Abdullah Aman Khan 외 arxiv

Automated research agents increasingly generate code, retrieve literature, and draft scientific artifacts, but they often fail to verify whether generated experiments execute correctly or whether cited sources support ge…

Code Repair