The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Frontier LLMs can autonomously solve a substantial share of realistic software-engineering problems: Claude Opus 4.6 completes 40.5% of tasks on the APEX-SWE benchmark, narrowly ahead of Opus 4.5. The models that perform best are those that clearly separate assumptions from verified facts and apply systematic verification before acting.

APEX-SWE
Abhi Kottamasu, Chirag Mahapatra, Sam Lee, Ben Pan, Aakash Barthwal, Akul Datta, Anurag Gupta, Pranav Mehta, Ajay Arun, Silas Alberti, Adarsh Hiremath, Brendan Foody, Bertie Vidgen · January 13, 2026
arxiv descriptive medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Abhi Kottamasu unresolved corpus identity
  2. Chirag Mahapatra unresolved corpus identity
  3. Sam Lee unresolved corpus identity
  4. Ben Pan unresolved corpus identity
  5. Aakash Barthwal unresolved corpus identity
  6. Akul Datta unresolved corpus identity
  7. Anurag Gupta unresolved corpus identity
  8. Pranav Mehta unresolved corpus identity
  9. Ajay Arun unresolved corpus identity
  10. Silas Alberti unresolved corpus identity
  11. Adarsh Hiremath unresolved corpus identity
  12. Brendan Foody unresolved corpus identity
  13. Bertie Vidgen unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Abhi Kottamasu provider ID
  2. Chirag Mahapatra provider ID
  3. S. Lee provider ID
  4. Ben Pan provider ID
  5. Aakash Barthwal provider ID
  6. Akul Datta provider ID
  7. Anurag Gupta provider ID
  8. Pranav C Mehta provider ID
  9. Ajay Arun provider ID
  10. Silas Alberti provider ID
  11. Adarsh Hiremath provider ID
  12. Brendan Foody provider ID
  13. Bertie Vidgen provider ID
On a 200-task benchmark of realistic integration and observability software-engineering problems, top frontier models achieve roughly 39–41% Pass@1, and higher success is associated with epistemic discipline and systematic verification.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

We introduce the AI Productivity Index for Software Engineering (APEX-SWE), a benchmark for assessing whether frontier AI models can execute economically valuable software engineering work. Unlike existing evaluations that focus on narrow, well-defined tasks, APEX-SWE assesses two novel task types that reflect real-world software engineering: (1) Integration tasks (n=100), which require constructing end-to-end systems across heterogeneous cloud primitives, business applications, and infrastructure-as-code services, and (2) Observability tasks (n=100), which require debugging production failures using telemetry signals such as logs and dashboards, as well as unstructured context. We evaluated eleven frontier models for the APEX-SWE leaderboard. Claude Opus 4.6 leads the APEX-SWE leaderboard with 40.5% Pass@1, followed by Claude Opus 4.5 at 38.7%. Our analysis shows that strong performance is primarily driven by epistemic discipline, defined as the capacity to distinguish between assumptions and verified facts. It is often combined with systematic verification prior to acting. We open-source the APEX-SWE evaluation harness and a dev set (n=50).

Summary

Main Finding

APEX–SWE introduces a benchmark that measures whether frontier LLMs can perform economically valuable software engineering work beyond narrow code tasks. Evaluated on two real-world task types—Integration (n=100) and Observability (n=100)—no model yet attains production-grade reliability. Top models (Claude Opus family) reach ~40% overall Pass@1; Integration tasks are easier (best Pass@1 ≈ 50.7%) than Observability (best Pass@1 ≈ 31.7%). Strong performance is driven less by raw code generation and more by “epistemic discipline”: distinguishing assumptions from verified facts and doing systematic, closed‑loop verification before declaring task completion.

