Pith. sign in

REVIEW 3 major objections 4 minor 52 references

An agent that compiles its successful traces into reusable executable skills can keep improving on later tasks without any parameter updates, and on three benchmarks it reports the best accuracy-per-token ratio among the baselines tested.

Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →

T0 review · deepseek-v4-flash

2026-08-02 15:57 UTC pith:M4WTCOJC

load-bearing objection Useful framework with an honest mechanism analysis, but the headline accuracy-cost claim does not survive scrutiny: the ALFWorld margin is replay on a repetitive test stream, and the code/math margins are within noise. the 3 major comments →

arxiv 2607.21596 v1 pith:M4WTCOJC submitted 2026-04-18 cs.AI

FlowEvo: Self-Evolving Agents through the Co-Evolution of Workflows and Executable Skills

classification cs.AI
keywords skill recordsworkflow compilationinference-time learningLLM agentsnegative transferskill bankagent memorytraining-free self-evolution
verification ladder T0 review T1 audit T2 compute T3 formal T4 reserved

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

FlowEvo asks how a workflow-based agent can stop rediscovering the same procedures. It proposes a training-free loop: when an episode succeeds, the verified trace is compiled into a reusable skill record—a callable artifact with metadata, tests, and usage history—stored in a persistent skill bank. On later tasks, a retrieved skill is either executed directly or injected as structured context to guide a new workflow, and a curation step suppresses skills that consistently hurt performance. The paper reports that this loop yields the best accuracy-to-cost tradeoff among its four comparators on all three benchmarks, with the largest gain on ALFWorld (82.8% vs. 59.2% for the strongest baseline) and roughly half the token cost of the cheapest baseline. The central claim is that capability accumulation can live in the inference-time state, not in model weights.

Core claim

The paper's central discovery is that successful workflows can be converted into persistently reusable executable skills at inference time, and that this conversion creates a self-reinforcing loop: workflow execution produces successful traces, the traces are compiled into skill records (callable body + interface + replay tests + usage statistics), and the skill bank then changes how future workflows are planned, either by replaying a skill directly when compatibility passes or by exposing it as structured context when it does not. A contrastive-utility curator tracks each skill's downstream success against episodes where it was withheld and suppresses skills with persistently negative trans

What carries the argument

The skill record is the load-bearing unit: each record pairs an executable artifact (a parameterized action or code template with an entry point) with auxiliary structured guidance (interface, replay tests, provenance, task-pattern tags, routing statistics). Three coupled mechanisms carry the loop: workflow-to-skill compilation, which extracts a callable artifact and its contract from a verifier-passed trace; skill-to-workflow feedback, which routes each task to dynamic generation, direct execution, or skill-conditioned generation, with direct execution falling back to conditioning when preconditions fail; and skill curation, which uses contrastive evaluation to suppress a skill when its gui

Load-bearing premise

The headline ALFWorld margin depends on the assumption that the 134 evaluation tasks genuinely cluster into six recurring types, so a template compiled from one episode can be replayed on later variants; if the task stream is truly diverse, the direct-reuse route fires rarely and the claimed advantage largely disappears.

What would settle it

A single experiment would settle the mechanism: run FlowEvo on a diverse stream of tasks with no repeated task types (or with retrieval and direct-execution disabled). If accuracy and token cost do not move toward the small margins seen on unique-task benchmarks, the paper's attribution of its gains to direct skill reuse is wrong. A complementary check is to measure the direct-hit rate on task types like look_at_obj_in_light (where the paper reports 0/18 direct hits) and verify that gains there come only from skill-conditioned generation.

Watch this falsifier — get emailed when new claim-graph text bears on it.

