The Limit Curve Becomes the Pull Request
Lanqing Yuan and Karthik Ramanathan's June 2026 arXiv paper is not a claim that language models can replace scientific curation. Its useful claim is narrower: some parts of repository maintenance can be made into reviewable code changes, while the final authority remains with domain experts.
The Curve Is a Social Object
The paper, arXiv:2606.21658 [hep-ex], was submitted on June 19, 2026, with additional categories astro-ph.IM and hep-ph. arXiv lists the title as Towards LLM-Powered Automation of a Dark Matter Constraint Repository, by Lanqing Yuan and Karthik Ramanathan.
The object at stake is not just a chart. A dark matter limit curve compresses paper claims, units, confidence conventions, exclusions, projections, and repository-specific plotting code into shared field memory. If that memory is missing new work, it distorts the map. If it accepts a wrong curve, it can mislead. The paper begins from a mundane maintenance problem: important constraint repositories can depend on individual volunteers.
That is the Spiralist point of contact. AI appears here not as an oracle, but as a clerk with dangerous reach. It can notice candidate papers, read tables and plots, propose code, and open a pull request. The review boundary becomes the sacred part of the system: the place where scientific judgment refuses to disappear into automation.
What the Pipeline Automates
The proposed workflow runs from daily arXiv monitoring to human review. It uses keyword filtering and LLM relevance classification, downloads likely papers, extracts candidate data, generates repository code, updates notebooks, regenerates plots, and opens pull requests with a highlighted plot showing the proposed new constraint. The paper reports code, evaluation data, and prompts in the AutoAxionLimits repository.
The extraction design matters because the authors do not treat a single model output as truth. Stage 1 parses text and tables first, using PyMuPDF and a structured prompt. Stage 2 uses vision only when the text/table result is not clearly dominant. Each paper is read independently three times. Coupling type is selected by majority vote. The curve is chosen as a medoid in log-log space, so the system selects an actual candidate curve rather than averaging incompatible samples.
The paper's most important engineering distinction is between stochastic perception and deterministic convention. Multiple reads can help with noisy plot extraction. They cannot by themselves fix hidden physics conventions, such as whether the paper and repository store different variables or rescalings. For those cases, the authors describe a convention-canonicalization registry derived with the agentic physics assistant Get Physics Done, code-verified against plotting source, and citation-audited against literature. Unmapped cases are supposed to be flagged for convention review rather than silently emitted.
The integration layer is deliberately unglamorous. Generated code is inserted through Python AST operations. Notebook updates use nbformat and nbconvert. Generated methods are checked for a required staticmethod decorator. The system is less "AI writes science" than "AI proposes a diff for community review."
What the Benchmark Shows
The benchmark covers 346 papers spanning 14 coupling types, with ground truth taken from the upstream curated repository itself. The paper reports 271 comparable cases and 243 with mass-range overlap. Aggregate results include 90.5 percent coupling-type accuracy, a median residual of 0.331 dex, 48.4 percent of curves within a factor of two, 61.7 percent within a factor of three, 76.2 percent mean interpolation coverage, and 10.3 percent zero-overlap papers.
Those numbers are useful and limiting at the same time. They show that text and figure-vision extraction can reach similar median residuals in this setting: 0.326 dex for text and 0.338 dex for figure vision. They also show that rare, convention-heavy coupling types remain the hard cases. The paper contrasts a 0.331 dex micro-average, dominated by abundant types, with a 1.115 dex macro-average across coupling-type medians. That gap is a warning against declaring the task solved from the headline result.
The authors state that the pipeline is deployed and has generated limit proposals, but none have merged. That may be the most honest result in the paper. A system can be good enough to produce reviewable proposals without being trusted enough to alter the canonical scientific record.
Governance Reading
This belongs beside AI evaluations, inference and test-time compute, agentic data-scientist systems, and data-curation agent loops. The shared lesson is that capability is not governance. A model may classify papers, trace plots, and write code, but the accountable artifact is the full pathway from source paper to proposed repository diff.
The pull request is a good governance unit because it has boundaries: a paper, an extracted curve, code changes, a regenerated plot, flags, discussion, rejection, revision, or merge. It lets scientific disagreement attach to a record. It also exposes a labor question. If a field depends on volunteer-maintained repositories, automation may relieve some work while increasing the review burden on the same few experts. A faster proposal machine does not by itself create a reviewer institution.
The paper recommends a community editorial board akin to Particle Data Group reviewers and points to machine-readable limit data alongside papers as a way to bypass the extraction bottleneck. That is the practical governance reading: the best AI pipeline may be a bridge toward better publication infrastructure, not a permanent substitute for it.
Limits
This page reads one five-page arXiv preprint, its metadata, its PDF and experimental HTML, and the linked code artifact. The benchmark uses the upstream repository as ground truth, which is appropriate for repository automation but not the same as independent remeasurement of the physics. The authors note that reference curves can carry digitization and convention gaps, so residuals are an upper bound on true extraction error.
The result should not be inflated into a general claim about autonomous scientific discovery. The system is a domain-specific maintenance pipeline for dark matter constraint repositories. Its strongest claim is that a structured LLM workflow can create reviewable limit-curve proposals under a human gate, while the hard cases and the authority to merge remain outside the model.
Repository Receipt
A repository-automation receipt should record the source arXiv ID, paper version, extraction date, model and prompt version, parse path, vision fallback status, independent reads, consensus rule, selected curve, rejected candidates, units, convention mapping, source tier, confidence, generated method, insertion target, regenerated plot, flags, reviewer comments, merge status, and later paper-version checks. The audit-grade sentence is not "the model found a limit." It is: this paper version produced this proposed repository change, under this extraction protocol, and this human review state.
Sources
- Lanqing Yuan and Karthik Ramanathan, Towards LLM-Powered Automation of a Dark Matter Constraint Repository, arXiv:2606.21658 [hep-ex], submitted June 19, 2026.
- Primary arXiv versions checked: abstract page, PDF, experimental HTML, and arXiv API metadata, reviewed for title, authorship, submission date, categories, pipeline stages, benchmark counts, reported metrics, deployment status, and limitations.
- Code artifact linked by the paper: AutoAxionLimits.
- Related pages: AI Evaluations, Inference and Test-Time Compute, The Data Scientist Becomes the Agent, and The Data Curation Loop Becomes the Agent Loop.