{"id":"opencode-eval-edit","prompt":"In settings.py, change only the second timeout from 5 to 10.","files":{"settings.py":"timeout = 5\nretries = 2\ntimeout = 5\n"},"verify":{"settings.py":"timeout = 5\nretries = 2\ntimeout = 10\n"},"expected_tools":["read","edit"]} {"id":"opencode-eval-patch","prompt":"Use a patch to add docs/notes.md containing a short note that says done.","files":{"README.md":"# Demo\n"},"verify_contains":{"docs/notes.md":["done"]},"expected_tools":["apply_patch"]} {"id":"opencode-eval-bash","prompt":"Run `python3 tests/check.py` and report whether it passed.","files":{"tests/check.py":"assert 2 + 3 == 5\nprint('ok')\n"},"verify_command":["python3","tests/check.py"],"expected_tools":["bash"]} {"id":"opencode-eval-write","prompt":"Read README.md and create docs/summary.md with the project name Widget and the phrase tiny router.","files":{"README.md":"# Widget\n\nA tiny router.\n"},"verify_contains":{"docs/summary.md":["Widget","tiny router"]},"expected_tools":["read","write"]} {"id":"opencode-eval-grep","prompt":"Find the TODO in src and remove the TODO marker, leaving the explanatory text.","files":{"src/app.py":"def main():\n # TODO remove fallback\n return True\n"},"verify":{"src/app.py":"def main():\n # remove fallback\n return True\n"},"expected_tools":["grep","read","edit"]}