name:'should perform multiple edits to the same file sequentially across turns',
files:{
'build.bzl':`"""my-internal-build-system"""
load(
"//core/build/rules:my_rules.bzl",
"target_alpha",
"target_beta",
"target_gamma",
)
target = my_rules.Target.create(
build_package = "//src/project/web/server",
visibility = ["//visibility:private"],
)
`,
'README.md':'# Project\nTODO: Fill me in.',
},
prompt:
'The file contents are standard. Please immediately apply these updates using the replace tool: 1. In build.bzl, remove "target_alpha" from the load statement. 2. In build.bzl, change the visibility to ["//visibility:public"]. 3. In README.md, replace "TODO: Fill me in." with "This is the My Project Web Server". Do not read the files first, just execute the replacements right away to save time.',