If this is right

  • If the loop works as reported, agents can accumulate task-solving capability purely through inference-time state, so self-evolution does not require gradient updates or reward training.
  • The two-tier reuse mode means a single framework can handle both highly repetitive task streams (where direct replay dominates) and one-off tasks (where skill-conditioned generation adds a real but modest boost), explaining the cross-benchmark consistency.
  • Token costs drop sharply once a bank has templates for the dominant task types, making long runs of similar tasks dramatically cheaper.
  • Curation prevents the skill bank from entrenching its own failures, since a skill that harms downstream episodes can be detected and suppressed automatically.
  • Because each benchmark starts from an empty bank, the results indicate the loop is a general learning mechanism, not a transfer artifact.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The same compile-reuse-curate loop should transfer to any domain where tasks are verifiable and partially recurring; the ALFWorld gains being concentrated in five task types suggests the method's payoff tracks the recurrence rate, a relation the paper does not quantify.
  • The contrastive-utility curator could be applied to other agent memories (textual insights, prompts, retrieval heuristics), turning it into a general negative-transfer filter rather than a skill-specific mechanism.
  • A direct test of the mechanism: run FlowEvo on a stream of unique tasks (or with routing forced to restrict direct execution) and the accuracy-cost advantage should shrink to the small margins seen on HumanEval and GSM8K; that would confirm the causal role of direct reuse.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. This paper proposes FlowEvo, a training-free agent framework that compiles successful workflows into executable skill records with admission checks, stores them in a skill bank, and reuses them either as directly callable templates or as structured context for later workflow generation. The three coupled mechanisms are workflow-to-skill compilation, skill-to-workflow feedback, and skill curation. Experiments on ALFWorld, HumanEval, and GSM8K report the highest accuracy and lowest token cost among the tested baselines under the authors' implementation settings, and ALFWorld ablations attribute most of the gain to direct skill reuse. The paper positions this as an inference-time capability layer that lets agents accumulate and manage reusable execution structure without parameter updates.

Significance. The framework is well motivated and the design is interesting: compiling successful traces into auditable, testable skill records with a contrastive-utility lifecycle is a plausible way to formalize inference-time self-evolution. The paper's strengths include a public code release, explicit prompts and configuration tables, per-task-type routing analysis, and a concrete (if small) curation case study. If the ALFWorld result were robust to task diversity, the efficiency gain would be substantial. However, the headline empirical claim is not yet established: the large ALFWorld margin appears to depend on within-stream recurrence of task layouts, and the HumanEval/GSM8K accuracy margins are within sampling noise.

major comments (3)
  1. [§4.2, Appendix C.1 (Listing 7)] The 82.8% ALFWorld result is not clearly evidence of transferable skill acquisition. The compiled action template contains 'go to {object_location}' and 'take {object} from {object_location}', and the appendix states that these slots are bound 'at runtime from goal parsing'. ALFWorld goals specify the object and target receptacle, not the object's current location. Direct execution can therefore succeed only when the same object-location mappings recur across the evaluation stream. The paper's own Table 5 shows look_at_obj_in_light has 0/18 direct hits because of configuration variance, and Figure 3 ties per-type gains to the direct-hit rate. Since the skill bank is populated online from the same 134-episode split, the headline margin is largely within-stream template replay; a held-out evaluation or a diversity-controlled reweighting is needed to support the generalization claim.
  2. [§4.2, Table 2] The claim of 'highest accuracy on all three benchmarks simultaneously' is not supported on HumanEval and GSM8K. The margins over the strongest baseline are +0.4 points (95.1% vs 94.7%, n=164) and +0.3 points (97.1% vs 96.8%, n=1319), which are within sampling noise; no confidence intervals or significance tests are reported. Moreover, §4.1 describes adaptive escalation with multiple levels, including retries, so the reported 'pass@1' is not a single-sample pass@1. Please report exact per-level success counts and significance/uncertainty, or weaken the claim to a best-accuracy-cost-tradeoff statement under the authors' settings.
  3. [§4.3, Appendix B] The skill-curation contribution (+2.2 points) rests on a single suppression event with very small samples: pick_two guided 1/10 vs unguided 1/3 yields a contrastive delta of -0.23, with unguided n=3. The admission gates (minimum 5 guided, 3 unguided) are barely met. A few different outcomes in the unguided arm would change the delta materially, and no sensitivity or bootstrap analysis is provided. Please supply more episodes for the contrastive comparison or a robustness analysis before claiming curation is a reliable safeguard against negative transfer.
minor comments (4)
  1. [§4.4, Appendix D] The main text uses 'direct-reuse route' for 101/134 episodes, but Appendix D clarifies that this includes direct_then_* fallback episodes, not only pure direct execution. The sentence 'Of the 101 direct-reuse episodes, 99 succeed' should be reworded to avoid implying pure-direct success, and the terminology should be consistent in Section 4.4 and Figure 2.
  2. [§4.3] The W2S ablation (+5.2 points) is attributed to compilation 'regularizing the agent's behavior' even though reuse is disabled. This is hard to interpret; please specify what auxiliary memory changes after compilation and how they affect later episodes, or else relabel this as a memory-regularization effect rather than a skill-compilation effect.
  3. [Appendix B] The paper lists 177 configuration constants and states that no per-benchmark tuning was performed, but no sensitivity analysis is given for the routing thresholds that directly determine direct-reuse frequency (retrieval_threshold, _COMPATIBILITY_DIRECT_THRESHOLD, _CODE_EXCERPT_THRESHOLD). A small sensitivity study would substantially support the 'defaults' claim.
  4. [Figure 3, Table 5] The figure caption says 'n per type varies' without giving values; please state n for each task type. Also, pick_two is omitted from Figure 3 because it was suppressed; adding a pointer to Section 4.3 in the caption would help the reader.

