Strands harness: AWS's open-source AI agent, explained

Rama Adi Nugraha
Written by

Rama Adi Nugraha

Katelin Teen
Reviewed by

Katelin Teen

Last edited September 24, 2026

Expert Verified
Hand-drawn illustration of an AI agent loop next to a developer at a terminal

What is the Strands harness?

The Strands harness is described by its own docs as "a state-of-the-art, fully assembled agent harness." The idea is that you get an optimized agent in a single import instead of assembling one piece by piece. In Python that is pip install strands-harness then create_harness(); in TypeScript it is npm install @strands-agents/harness then createHarness(). You give it a task and it runs.

It is the batteries-included front door of a wider open-source toolkit from AWS called Strands Agents. The harness sits on top of an older, lower-level piece: the Strands Agents SDK, which AWS first open-sourced in May 2025 and which already runs inside production AWS systems like Amazon Q Developer and AWS Glue. The harness-sdk repo shows the traction: 7.8k stars and 1.2k forks at the time of writing, all under Apache 2.0.

The important framing is what the harness is not. It is not a hosted product, not a chatbot you sign into, and not a customer-facing agent you drop onto your website. It is code you install and run in your own process, on your own infrastructure. That distinction shapes everything below.

First, what is an agent harness?

If the word "harness" is doing a lot of work and you are not sure what it means, you are not alone. Strands' own docs give the cleanest one-liner I have read: "A language model can answer questions. An agent can do things. The agent loop is what makes that difference possible."

A plain large language model only knows what its training covers. The moment a task needs something outside that (reading a file, hitting an API, running a command) the model has to reach into the world. The agent loop is the orchestration layer that lets it: invoke the model, check whether it wants to use a tool, run the tool, feed the result back, and repeat until the model has a final answer.

The Strands agent loop: a prompt invokes the agent, which cycles between the model and its tools before returning a result, as taken from the Strands docs
The Strands agent loop: a prompt invokes the agent, which cycles between the model and its tools before returning a result, as taken from the Strands docs

A "harness" is the scaffolding wrapped around that loop: the system prompt, the set of tools, how context is trimmed when it grows, how memory persists between runs, and how errors get caught. You can write all of that yourself, and plenty of people do. The whole reason a product like the Strands harness exists is that the boring, load-bearing parts of that scaffolding are the same for almost everyone, and getting them right is fiddly.

A ladder showing three ways to run an AI agent, from a raw model call to building with the SDK to the pre-assembled Strands harness
A ladder showing three ways to run an AI agent, from a raw model call to building with the SDK to the pre-assembled Strands harness

