Skip to content

Vended Tools

Vended tools are pre-built tools included directly in the Strands SDK for common agent tasks like file operations, shell commands, HTTP requests, and persistent notes.

They ship as part of the SDK package and are updated alongside it — see Versioning & Maintenance for details on how changes are communicated and what level of backwards compatibility they maintain.

Each tool is imported from its own subpath under @strands-agents/sdk/vended-tools — no additional packages required:

import { Agent } from '@strands-agents/sdk'
import { bash } from '@strands-agents/sdk/vended-tools/bash'
import { fileEditor } from '@strands-agents/sdk/vended-tools/file-editor'
import { httpRequest } from '@strands-agents/sdk/vended-tools/http-request'
import { notebook } from '@strands-agents/sdk/vended-tools/notebook'
const agent = new Agent({
tools: [bash, fileEditor, httpRequest, notebook],
})
ToolDescriptionSupported in
File EditorView, create, and edit filesPython, TypeScript (Node.js)
HTTP RequestMake HTTP requests to external APIsPython, TypeScript (Node.js 20+, browsers)
NotebookManage persistent text notebooksTypeScript (Node.js, browsers)
BashExecute shell commands with persistent sessionsPython, TypeScript (Node.js, Unix/Linux/macOS)
SleepPause execution for a bounded, cancellable durationPython, TypeScript (Node.js, browsers)
StopGracefully end the agent loop when the task is completePython, TypeScript (Node.js, browsers)

Gives your agent the ability to read and modify files on disk — useful for coding agents, config management, or any workflow where the agent needs to inspect output and make targeted edits.

Example:

import { Agent } from '@strands-agents/sdk'
import { fileEditor } from '@strands-agents/sdk/vended-tools/file-editor'
const agent = new Agent({
tools: [fileEditor],
})
// Create, view, and edit files
await agent.invoke('Create a file /tmp/config.json with {"debug": false}')
await agent.invoke('Replace "debug": false with "debug": true in /tmp/config.json')
await agent.invoke('View lines 1-10 of /tmp/config.json')

📖 Full API Reference


Lets your agent call external APIs and fetch web content. Supports all HTTP methods, custom headers, and request bodies. Default timeout is 30 seconds.

Supported in: Python; Node.js 20+, modern browsers (TypeScript).

The Python tool delegates all networking to an httpx.AsyncClient. Use the make_http_request factory to supply a pre-configured client with authentication, timeouts, redirects, proxies, or other transport-level configuration.

Example:

import { Agent } from '@strands-agents/sdk'
import { httpRequest } from '@strands-agents/sdk/vended-tools/http-request'
const agent = new Agent({
tools: [httpRequest],
})
// Make API requests
await agent.invoke('Get data from https://api.example.com/users')
await agent.invoke('Post {"name": "John"} to https://api.example.com/users')

📖 Full API Reference: TypeScript · Python


A scratchpad the agent can read and write across invocations. The most effective use is giving the agent a notebook at the start of a task and instructing it to plan its work there — it can break the task into steps, check things off as it goes, and always have a clear picture of what’s left. Notebook state is part of the agent’s state, so it persists automatically with Session Management.

Supported in: Node.js, browsers.

Example - Task Management:

import { Agent } from '@strands-agents/sdk'
import { notebook } from '@strands-agents/sdk/vended-tools/notebook'
const agent = new Agent({
tools: [notebook],
systemPrompt:
'Before starting any multi-step task, create a notebook with a checklist of steps. ' +
'Check off each step as you complete it.',
})
// The agent uses the notebook to plan and track its work
await agent.invoke('Write a project plan for building a personal budget tracker app')

Example - State Persistence:

import { Agent, SessionManager, FileStorage } from '@strands-agents/sdk'
import { notebook } from '@strands-agents/sdk/vended-tools/notebook'
const session = new SessionManager({
sessionId: 'my-session',
storage: { snapshot: new FileStorage('./sessions') },
})
const agent = new Agent({ tools: [notebook], sessionManager: session })
// Notebooks are automatically persisted as part of the session
await agent.invoke('Create a notebook called "ideas" with "# Project Ideas"')
await agent.invoke('Add "- Build a web scraper" to the ideas notebook')
// ...
// Later, a new agent with the same session restores notebooks automatically
const restoredAgent = new Agent({ tools: [notebook], sessionManager: session })
await restoredAgent.invoke('Read the ideas notebook')

📖 Full API Reference


Lets your agent run shell commands and act on the output. The two SDKs expose different tools here:

  • TypeScript bash spawns a persistent bash process on the host. Shell state — variables, working directory, exported functions — persists across invocations within the same session, so the agent can build up context incrementally. Sessions can be restarted to clear state.
  • Python shell (and TypeScript’s makeShell) routes each command through the agent’s Sandbox and is stateless: every call runs in a fresh shell, so variables and the working directory do not carry over. The sandbox decides the interpreter — sh locally and in Docker, the remote login shell over SSH — so use portable POSIX syntax.