Circularity Check

0 steps flagged

No significant circularity: FlowEvo is an empirical online-adaptation evaluation, and no prediction reduces to its inputs by construction.

full rationale

FlowEvo is an empirical framework paper rather than a formal derivation, so the main circularity risks are limited. I checked each pattern. (1) No self-definitional step: skills are compiled from successful traces and later evaluated by environment feedback or hidden tests; success is not defined in terms of the skill itself. (2) No fitted input is called a prediction: thresholds such as the contrastive harm threshold of -0.1 are configuration constants, and the reported accuracies are measured pass rates, not quantities derived from those constants. (3) No load-bearing self-citation: author self-citations (e.g., Wang et al. 2025a, Pan et al. 2026, Di et al. 2026, Ouyang et al. 2025) appear only in motivation, related work, or discussion and do not support the central empirical claims. (4) No uniqueness theorem is imported from the authors' prior work. (5) No ansatz is smuggled in via citation; the skill representation and reuse modes are described and implemented in the paper. (6) The skill-bank mechanism is a test-time memory system, not a renaming of a known result. The ALFWorld direct-reuse route does depend on task-type recurrence, and the compiled template cannot search for unseen object locations; the paper itself reports look_at_obj_in_light with 0/18 direct hits and attributes the gain to skill-conditioned generation. That is a generalization and evaluation-validity limitation, not a reduction of a prediction to its input by construction. Therefore I find no circular step that can be quoted and exhibited.

Axiom & Free-Parameter Ledger

6 free parameters · 4 axioms · 0 invented entities

The central claims rest on a set of hand-set thresholds (177 constants, with a representative subset in Appendix B) and on the empirical recurrence of task structure in the chosen benchmarks. No new physical entities are introduced; the 'skill record' is a software data structure.

free parameters (6)
  • retrieval_threshold = 5.0
    Determines which skill candidates are retrieved for routing; authors say default, not tuned per benchmark.
  • _COMPATIBILITY_DIRECT_THRESHOLD = 0.55
    Routing gate that decides whether direct skill execution is permissible; directly affects the 101/134 direct-reuse episodes.
  • direct_execute_compat_gate = >=1.5
    Additional compatibility gate for direct execution.
  • _CONTRASTIVE_HARM_THRESHOLD = -0.1
    Suppression threshold for negative transfer; the pick_two suppression event (delta -0.23) was judged harmful against this threshold.
  • _CONTRASTIVE_MIN_GUIDED / _CONTRASTIVE_MIN_UNGUIDED = 5 / 3
    Minimum samples before curation decisions; small counts (n=3 unguided) make the harm detection fragile.
  • Adaptive escalation levels (temps 0.0/0.5/0.7/0.2, max tokens 2048) = 4 levels
    Escalation policy for code/math affects token cost and solve rate; contributes to the reported accuracy/cost tradeoff.
axioms (4)
  • domain assumption Successful traces contain reusable executable structure (parameterized action sequences or code scaffolds) that can be extracted and invoked on future tasks.
    The core compilation premise (Sections 1, 3.4). If this fails, the skill bank is empty or useless.
  • domain assumption ALFWorld's eval tasks exhibit strong parametric recurrence within six task types, so a template compiled from one success generalizes to later variants.
    The headline 82.8% result rests on this; the paper itself notes the direct-hit rate for look_at_obj_in_light is 0%, showing sensitivity to task variability (Sections 4.2, 4.4).
  • domain assumption Reliable verification (binary success, hidden tests) is available at admission time.
    Compilation is gated by verifier-passed episodes; Section 5 acknowledges the framework may break with delayed/noisy feedback.
  • domain assumption The fixed base model (GPT-4o-mini) can bootstrap the loop by solving some tasks without skills.
    Section 5: 'if the base model rarely succeeds, the skill bank may remain empty.'