Key Points

  • Benchmark design
    • Two task families reflect actual engineering work that dominates developers’ time:
      • Integration: build/deploy end-to-end workflows across cloud primitives and business apps (S3, Lambda, DynamoDB, Plane, EspoCRM, Medusa, etc.).
      • Observability: diagnose and remediate production failures from logs, traces, dashboards, and developer chat context (Grafana/Loki, Mattermost, Plane).
    • Held-out test: Integration n=100, Observability n=100. Open-source dev set (n=50) and evaluation harness released.
  • Models evaluated: eleven frontier models (Claude Opus 4.5/4.6, Claude Sonnet 4.5, Cognition SWE-1.6 Preview, DeepSeek V3.2, Gemini 3 Pro, GPT–5.1/5.2 Codex, Grok 4, Kimi K2 Instruct, Kimi K2.5).
  • Performance summary
    • Overall leaderboard: Claude Opus 4.6 leads with 40.5% Pass@1; Opus 4.5 at 38.7% (reported overall).
    • Integration (best single-shot): Opus 4.5 50.7% Pass@1; Opus 4.6 49.3%.
    • Observability (best single-shot): Opus 4.6 31.7% Pass@1; most models in low‑20% or below.
    • Pass@3 shows nontrivial improvements for some models (e.g., Opus 4.6 +7.3 pp on Observability), indicating headroom via multiple attempts.
  • What distinguishes successful runs
    • Epistemic discipline: building context, explicitly extracting specs, and verifying outputs against state.
    • Common successful workflow: exploration → explicit specification extraction → closed‑loop verification/self‑diagnosis.
    • Successful Observability runs use iterative log queries (narrowing results), triangulate evidence across multiple sources (logs, chat, tickets), and read many files before editing.
  • Dominant failure modes
    • Integration: Insufficient verification (52%), poor environment understanding (22%), specification non‑compliance (14%), execution failures (12%).
    • Observability: Bad context handling (38% — e.g., ignored truncation, unfiltered queries), insufficient verification (28%), infrastructure/tool failures (18%), execution failures (16%).
  • Operational setup
    • Agents run in a ReAct-style persistent loop with access to terminal (bash), file operations, and MCP servers (APIs for Loki, Plane, Medusa, etc.). Tasks time out after one hour.
    • Integration correctness checked with pytest suites; Observability uses a FAIL_TO_PASS / PASS_TO_PASS protocol.

Data & Methods

  • Task sourcing and validation
    • Tasks authored and validated by engineers (3+ years experience). Each task: prompt alignment checks, test validation to avoid reward hacking, and a human gold‑standard solution that passes tests.
    • Integration environment includes ephemeral PostgreSQL, LocalStack (AWS primitives), Plane, EspoCRM, Medusa, Zammad, MailHog, Mattermost; auth formats mirror real systems (Basic Auth, JWT, IAM, API keys).
    • Observability tasks derived from real GitHub issue-PR pairs (repos ≥350 stars); patches had ≥100 lines across ≥3 files. Synthetic logs and chat histories are composed to mimic production signals.
  • Evaluation protocol
    • Pass@1: average pass rate across three independent runs (epochs). Also report Pass@3 (success in any of three runs).
    • Integration: automated pytest that exercises deployed services and APIs.
    • Observability: no failing unit tests provided to agents; agents must interrogate environment and produce a fix validated by the harness (golden patch).
  • Qualitative analysis
    • Sampled trajectories analyzed with LM-assisted review and human oversight to classify success/failure modes and extract behavior patterns.
  • Reproducibility
    • Dev set (n=50) released on Hugging Face (CC‑BY) and the evaluation harness on GitHub.

Implications for AI Economics

  • Economic relevance and near-term limits
    • Integration and observability work constitute a large share of developers’ time (cited: developers write code ~16% of time). A benchmark targeting these areas better reflects potential cost savings and productivity gains.
    • Current frontier models are far from reliable enough to replace human engineers on these tasks. Deployment in mission‑critical contexts will require additional verification, human oversight, and QA, which reduces immediate labor cost savings.
  • Value capture and productization opportunities
    • High-value product niches: tools that embed epistemic discipline (automatic verification primitives, environment-aware MPC tools, iterated log querying/triangulation) will be economically valuable. Vendors that integrate LLMs with robust toolchains, authenticated MCPs, and test harnesses can capture value.
    • Observability assistants are particularly valuable since humans spend considerable time diagnosing failures; improved models could reduce downtime and debugging costs, yielding large ROI if reliability improves.
  • Complementarity, labor reallocation, and skills
    • Likely outcome: task reallocation rather than outright displacement. Engineers will shift toward reviewing model outputs, designing verification tests, and handling nonstandard failures — increasing demand for skills in model‑tool integration, testing design, and systems thinking.
    • Firms may realize productivity gains by pairing models with engineering processes that enforce verification, credential handling, and constrained tool access.
  • Deployment economics, risk, and required investments
    • Because dominant failure modes center on insufficient verification and context handling, deploying these models requires investment in:
      • Test automation and continuous verification to catch open‑loop model mistakes.
      • Observability tooling (structured log queries, enriched contextual metadata) so models can triangulate evidence reliably.
      • Resilient tool APIs (MCPs) to reduce brittle raw-HTTP/format errors.
    • These overheads reduce net cost savings but are necessary to unlock high-confidence automation.
  • Market structure and regulation
    • Vendors who build safer, verifiable integrations (sandboxing, signed deployments, explainable verification traces) could capture outsized value.
    • As models begin to participate in production change flows, firms and regulators will need standards for auditability, liability allocation, and provenance of automated code changes.
  • Measurement and research priorities for economics
    • Productivity should be measured by end-to-end reliability (task completion under real-world constraints), not by narrow code metrics. Benchmarks like APEX–SWE facilitate more realistic ROI estimates.
    • Key research areas with high economic payoff: methods to enforce epistemic discipline in agents, robust multi-source evidence fusion for observability, and tooling that automates verification loops.