Supported in: Node.js on Unix/Linux/macOS (TypeScript), all platforms (Python).

Example - File Operations:

import { Agent } from '@strands-agents/sdk'
import { bash } from '@strands-agents/sdk/vended-tools/bash'
const agent = new Agent({
tools: [bash],
})
// List files and create a new file
await agent.invoke('List all files in the current directory')
await agent.invoke('Create a new file called notes.txt with "Hello World"')

Example - Session Persistence (TypeScript):

import { Agent } from '@strands-agents/sdk'
import { bash } from '@strands-agents/sdk/vended-tools/bash'
const agent = new Agent({
tools: [bash],
})
// Variables persist across invocations within the same session
await agent.invoke('Run: export MY_VAR="hello"')
await agent.invoke('Run: echo $MY_VAR') // Will show "hello"
// Restart session to clear state
await agent.invoke('Restart the bash session')
await agent.invoke('Run: echo $MY_VAR') // Variable will be empty

📖 Full API Reference


Pauses the agent for a bounded number of seconds. Cancelling the enclosing invocation aborts the sleep immediately rather than waiting for the full duration, so a long timer never ties up a session the caller has moved on from.

Supported in: Node.js, modern browsers (TypeScript); all platforms (Python).

The maximum duration is configurable at construction (default: 60 seconds) and cannot be raised by the model. Negative, NaN, infinite, non-numeric, and boolean durations are rejected at the tool boundary.

Example:

import { Agent } from '@strands-agents/sdk'
import { sleep } from '@strands-agents/sdk/vended-tools/sleep'
const agent = new Agent({
tools: [sleep],
})
await agent.invoke('Pause for two seconds, then continue.')

Custom maximum:

import { Agent } from '@strands-agents/sdk'
import { makeSleep } from '@strands-agents/sdk/vended-tools/sleep'
const shortSleep = makeSleep({ maxDuration: 5 })
const agent = new Agent({ tools: [shortSleep] })

📖 Full API Reference


This tool is experimental and subject to change in future revisions without notice.

Lets the model gracefully end the agent loop with an optional final message. The default loop already terminates when the model returns without any tool call; the stop tool is useful when you want an explicit “I am done” affordance, when a workflow enforces that termination is a deliberate model decision, or when a sub-agent needs to signal completion back to a coordinator via the loop’s last assistant message.

Supported in: Node.js, modern browsers (TypeScript); all platforms (Python).

This is a cooperative stop, not an abort. Any other tools the model requested in the same turn still run to completion; the loop halts after that batch without calling the model again. The final message defaults to a 4096-character cap; pass max_message_length / maxMessageLength to make_stop / makeStop when a longer summary is legitimate.

The two SDKs shim onto different loop-termination primitives, which produces a small difference in the final AgentResult. TypeScript halts via AfterToolsEvent.endTurn and returns stopReason: "endTurn" with the stop text as the last assistant message. Python halts via invocation_state["request_state"]["stop_event_loop"] and returns stop_reason: "tool_use" with the model’s tool-use message as the final message; the stop text lives in history as the tool result, not as a new assistant turn.

Example:

import { Agent } from '@strands-agents/sdk'
import { stop } from '@strands-agents/sdk/experimental/vended-tools/stop'
const agent = new Agent({
tools: [stop],
systemPrompt: 'Complete the task. Call stop with a short summary when you are done.',
})
await agent.invoke('Summarize the changes in ./CHANGELOG.md')

📖 Full API Reference


Combine vended tools to build powerful agent workflows:

import { Agent } from '@strands-agents/sdk'
import { bash } from '@strands-agents/sdk/vended-tools/bash'
import { fileEditor } from '@strands-agents/sdk/vended-tools/file-editor'
import { notebook } from '@strands-agents/sdk/vended-tools/notebook'
const agent = new Agent({
tools: [bash, fileEditor, notebook],
systemPrompt: [
'You are a software development assistant.',
'When given a feature to implement:',
'1. Use the notebook tool to create a plan with a checklist of steps',
'2. Work through each step, checking them off as you go',
'3. Use the bash tool to run tests and verify your changes',
].join('\n'),
})
// Agent plans the work, implements it, and tracks progress
await agent.invoke(
'Add input validation to the createUser function in src/users.ts. ' +
'It should reject empty names and invalid email formats.'
)

Vended tools ship as part of the SDK and are updated alongside it. Report bugs and feature requests in the GitHub repository.

Tool names are stable and will not change. In minor versions, a tool’s description, spec, or parameters may be updated to improve effectiveness — these changes are noted in SDK release notes. Pin your SDK version and test after upgrades if your workflows depend on specific tool behavior.