pith-pipeline@v1.3.0-alltime-deepseek · 17450 in / 17218 out tokens · 143271 ms · 2026-08-02T15:57:22.601651+00:00 · methodology

0 comments
read the original abstract

Large language model agents increasingly solve complex tasks by constructing inference-time workflows that combine reasoning, tool use, and code execution. While such workflows enable flexible problem solving, the useful procedures discovered during execution are often transient: they help solve the current task but are not retained in a form that can systematically benefit future tasks. We present FlowEvo, a training-free framework that compiles successful traces into reusable skill records. Each record pairs a callable artifact with auxiliary structured guidance, and admission applies interface, replay, and safety checks where feasible. These skill records persist in a skill bank at inference time. FlowEvo is organized around three coupled mechanisms: (1)~workflow-to-skill compilation, which extracts reusable executable artifacts from successful traces; (2)~skill-to-workflow feedback, which retrieves accumulated skills to support future problem solving through either direct execution or structured context injection; and (3)~skill curation, which monitors downstream utility and suppresses skills that cause negative transfer. Through this workflow--skill--workflow feedback loop, FlowEvo enables agents to accumulate and refine task-solving capability over time without updating model parameters. Experiments on benchmarks spanning interactive environments (ALFWorld) and code/math generation (HumanEval, GSM8K) show that FlowEvo achieves the best accuracy-cost tradeoff among the evaluated baselines under our implementation settings. On ALFWorld, FlowEvo achieves an 82.8\% success rate, 23.6 percentage points above the strongest baseline, while its average token usage per episode is less than half that of the most efficient baseline. Controlled ablations confirm that each mechanism contributes to the overall result. The code is public at https://github.com/DEFENSE-SEU/FlowEvo.

Figures

Figures reproduced from arXiv: 2607.21596 by Hanmo Liu, Ling Yue, Ran Li, Shaowu Pan, Shengxiang Xu, Shimin Di, Yishu Wang, Zeyu Ren.

