Repository bootstrap worker with executable setup logs
A repo-level coding agent needs an environment setup stage with its own budget, telemetry, and pass criteria. The evidence this week points to setup failure as a separate operational problem, not a minor prelude to code generation. RAT reports executable setup success of 63.2% on Python, 41.3% on Java, 98.7% on Rust, and 68.7% on JS/TS across a 2,000+ repository benchmark, with large gains over SWE-agent on the same backbone. The cost is also visible: full RAT uses about 421.9K tokens and 24.3 minutes on average in one Python setting. Teams deploying coding agents on internal repos can turn this into a concrete workflow change: run environment configuration as a first-class step, log whether the repo became runnable, and stop scoring downstream patch quality when setup never succeeded.
The practical build here is a repo bootstrap worker that detects language, selects a base image, installs dependencies in a sandbox, and emits a machine-readable setup record with commands tried, files touched, test or smoke-check status, and failure class. That output can feed both evaluation and user-facing product behavior. A cheap test is to take a mixed sample of internal repositories and measure how often the worker reaches a runnable state before any code-editing agent starts. If that rate is low, patch-generation metrics are hiding the main failure mode.