From 74855e611bdcf87f37870433fc424f1d1c980168 Mon Sep 17 00:00:00 2001
From: Tejas Kashinath
Date: Wed, 29 Apr 2026 13:39:54 -0400
Subject: [PATCH 1/4] docs: update README links and remove stale Starter
Toolkit references
Remove deprecated Starter Toolkit from nav bar, replace broken Quick
Start doc links with correct URLs, and rewrite the Deployment section
to reflect the AgentCore CLI as the primary deployment path.
---
README.md | 32 ++++++++++++++++++++++----------
1 file changed, 22 insertions(+), 10 deletions(-)
diff --git a/README.md b/README.md
index 99d6e19c..1be832e8 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,6 @@
◆ Discord
◆ Boto3 Python SDK
◆ Runtime Python SDK
- ◆ Starter Toolkit
@@ -63,13 +62,13 @@ app.run()
- ✅ **Production-ready deployment** - Reliable, scalable, compliant hosting
## Amazon Bedrock AgentCore services
-- 🚀 **Runtime** - Secure and session isolated compute: **[Runtime Quick Start](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/runtime-get-started-toolkit.html)**
-- 🧠 **Memory** - Persistent knowledge across sessions: **[Memory Quick Start](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/memory-get-started.html)**
-- 🔗 **Gateway** - Transform APIs into MCP tools: **[Gateway Quick Start](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/gateway-quick-start.html)**
-- 💻 **Code Interpreter** - Secure sandboxed execution: **[Code Interpreter Quick Start](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/code-interpreter-getting-started.html)**
-- 🌐 **Browser** - Cloud-based web automation: **[Browser Quick Start](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/browser-onboarding.html)**
-- 📊 **Observability** - OpenTelemetry tracing: **[Observability Quick Start](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/observability-get-started.html)**
-- 🔐 **Identity** - AWS & third-party auth: **[Identity Quick Start](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/identity-getting-started-cognito.html)**
+- 🚀 **Runtime** - Secure and session isolated compute: **[Get started](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/runtime-getting-started.html)**
+- 🧠 **Memory** - Persistent knowledge across sessions: **[Get started](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/memory-get-started.html)**
+- 🔗 **Gateway** - Transform APIs into MCP tools: **[Get started](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/gateway-quick-start.html)**
+- 💻 **Code Interpreter** - Secure sandboxed execution: **[Get started](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/code-interpreter-tool.html)**
+- 🌐 **Browser** - Cloud-based web automation: **[Get started](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/browser-quickstart.html)**
+- 📊 **Observability** - OpenTelemetry tracing: **[Get started](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/observability-get-started.html)**
+- 🔐 **Identity** - AWS & third-party auth: **[Get started](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/identity-getting-started.html)**
## AG-UI Protocol Support
@@ -105,9 +104,22 @@ See the [AG-UI protocol contract](https://docs.aws.amazon.com/bedrock-agentcore/
## 🏗️ Deployment
-**Quick Start:** Use the [Bedrock AgentCore Starter Toolkit](https://github.com/aws/bedrock-agentcore-starter-toolkit) for rapid prototyping.
+### AgentCore CLI (Recommended)
-**Production:** [AWS CDK](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_bedrockagentcore-readme.html).
+The fastest way to deploy your agent to Bedrock AgentCore:
+
+```bash
+agentcore init my-agent
+cd my-agent
+agentcore deploy
+```
+
+The CLI handles packaging, infrastructure provisioning, and deployment automatically.
+See the [AgentCore CLI documentation](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/runtime-getting-started.html) for full details.
+
+### AWS CDK (Advanced)
+
+The AgentCore CLI generates AWS CDK under the hood. For full infrastructure-as-code control, customize the generated CDK project directly or refer to the [L1 CDK documentation](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_bedrockagentcore-readme.html).
## A2A Protocol Support
From 59b9344de37d0759590cca035b21bd1d7e493c50 Mon Sep 17 00:00:00 2001
From: Tejas Kashinath
Date: Wed, 29 Apr 2026 13:43:58 -0400
Subject: [PATCH 2/4] fix: correct AgentCore CLI commands in README
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 1be832e8..d4cf0bec 100644
--- a/README.md
+++ b/README.md
@@ -109,8 +109,8 @@ See the [AG-UI protocol contract](https://docs.aws.amazon.com/bedrock-agentcore/
The fastest way to deploy your agent to Bedrock AgentCore:
```bash
-agentcore init my-agent
-cd my-agent
+agentcore create --name MyAgent --defaults
+cd MyAgent
agentcore deploy
```
From 020c868994d3159ef798c7ec7f40674746015303 Mon Sep 17 00:00:00 2001
From: Tejas Kashinath
Date: Wed, 29 Apr 2026 13:45:19 -0400
Subject: [PATCH 3/4] docs: add CLI install command and link to npm/GitHub
---
README.md | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index d4cf0bec..4ffd5667 100644
--- a/README.md
+++ b/README.md
@@ -106,7 +106,13 @@ See the [AG-UI protocol contract](https://docs.aws.amazon.com/bedrock-agentcore/
### AgentCore CLI (Recommended)
-The fastest way to deploy your agent to Bedrock AgentCore:
+The fastest way to deploy your agent to Bedrock AgentCore. Install via [npm](https://www.npmjs.com/package/@aws/agentcore):
+
+```bash
+npm i -g @aws/agentcore
+```
+
+Then create and deploy your agent:
```bash
agentcore create --name MyAgent --defaults
@@ -115,7 +121,7 @@ agentcore deploy
```
The CLI handles packaging, infrastructure provisioning, and deployment automatically.
-See the [AgentCore CLI documentation](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/runtime-getting-started.html) for full details.
+See the [AgentCore CLI documentation](https://github.com/aws/bedrock-agentcore-cli) for full details.
### AWS CDK (Advanced)
From 7d87ae05a37c1162d7080c97ad42ee408ee7928f Mon Sep 17 00:00:00 2001
From: Tejas Kashinath
Date: Wed, 29 Apr 2026 13:45:51 -0400
Subject: [PATCH 4/4] fix: correct AgentCore CLI GitHub link
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 4ffd5667..b084ec6d 100644
--- a/README.md
+++ b/README.md
@@ -121,7 +121,7 @@ agentcore deploy
```
The CLI handles packaging, infrastructure provisioning, and deployment automatically.
-See the [AgentCore CLI documentation](https://github.com/aws/bedrock-agentcore-cli) for full details.
+See the [AgentCore CLI documentation](https://github.com/aws/agentcore-cli) for full details.
### AWS CDK (Advanced)