← Back to all entries
2025-12-06 💡 Tips 'n' Tricks

Building with Claude on Amazon Bedrock: Setup and Multi-Agent Patterns

Building with Claude on Amazon Bedrock: Setup and Multi-Agent Patterns — visual for 2025-12-06

💡 Getting Started with Claude on Amazon Bedrock — The Enterprise Setup Path

Amazon Bedrock is the managed AWS service for accessing Claude without operating model infrastructure yourself. For enterprise teams already inside AWS, Bedrock is usually the right deployment path: it handles authentication through IAM, keeps your data inside your AWS account boundary, and satisfies the security and compliance posture most enterprise procurement teams require. Here is what the setup path looks like in practice.

Step-by-step setup

# Minimal Python example using boto3
import boto3, json

client = boto3.client("bedrock-runtime", region_name="us-east-1")
response = client.converse(
    modelId="anthropic.claude-sonnet-4-5-20251001",
    messages=[{"role": "user", "content": [{"text": "Summarise this contract in three bullet points."}]}],
    system=[{"text": "You are a legal document analyst. Be concise and accurate."}],
)
print(response["output"]["message"]["content"][0]["text"])
Amazon Bedrock IAM Claude API enterprise setup retrospective

💡 Multi-Agent Orchestration — Parallel Execution, Agent Skills, and Checkpoint Systems

The most capable Claude deployments shown at AWS re:Invent 2025 were not single-model pipelines but multi-agent architectures where a coordinating Claude instance delegates sub-tasks to specialised agents. Anthropic's Agent Skills framework, available through the Claude API, provides the scaffolding for these workflows. Here are the key patterns that separate reliable multi-agent systems from brittle demos.

Core orchestration patterns

multi-agent Agent Skills orchestration parallel tools retrospective