Papers › Agentless: Demystifying LLM-based Software Engineering Agents

Agentless: Demystifying LLM-based Software Engineering Agents

1 Jul 2024arXiv:2407.01489archive 2025-07-28

Chunqiu Steven Xia, Yinlin Deng, Soren Dunn, Lingming Zhang

Recent advancements in large language models (LLMs) have significantly advanced the automation of software development tasks, including code synthesis, program repair, and test generation. More recently, researchers and industry practitioners have developed various autonomous LLM agents to perform end-to-end software development tasks. These agents are equipped with the ability to use tools, run commands, observe feedback from the environment, and plan for future actions. However, the complexity of these agent-based approaches, together with the limited abilities of current LLMs, raises the following question: Do we really have to employ complex autonomous software agents? To attempt to answer this question, we build Agentless -- an agentless approach to automatically solve software development problems. Compared to the verbose and complex setup of agent-based approaches, Agentless employs a simplistic three-phase process of localization, repair, and patch validation, without letting the LLM decide future actions or operate with complex tools. Our results on the popular SWE-bench Lite benchmark show that surprisingly the simplistic Agentless is able to achieve both the highest performance (32.00%, 96 correct fixes) and low cost ($0.70) compared with all existing open-source software agents! Furthermore, we manually classified the problems in SWE-bench Lite and found problems with exact ground truth patch or insufficient/misleading issue descriptions. As such, we construct SWE-bench Lite-S by excluding such problematic issues to perform more rigorous evaluation and comparison. Our work highlights the current overlooked potential of a simple, interpretable technique in autonomous software development. We hope Agentless will help reset the baseline, starting point, and horizon for autonomous software agents, and inspire future work along this crucial direction.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2407.01489")

Code

Syntology Ran 3 of 24 code samples harvested from 3 repositories linked to this paper; 21 have no recorded run. Of those that ran: 3 ran with no contract checked.

By repository: official repository: 8 samples from 1 repository, 3 ran; community (archive-listed): 16 samples from 2 repositories, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

OpenAutoCoder/Agentless officialmentioned on GitHubMIT report
deepsoftwareanalytics/omnigirl mentioned on GitHubNOASSERTION report
experepair/experepair mentioned on GitHubMIT report
sorendunn/agentless-lite mentioned on GitHubMIT report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

24 samples harvested; 3 ran; 0 honoured the contract we drafted; 21 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

3ran
21unverified

Licence: 0 of the 24 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 3 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

construct_file_meta_data OpenAutoCoder/Agentless/agentless/fl/Index.py official repository ran MIT (permissive) · 4dc6308a692bee4f · report
create_chatgpt_config OpenAutoCoder/Agentless/agentless/util/api_requests.py official repository ran MIT (permissive) · 6aa11a092321f0eb · report
remove_lines OpenAutoCoder/Agentless/agentless/util/compress_file.py official repository ran MIT (permissive) · a139d312ce4671dd · report
get_all_patches OpenAutoCoder/Agentless/agentless/repair/rerank.py official repository unverified MIT (permissive) · 502ce1b1b7bb81e3 · report
get_all_patches_num OpenAutoCoder/Agentless/agentless/repair/rerank.py official repository unverified MIT (permissive) · 2fb4111f1cf4cd40 · report
get_sample OpenAutoCoder/Agentless/agentless/repair/rerank.py official repository unverified MIT (permissive) · 6f12cc79072e9048 · report
num_tokens_from_messages OpenAutoCoder/Agentless/agentless/util/api_requests.py official repository unverified MIT (permissive) · 2df3e1e980b47ac5 · report
request_chatgpt_engine OpenAutoCoder/Agentless/agentless/util/api_requests.py official repository unverified MIT (permissive) · aabc18aa41c3a42b · report
check_python_syntax sorendunn/agentless-lite/agentless_lite/util/syntax.py community (archive-listed) unverified MIT (permissive) · 3c6d16925eababcf · report
combine_by_instance_id experepair/experepair/ExpeRepair-v1.0/agentless_utils.py community (archive-listed) unverified MIT (permissive) · f8732f0644352106 · report
count_and_organize_tasks experepair/experepair/ExpeRepair-v1.0/post_process.py community (archive-listed) unverified MIT (permissive) · 930c6e52cfa063f4 · report
extract_code_blocks sorendunn/agentless-lite/agentless_lite/util/repair.py community (archive-listed) unverified MIT (permissive) · 70b519aa89fe249c · report
find_consecutive_subset sorendunn/agentless-lite/agentless_lite/util/utils.py community (archive-listed) unverified MIT (permissive) · 0f6b10ad5ce6a87b · report
get_base64_from_url sorendunn/agentless-lite/agentless_lite/util/backends.py community (archive-listed) unverified MIT (permissive) · c8bcfbded40b94b2 · report
get_processed_instances sorendunn/agentless-lite/agentless_lite/util/utils.py community (archive-listed) unverified MIT (permissive) · 74352aad26882665 · report
get_repo_folder_name sorendunn/agentless-lite/agentless_lite/util/repo.py community (archive-listed) unverified MIT (permissive) · 5c56e3e454667f32 · report
load_json experepair/experepair/ExpeRepair-v1.0/agentless_utils.py community (archive-listed) unverified MIT (permissive) · 227736b3e5c52f62 · report
load_jsonl experepair/experepair/ExpeRepair-v1.0/agentless_utils.py community (archive-listed) unverified MIT (permissive) · 62a5fcf064a81c58 · report
num_tokens_from_messages sorendunn/agentless-lite/agentless_lite/util/repair.py community (archive-listed) unverified MIT (permissive) · 6475d4ef21dc4237 · report
parse_edit_command sorendunn/agentless-lite/agentless_lite/util/repair.py community (archive-listed) unverified MIT (permissive) · 68f6c6922f31e7e1 · report
remove_outer_folder sorendunn/agentless-lite/agentless_lite/util/repo.py community (archive-listed) unverified MIT (permissive) · fd177a088c798c08 · report
replace_html_tags experepair/experepair/ExpeRepair-v1.0/log.py community (archive-listed) unverified MIT (permissive) · 07299a3c29c33ec8 · report
request_chatgpt_engine sorendunn/agentless-lite/agentless_lite/util/backends.py community (archive-listed) unverified MIT (permissive) · 71476abc302492f9 · report
setup_logging sorendunn/agentless-lite/agentless_lite/util/logging.py community (archive-listed) unverified MIT (permissive) · c9355b8fec2e5c50 · report

Tasks

Program Repair

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections