Simplicity always wins:SOTA on swe-pro,tb2,-verif on 21 models with simple-agent Strands Labs released Simple Strands Agent (SSA), a minimal autonomous coding harness that achieves state-of-the-art results on SWE-Bench Verified, SWE-Bench Pro, and Terminal Bench 2 across 21 models. The open-source tool pairs frontier LLMs with bash and file-editing tools in isolated Docker environments, enabling rapid experimentation and model-agnostic benchmarking. A repository for Strands-based agents and harnesses for agentic benchmarks. It is a uv workspace https://docs.astral.sh/uv/concepts/projects/workspaces/ : the repository root coordinates one or more member packages. Setup, configuration, and usage live in each agent's README. A lean autonomous-coding agent achieving state-of-the-art performance across software engineering benchmarks. For a summary of the work, see the post on Amazon-Science. https://www.amazon.science/blog/bridging-intent-and-execution-in-agentic-systems Simple Strands Agent SSA is a minimal, hackable harness for autonomous software engineering. It pairs frontier LLMs Claude, GPT, Gemini, and open-weight models via Bedrock/LiteLLM/vLLM with bash and file-editing tools inside isolated Docker environments to analyze codebases, diagnose bugs, write patches, and verify solutions. The harness is built for rapid experimentation — swap models, tune prompts, adjust tool behavior, and benchmark all in a single config change. Despite its simplicity, SSA delivers SOTA-level results on widely-used coding benchmarks including SWE-Bench Verified , SWE-Bench Pro , and Terminal Bench 2 . Model-agnostic — first-class adapters for Anthropic, OpenAI, Google, xAI, Bedrock, and any OpenAI-compatible endpoint vLLM, LiteLLM, Together, Vertex, Z.AI . Composable tools — bash , str replace editor , think , and submit primitives with per-tool output clipping and timeout controls. Isolated environments — Docker-backed sandboxes with streaming exec, automatic image resolution, and ECR support. Hydra-powered configs — every knob is overridable from the command line; experiments are reproducible from a single YAML. Built-in benchmarking — turnkey scripts for SWE-Bench Verified, SWE-Bench Pro, and Terminal Bench 2, including S3 result upload. Python 3.12+ Docker for containerized task environments AWS credentials if using Amazon Bedrock for model access and/or Amazon ECR for docker imagespackage manager optional, but recommended uv https://github.com/astral-sh/uv git clone https://github.com/strands-labs/benchmark-harnesses.git cd benchmark-harnesses Recommended: sync the workspace creates .venv with this package + its deps uv sync source .venv/bin/activate Or install just this package with pip pip install -e . uv run python -m ssa.run \ --config-name=default.yaml \ dataset.name=sbv \ dataset.identifier=django django-15987 \ env.env type=docker \ env.docker.workdir="/testbed" We provide simple scripts for running instances from SWE-Bench Verified /strands-labs/benchmark-harnesses/blob/main/simple-strands-agent/scripts/swe verified/run.sh , SWE-Bench Pro /strands-labs/benchmark-harnesses/blob/main/simple-strands-agent/scripts/swe pro/run.sh , and Terminal-Bench-2 /strands-labs/benchmark-harnesses/blob/main/simple-strands-agent/scripts/tb2/run.sh and see this /strands-labs/benchmark-harnesses/blob/main/simple-strands-agent/scripts/tb2/run harbor.sh for running Terminal-Bench-2 with SSA's harbor plugin . SSA uses Hydra https://hydra.cc/ for configuration. All configs live in src/ssa/configs/ /strands-labs/benchmark-harnesses/blob/main/simple-strands-agent/src/ssa/configs , and any parameter can be overridden from the command line. Start from for the full schema, then mix in a model-specific config as needed. /strands-labs/benchmark-harnesses/blob/main/simple-strands-agent/src/ssa/configs/default.yaml src/ssa/configs/default.yaml SSA's design and execution loop is summarized in the following figure: SWE-Bench Verified: SWE-Bench Pro: Terminal Bench 2: The code is structured as follows: src/ssa/ ├── agent.py / agent runner.py Core agent loop ├── models/ Model adapters Anthropic, OpenAI, Bedrock, ... ├── tools/ bash, str replace editor, think, submit ├── environments/ Docker-backed sandbox ├── conversation manager/ Context management & truncation ├── hooks/ • callbacks/ • metrics/ Observability and instrumentation ├── prompts/ • configs/ System prompts and Hydra configs └── run.py Entry point scripts/ ├── swe verified/ • swe pro/ • tb2/ Please consider citing as follows, if you find SSA useful @misc{2026simplestrandsagent, title={Dissecting model behavior through agent trajectories}, author={Gaurav Gupta and Vatshank Chaturvedi and Jun Huan and Anoop Deoras}, year={2026}, eprint={2606.17454}, archivePrefix={arXiv}, url={https://arxiv.org/abs/2606.17454}, } Agents in this repository are given access to shell tools. In practice, this means the model can run commands in the environment where the agent is started. This is useful for experiments and benchmarking, but it also means you should treat the agent like you would treat any program with shell access: it may read files, modify files, delete data, install packages, or accidentally expose information from the environment. For normal use, we recommend running agents in an isolated environment rather than directly on your machine. Our experiments and benchmarks are run inside Docker containers. You should avoid running agents in an environment that contains secrets, credentials, personal files, production data, or anything you would not want the model to access. A good default setup is: - run the agent inside Docker or another sandboxed environment - mount only the files/directories the agent actually needs - avoid exposing cloud credentials, SSH keys, API keys, or other secrets - do not run it with unnecessary privileges - inspect outputs before trusting or reusing them Agents will usually behave as instructed, but shell access is powerful. Use the same caution you would use when running code from an automated system.