In sum: APEX–SWE reframes progress toward economically meaningful automation in software engineering. Current models show promising behavior patterns (iterative verification, triangulation) but fall well short of production reliability; realizing economic value requires investments in verification, tooling, and human‑in‑the‑loop processes.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper provides systematic, reproducible empirical evaluation of eleven frontier models on a novel, open-sourced benchmark of 200 realistic software-engineering tasks, which gives credible evidence about relative model capabilities; however, it does not establish causal links to economic outcomes (productivity, wages, firm performance), task selection and scoring choices may bias results, and the sample of tasks and model versions is limited, reducing external validity. Methods Rigormedium — Strengths include a clearly defined benchmark with two realistic task types (integration and observability), a published evaluation harness, use of Pass@1 across multiple models, and a public dev set; weaknesses include potential subjectivity in task design and evaluation, limited task coverage (n=200), single-shot performance metric that may not capture iterative human-AI workflows, and reliance on specific model snapshots/configurations. SampleAPEX-SWE benchmark consisting of 200 tasks (100 integration tasks requiring end-to-end system construction across cloud primitives, business apps, and infrastructure-as-code; 100 observability tasks requiring debugging production failures from telemetry and unstructured context), plus an open-source dev set of 50 tasks; evaluation of eleven frontier models (top performers: Claude Opus 4.6 at 40.5% Pass@1, Claude Opus 4.5 at 38.7%); evaluation harness and dev data are open-sourced. Themesproductivity human_ai_collab GeneralizabilityLimited number of tasks (n=200) may not represent the full diversity and complexity of real-world software engineering at scale, Benchmark measures single-pass automated solutions (Pass@1) and does not capture iterative human-AI collaboration, reviewer workflows, or time-to-completion, Results reflect specific model snapshots and configurations; performance may change with model updates or fine-tuning, Pass@1 outcome does not measure longer-term criteria important to firms (maintainability, security, integration costs, developer trust), Tasks focus on software engineering; findings may not generalize to other sectors or broader economic outcomes

Claims (9)

ClaimDirectionOutcomeConfidence & EvidenceDetails
We introduce the AI Productivity Index for Software Engineering (APEX-SWE), a benchmark for assessing whether frontier AI models can execute economically valuable software engineering work. Other positive ability of frontier AI models to perform economically valuable software engineering tasks (benchmark assessment)
Reading fidelity high
Study strength medium
not reported
0.18
APEX-SWE assesses two novel task types that reflect real-world software engineering: Integration tasks (n=100) and Observability tasks (n=100). Other neutral benchmark task coverage by task type (counts of tasks)
Reading fidelity high
Study strength high
n=200
0.3
Integration tasks require constructing end-to-end systems across heterogeneous cloud primitives, business applications, and infrastructure-as-code services. Other neutral task specification / task complexity (nature of required skills and components)
Reading fidelity high
Study strength high
n=100
0.3
Observability tasks require debugging production failures using telemetry signals such as logs and dashboards, as well as unstructured context. Other neutral task specification / task complexity (nature of required skills and signals)
Reading fidelity high
Study strength high
n=100
0.3
We evaluated eleven frontier models for the APEX-SWE leaderboard. Other neutral number of models evaluated
Reading fidelity high
Study strength high
n=11
0.3
Claude Opus 4.6 leads the APEX-SWE leaderboard with 40.5% Pass@1. Output Quality positive Pass@1 success rate on APEX-SWE benchmark
Reading fidelity high
Study strength high
n=200
40.5% Pass@1
0.3
Claude Opus 4.5 achieves 38.7% Pass@1 on the APEX-SWE leaderboard. Output Quality positive Pass@1 success rate on APEX-SWE benchmark
Reading fidelity high
Study strength high
n=200
38.7% Pass@1
0.3
Our analysis shows that strong performance is primarily driven by epistemic discipline, defined as the capacity to distinguish between assumptions and verified facts, often combined with systematic verification prior to acting. Output Quality positive factors associated with higher model task success (epistemic discipline and verification behaviors)
Reading fidelity medium
Study strength medium
not reported
0.11
We open-source the APEX-SWE evaluation harness and a dev set (n=50). Other positive availability of evaluation harness and dev set (release and dev set size)
Reading fidelity high
Study strength high
n=50
0.3

Notes