That is the spectrum. A raw model call answers but cannot act. Building with an SDK (Strands' own, or something like the OpenAI Agents SDK or Claude Agent SDK) gives you total control but leaves you wiring every piece. The harness is the middle: you start from tuned defaults and override only what your use case actually needs.

What you get out of the box

Run create_harness() with no arguments and you get a fully functional agent. What makes the defaults interesting is that AWS says every one of them is overridable, and what you get back is a standard Strands Agent with no hidden wrapper. Here is what ships by default:

DefaultWhat it does
Model of your choiceRuns on Bedrock (default), Anthropic, OpenAI, Google, or Ollama, with reasoning on
Tuned system promptFollows a philosophy of "explore first, then act, confirm before anything irreversible, verify before finishing"
Shell and file toolsBuilt-in read, write, and edit, plus command execution
Web accessA tool for fetching from the web
Context managementSets bulky tool results aside as a task grows, and caches reused request parts to save cost
Long-term memoryPersists memory across runs
SessionsResumes an earlier conversation from a session id
Sub-agent handoffPasses open-ended subtasks to a built-in helper agent
Task trackingKeeps a checklist for multi-step work

The system-prompt philosophy is the part I would not gloss over. "Confirm before anything irreversible, verify before finishing" is exactly the discipline that separates an agent you can trust on real work from one that confidently does the wrong thing. It is the same lesson I learned the hard way running AI on live support queues: the failure mode is never "the bot did nothing," it is "the bot did something wrong, fast." Baking that caution into the default prompt is a good call.

Bring your own model

The feature people latched onto is model portability. The docs put it plainly: "the model is one object you hand to the agent; the rest of your code stays the same." Swap global.anthropic.claude-sonnet-5 for an OpenAI or Google model and nothing else changes.

This matters more than it sounds, and the community reaction on the Hacker News launch thread made the case better than the marketing did:

Hacker News

"This is the very reason why I avoid to use native harness. They are optimized for the economic benefit of the provider, not for mine."

That is the real argument for a model-agnostic harness. A coding agent tied to one lab has an incentive to burn more of that lab's tokens. An open harness you own does not. It is the same reason teams get nervous about lock-in when they compare Cursor against Windsurf or weigh up Codex alternatives: the model you like this quarter may not be the one you like next quarter, and you want to move without a rewrite.

The "28% cheaper" claim, examined

Now the number everyone repeated. The official launch post leads with "frontier performance with 28% lower token cost," measured as an average across six benchmarks against other harnesses running the same models. AWS also says that on Terminal-Bench 2.1, using Anthropic's Fable 5, the harness cost 77% less than Claude Code and scored higher. The stated mechanism is unglamorous and believable: truncate tool results over a threshold, compact the context when it gets too full, and cache the reused parts of each request.

Here is where I would slow down. The same HN thread that praised the model-agnostic design also poked a hole in the benchmark framing:

Hacker News

"Terminal Bench 2.1 is saturated. Many token saving techniques would save money and score basically the same running Fable 5 against Terminal Bench 2.1... This is at least the fourth time I've seen a project hit front page with a 'save money with same score on saturated benchmark' claim."

That is a fair critique. A single saturated benchmark is a weak place to hang a cost claim. But the underlying point that the harness, not just the model, drives your bill is real, and another commenter backed it with a concrete data point:

Hacker News

"Fable 5 on Claude Code scored 61.8% at a cost of $248.05 while Fable 5 on OpenCode beat it at 66.3% at $73.42. The same model, the same benchmark; only the harness is different with a ~5 point difference in accuracy while costing significantly less."

Two cost bars for the same model on the same benchmark: Claude Code at $248.05 and 61.8%, versus OpenCode at $73.42 and 66.3%
Two cost bars for the same model on the same benchmark: Claude Code at $248.05 and 61.8%, versus OpenCode at $73.42 and 66.3%

Same model, same benchmark, one is a third of the cost and slightly more accurate. That is the whole thesis of why a harness is worth caring about. My takeaway: the "28% cheaper" headline is directionally right and the mechanism is sound, but I would run it against my own tasks before I put the number in a budget. Benchmark savings and production savings are not the same currency.

The rest of the Strands toolkit

The harness is one of several surfaces AWS shipped, and a few are worth knowing about if you go deeper:

  • The Strands Harness SDK is the lower level: you own the loop, turn any function into a tool with a @tool decorator, and connect MCP servers when you need external tools.
  • Strands Shell is a Bourne-compatible shell that runs inside your own process, giving an agent grep, sed, jq, and curl "without fork, exec, or a raw syscall," so you declare exactly which directories and credentials it can touch.
  • Strands Evals is a Python-only SDK with 25+ built-in evaluators to score an agent, diagnose the failing step, and simulate multi-turn conversations before you ship.
  • Strands Labs is the experimental arm, and its robotics project puts 70+ robots behind one interface for natural-language control, which is a genuinely different use case from the coding-agent stuff.

There is also a strands CLI (@strands-agents/cli) for prototyping an agent from the terminal, all living in one harness-sdk monorepo after the org restructured around the launch.

Where the harness fits, and where it does not

I want to be fair here, because the harness is good at what it is for. If you are a developer building a custom agent (a research agent, an internal automation, a coding assistant) and you want to own the loop, dodge model lock-in, and deploy on your own infrastructure, the Strands harness is one of the cleaner options I have seen. It runs anywhere a Linux container runs, from your laptop to ECS.

The Strands agent runs entirely in your own environment, calling its tools locally, as taken from the AWS Strands blog
The Strands agent runs entirely in your own environment, calling its tools locally, as taken from the AWS Strands blog

But "you deploy on your own infrastructure" is also the catch, and the sharpest line in the whole launch thread named it:

Hacker News

"I'm more and more hesitant to use third party harnesses. It's so easy to take opencode or pi and build my own for exactly what I want that I'm seeing projects like this to be noisy and less valuable over time."

The harness saves you the wiring, but it does not save you the ownership. You still pick the model, connect the tools, host the container, watch the bill, and maintain the thing as models and APIs change. For a builder, that is the job and the fun. For a support lead or an ops manager who just wants tickets resolved or blog posts written, it is a full engineering project standing between them and the outcome.

A framework has you pick a model, wire the tools, deploy a container and maintain the loop, while an eesel teammate arrives knowing your tools and docs and goes live in minutes
A framework has you pick a model, wire the tools, deploy a container and maintain the loop, while an eesel teammate arrives knowing your tools and docs and goes live in minutes

That build-versus-hire split is the honest way to decide. If the goal is a specific job done rather than a system built, you want the teammate, not the toolkit.

Try eesel

The clean way to think about it: the Strands harness is infrastructure, and eesel is the employee. AWS gives builders the loop, the tools, and the model wiring to assemble an agent. eesel AI is an AI teammate platform where you hire ready-to-work teammates for specific jobs, each one arriving with the skills, integrations, and company context for its role. The current roster is an AI helpdesk teammate that joins your existing support queue and an AI blog writer that researches and drafts long-form posts. There is no loop to wire and no container to run: the helpdesk teammate trains on your past tickets and help center, and you can simulate it against historical tickets before it ever answers a customer.

The eesel AI dashboard, where an AI teammate handles support tickets across your connected helpdesk
The eesel AI dashboard, where an AI teammate handles support tickets across your connected helpdesk

If the harness caught your eye precisely because you like living in a terminal, eesel has a surface for that too. The eesel CLI puts the same teammate in your terminal: npx @eesel/cli init sets up an agent, connects a helpdesk, uploads knowledge, and wires automations without opening the dashboard. It is deliberately not a separate product, so anything you set up in the CLI shows up in the dashboard and the other way around. And because every command prints JSON, a coding agent like Claude Code, Cursor, or Codex can drive a whole workspace setup for you, then hand the running teammate back. It is the same agentic, scriptable ergonomics that make the Strands harness appealing, pointed at a job that is already done for you.

On cost, eesel is usage-based and billed per resolved ticket with no per-seat fee, so the price scales with work done rather than seats filled. You can start free, and the CLI will even spin up an anonymous workspace with no account to test against. If your actual goal is resolved tickets or published posts rather than a framework to maintain, that is the shorter path.

Frequently Asked Questions

What is the Strands harness?

The Strands harness is an open-source, fully-assembled AI agent from AWS, released on 21 September 2026 under the Apache 2.0 license. One import gives you an agent with benchmarked defaults for tools, memory, sessions, and context management, and you can point it at Bedrock, Anthropic, OpenAI, Google, or a local Ollama model. It is built on the lower-level Strands Harness SDK.

Is the Strands harness free?

The harness itself is free and open source (Apache 2.0). You still pay whichever model provider you connect it to, plus whatever it costs to run the container it lives in. If you want a managed AI agent instead of one you host yourself, a usage-based option like eesel AI bills per resolved ticket with no per-seat fee.

How is the Strands harness different from Claude Code?

Claude Code is Anthropic's own coding agent, tuned for Anthropic models. The Strands harness is model-agnostic: the same harness runs on any major provider, so you are not locked to one lab. AWS's benchmarks claim the harness ran a coding task at 77% lower cost than Claude Code while scoring higher, though that is on a single benchmark.

What does '28% lower token cost' actually mean?

It is the average across six benchmarks, comparing the Strands harness to other harnesses running the same models at comparable accuracy. The savings come from truncating bulky tool results, compacting context when it fills up, and caching reused parts of each request. It is an official Strands figure, but it is a benchmark claim, so treat it as directional.

Do I need to be a developer to use the Strands harness?

Yes. It ships as Python and TypeScript packages plus a CLI, and you install, configure, and deploy it yourself. If you want an AI agent for customer service or everyday business work without writing or hosting code, a ready-to-run teammate is a better fit than a framework.

Share this article

Rama Adi Nugraha

Article by

Rama Adi Nugraha

Rama is a software engineer at eesel AI with two years of experience writing about B2B SaaS, AI tools, and customer support technology. Based in Bali, Indonesia, he brings a developer's perspective to product comparisons — cutting through marketing copy to what the integrations and APIs actually do.

Related Posts

All posts →
Chatwoot: A 2025 overview of the open-source support platform
Guides

Chatwoot: Open-source customer support platform (2026)

Thinking about using Chatwoot for your customer support? This comprehensive overview dives into the self-hosted platform's features, core use cases, and the hidden complexities of setup and maintenance. We'll explore what makes Chatwoot a popular open-source choice and compare it to modern, AI-native platforms that can integrate directly into your existing helpdesk without the hassle.

Stevia PutriStevia PutriSep 15, 2025
Image alt text
Guides

A practical Clawd Bot review: Powerful AI agent, but for who?

A deep dive into Clawd Bot (now OpenClaw). This Clawd Bot review covers its features, hidden costs, security risks, and why it's a project for tinkerers, not a solution for teams.

Stevia PutriStevia PutriFeb 1, 2026
A practical guide to intents and sentiments in customer support
Guides

A practical guide to intents and sentiments in customer support

Understanding customer intents and sentiments is no longer optional. This guide breaks down what they are, why they matter, and how to use them to elevate your support.

Kenneth PanganKenneth PanganOct 27, 2025
AI pretraining
Guides

AI pretraining

Ever heard that AI is "trained on the whole internet"? That's AI pretraining, the foundational step for models like GPT. But for customer support, this general knowledge isn't enough. This guide breaks down what pretraining really is and explains why specializing an AI on your company's knowledge is the key to unlocking its true potential.

Kenneth PanganKenneth PanganOct 23, 2025
Sakana AI: A deep dive into the future of autonomous AI
Guides

Sakana AI (2026): Japan's autonomous AI lab explained

Sakana AI is making headlines with its "AI Scientist" and nature-inspired models. But what do these futuristic breakthroughs mean for businesses today? We explore their groundbreaking work and how you can apply practical AI agents to solve real-world problems right now.

Stevia PutriStevia PutriOct 1, 2025
Scenario AI pricing explained: A complete 2024 guide
Guides

Scenario AI pricing explained: A complete 2024 guide

Is Scenario AI’s pricing model right for your creative team? We break down every plan, explain their 'Compute Unit' system, and explore how it compares to platforms with more predictable costs for business operations.

Kenneth PanganKenneth PanganOct 1, 2025
Recraft AI: A 2025 deep dive into the AI design platform
Guides

What is Recraft AI? The AI design tool explained (2026)

Is Recraft AI the right design tool for your creative workflow? Our detailed 2025 overview breaks down its core features, from vector art to brand style controls, and explores its pricing and limitations to help you decide.

Stevia PutriStevia PutriOct 1, 2025
What is Goliath AI? A complete overview
Guides

What is Goliath AI? A complete overview

Goliath AI provides enterprises with robust tools for automation, analysis, and decision-making, delivering scale and speed across industries.

Stevia PutriStevia PutriAug 26, 2025
A practical guide to the best AI tools for IT support in 2026
Guides

A practical guide to the best AI tools for IT support in 2026

Struggling with slow, costly IT support? Explore the top AI tools for IT support and learn how to automate tasks, reduce ticket backlogs, and improve team efficiency.

Stevia PutriStevia PutriNov 13, 2025

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free