Figure 1
Figure 1. Figure 1: Overview of FlowEvo. Successful workflows are compiled into executable skills [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Figure 2: Skill accumulation dynamics on ALFWorld. (a) FlowEvo’s token cost drops sharply [PITH_FULL_IMAGE:figures/full_fig_p010_2.png] view at source ↗
Figure 3
Figure 3. Figure 3: Per-task-type success rate on ALFWorld (GPT-4o-mini; [PITH_FULL_IMAGE:figures/full_fig_p011_3.png] view at source ↗

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

52 extracted references · 26 linked inside Pith

  1. [1]

    2024 , eprint =

    Agent Workflow Memory , author =. 2024 , eprint =

  2. [2]

    2410.10762 , archivePrefix=

    Jiayi Zhang and Jinyu Xiang and Zhaoyang Yu and Fengwei Teng and Xionghui Chen and Jiaqi Chen and Mingchen Zhuge and Xin Cheng and Sirui Hong and Jinlin Wang and Bingnan Zheng and Bang Liu and Yuyu Luo and Chenglin Wu , year =. 2410.10762 , archivePrefix=

  3. [3]

    2024 , eprint =

    Automated Design of Agentic Systems , author =. 2024 , eprint =

  4. [4]

    Fatemi and Xiaolong Jin and Zora Zhiruo Wang and Apurva Gandhi and Yueqi Song and Yu Gu and Jayanth Srinivasa and Gaowen Liu and Graham Neubig and Yu Su , year =

    Boyuan Zheng and Michael Y. Fatemi and Xiaolong Jin and Zora Zhiruo Wang and Apurva Gandhi and Yueqi Song and Yu Gu and Jayanth Srinivasa and Gaowen Liu and Graham Neubig and Yu Su , year =. 2504.07079 , archivePrefix=

  5. [5]

    2408.07199 , archivePrefix=

    Pranav Putta and Edmund Mills and Naman Garg and Sumeet Motwani and Chelsea Finn and Divyansh Garg and Rafael Rafailov , year =. 2408.07199 , archivePrefix=

  6. [6]

    2024 , eprint =

    Self-Rewarding Language Models , author =. 2024 , eprint =

  7. [7]

    2601.03192 , archivePrefix=

    Shengtao Zhang and Jiaqian Wang and Ruiwen Zhou and Junwei Liao and Yuchen Feng and Zhuo Li and Yujie Zheng and Weinan Zhang and Ying Wen and Zhiyu Li and Feiyu Xiong and Yutao Qi and Bo Tang and Muning Wen , year =. 2601.03192 , archivePrefix=

  8. [8]

    2602.02369 , archivePrefix=

    Yaolun Zhang and Yiran Wu and Yijiong Yu and Qingyun Wu and Huazheng Wang , year =. 2602.02369 , archivePrefix=

  9. [9]

    2603.05578 , archivePrefix=

    Bowei Xia and Mengkang Hu and Shijian Wang and Jiarui Jin and Wenxiang Jiao and Yuan Lu and Kexin Li and Ping Luo , year =. 2603.05578 , archivePrefix=

  10. [10]

    arXiv preprint arXiv:2509.21834 , year=

    Robustflow: Towards robust agentic workflow generation , author=. arXiv preprint arXiv:2509.21834 , year=

  11. [11]

    arXiv preprint arXiv:2602.11114 , year=

    Learning to Compose for Cross-domain Agentic Workflow Generation , author=. arXiv preprint arXiv:2602.11114 , year=

  12. [12]

    arXiv preprint arXiv:2504.15257 , year=

    Flowreasoner: Reinforcing query-level meta-agents , author=. arXiv preprint arXiv:2504.15257 , year=

  13. [13]

    arXiv preprint arXiv:2601.21123 , year=

    CUA-Skill: Develop Skills for Computer Using Agent , author=. arXiv preprint arXiv:2601.21123 , year=

  14. [14]

    arXiv preprint arXiv:2602.13312 , year=

    PeroMAS: A Multi-agent System of Perovskite Material Discovery , author=. arXiv preprint arXiv:2602.13312 , year=

  15. [15]

    arXiv preprint arXiv:2502.04306 , year=

    Scoreflow: Mastering llm agent workflows via score-based preference optimization , author=. arXiv preprint arXiv:2502.04306 , year=

  16. [16]

    arXiv preprint arXiv:2505.22967 , year=

    Mermaidflow: Redefining agentic workflow generation via safety-constrained evolutionary programming , author=. arXiv preprint arXiv:2505.22967 , year=

  17. [17]

    differentiation

    Textgrad: Automatic" differentiation" via text , author=. arXiv preprint arXiv:2406.07496 , year=

  18. [18]

    arXiv preprint arXiv:2310.03714 , year=

    Dspy: Compiling declarative language model calls into self-improving pipelines , author=. arXiv preprint arXiv:2310.03714 , year=

  19. [19]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Expel: Llm agents are experiential learners , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  20. [20]

    arXiv preprint arXiv:2502.04180 , year=

    Multi-agent architecture search via agentic supernet , author=. arXiv preprint arXiv:2502.04180 , year=

  21. [21]

    Transactions on Machine Learning Research , year=

    Cognitive architectures for language agents , author=. Transactions on Machine Learning Research , year=

  22. [22]

    Proceedings of the 36th annual acm symposium on user interface software and technology , pages=

    Generative agents: Interactive simulacra of human behavior , author=. Proceedings of the 36th annual acm symposium on user interface software and technology , pages=

  23. [23]

    Findings of the Association for Computational Linguistics: EMNLP 2023 , pages=

    Creator: Tool creation for disentangling abstract and concrete reasoning of large language models , author=. Findings of the Association for Computational Linguistics: EMNLP 2023 , pages=

  24. [24]

    arXiv preprint arXiv:2305.16291 , year=

    Voyager: An open-ended embodied agent with large language models , author=. arXiv preprint arXiv:2305.16291 , year=

  25. [25]

    arXiv preprint arXiv:2305.17144 , year=

    Ghost in the minecraft: Generally capable agents for open-world environments via large language models with text-based knowledge and memory , author=. arXiv preprint arXiv:2305.17144 , year=

  26. [26]

    arXiv preprint arXiv:2107.03374 , year=

    Evaluating large language models trained on code , author=. arXiv preprint arXiv:2107.03374 , year=

  27. [27]

    arXiv preprint arXiv:2108.07732 , year=

    Program synthesis with large language models , author=. arXiv preprint arXiv:2108.07732 , year=

  28. [28]

    arXiv preprint arXiv:2110.14168 , year=

    Training verifiers to solve math word problems , author=. arXiv preprint arXiv:2110.14168 , year=

  29. [29]

    arXiv preprint arXiv:2103.03874 , year=

    Measuring mathematical problem solving with the math dataset , author=. arXiv preprint arXiv:2103.03874 , year=

  30. [30]

    arXiv preprint arXiv:2305.17126 , year=

    Large language models as tool makers , author=. arXiv preprint arXiv:2305.17126 , year=

  31. [31]

    arXiv preprint arXiv:2309.17428 , year=

    Craft: Customizing llms by creating and retrieving from specialized toolsets , author=. arXiv preprint arXiv:2309.17428 , year=

  32. [32]

    arXiv preprint arXiv:2401.12869 , year=

    Trove: Inducing verifiable and efficient toolboxes for solving programmatic tasks , author=. arXiv preprint arXiv:2401.12869 , year=

  33. [33]

    ACM Transactions on Information Systems , volume=

    A survey on the memory mechanism of large language model-based agents , author=. ACM Transactions on Information Systems , volume=. 2025 , publisher=

  34. [34]

    arXiv preprint arXiv:2502.12110 , year=

    A-mem: Agentic memory for llm agents , author=. arXiv preprint arXiv:2502.12110 , year=

  35. [35]

    arXiv preprint arXiv:2506.14852 , year=

    Agentic Plan Caching: Test-Time Memory for Fast and Cost-Efficient LLM Agents , author=. arXiv preprint arXiv:2506.14852 , year=

  36. [36]

    arXiv preprint arXiv:2512.17102 , year=

    Reinforcement learning for self-improving agent with skill library , author=. arXiv preprint arXiv:2512.17102 , year=

  37. [37]

    arXiv preprint arXiv:2602.08234 , year=

    Skillrl: Evolving agents via recursive skill-augmented reinforcement learning , author=. arXiv preprint arXiv:2602.08234 , year=

  38. [38]

    Advances in Neural Information Processing Systems , volume=

    Toward self-improvement of llms via imagination, searching, and criticizing , author=. Advances in Neural Information Processing Systems , volume=

  39. [39]

    Advances in neural information processing systems , volume=

    Self-refine: Iterative refinement with self-feedback , author=. Advances in neural information processing systems , volume=

  40. [40]

    Building MCP-Native Hierarchical AI Scientist Ecosystems: A Perspective on Scaling Multi-Agent Scientific Discovery , author=

  41. [41]

    arXiv preprint arXiv:2603.22386 , year=

    From Static Templates to Dynamic Runtime Graphs: A Survey of Workflow Optimization for LLM Agents , author=. arXiv preprint arXiv:2603.22386 , year=

  42. [42]

    arXiv preprint arXiv:2010.03768 , year=

    Alfworld: Aligning text and embodied environments for interactive learning , author=. arXiv preprint arXiv:2010.03768 , year=

  43. [43]

    arXiv e-prints , pages=

    CLIN: A Continually Learning Language Agent for Rapid Task Adaptation and Generalization , author=. arXiv e-prints , pages=

  44. [44]

    The eleventh international conference on learning representations , year=

    React: Synergizing reasoning and acting in language models , author=. The eleventh international conference on learning representations , year=

  45. [45]

    Advances in neural information processing systems , volume=

    Reflexion: Language agents with verbal reinforcement learning , author=. Advances in neural information processing systems , volume=

  46. [46]

    2025 , publisher=

    When AI Reviews Science: Can We Trust the Referee? , author=. 2025 , publisher=

  47. [47]

    arXiv preprint arXiv:2509.05941 , year=

    Code2MCP: Transforming Code Repositories into MCP Services , author=. arXiv preprint arXiv:2509.05941 , year=

  48. [48]

    arXiv preprint arXiv:2508.02120 , year=

    Don't Overthink It: A Survey of Efficient R1-style Large Reasoning Models , author=. arXiv preprint arXiv:2508.02120 , year=

  49. [49]

    arXiv preprint arXiv:2510.23587 , year=

    A Survey of Data Agents: Emerging Paradigm or Overstated Hype? , author=. arXiv preprint arXiv:2510.23587 , year=

  50. [50]

    arXiv preprint arXiv:2603.09290 , year=

    Toolrosetta: Bridging open-source repositories and large language model agents through automated tool standardization , author=. arXiv preprint arXiv:2603.09290 , year=

  51. [51]

    Automating Computational Fluid Dynamics with LLM-based Multi-Agent Systems , author=

  52. [52]

    arXiv preprint arXiv:2604.07765 , year=

    RemoteAgent: Bridging Vague Human Intents and Earth Observation with RL-based Agentic MLLMs , author=. arXiv preprint arXiv:2604.07765 , year=