AWS bedrock-agentcore documentation change
Summary
Updated documentation to replace references to 'Amazon Bedrock AgentCore starter toolkit' with 'AgentCore CLI', changing installation method from pip to npm and updating deployment commands from 'configure/launch' to 'create/deploy'.
Security assessment
This change updates tooling references and deployment workflows but contains no evidence of addressing security vulnerabilities, weaknesses, or incidents. The changes are procedural updates about using a different CLI tool (npm-based vs pip-based) with no security context mentioned.
Diff
diff --git a/bedrock-agentcore/latest/devguide/runtime-get-started-websocket.md b/bedrock-agentcore/latest/devguide/runtime-get-started-websocket.md index 3816d4ba1..3907a2833 100644 --- a//bedrock-agentcore/latest/devguide/runtime-get-started-websocket.md +++ b//bedrock-agentcore/latest/devguide/runtime-get-started-websocket.md @@ -66 +66 @@ This flexibility allows you to use your preferred WebSocket implementation acros -In this getting started tutorial you will create, test, and deploy an agent application that supports bidirectional streaming using the **bedrock-agentcore Python SDK** and the **Amazon Bedrock AgentCore starter toolkit** for deployment. +In this getting started tutorial you will create, test, and deploy an agent application that supports bidirectional streaming using the **bedrock-agentcore Python SDK** and the **AgentCore CLI** for deployment. @@ -93 +93 @@ Before you start, make sure you have: - * **AWS Permissions** : To create and deploy an agent with the starter toolkit, you must have appropriate permissions. For more information, see [Use the starter toolkit](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/runtime-permissions.html#runtime-permissions-starter-toolkit). + * **AWS Permissions** : To create and deploy an agent with the AgentCore CLI, you must have appropriate permissions. For more information, see [Use the AgentCore CLI](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/runtime-permissions.html#runtime-permissions-cli). @@ -217 +217 @@ Test your bidirectional streaming agent locally by opening another terminal wind -Install the Amazon Bedrock AgentCore starter toolkit: +Install the AgentCore CLI: @@ -220 +220 @@ Install the Amazon Bedrock AgentCore starter toolkit: - pip install bedrock-agentcore-starter-toolkit + npm install -g @aws/agentcore @@ -227 +227 @@ Verify installation: -#### Configure and deploy to AWS +#### Create project and deploy to AWS @@ -229 +229 @@ Verify installation: -Configure your bidirectional streaming agent for deployment: +Create a new project for your bidirectional streaming agent: @@ -232 +232 @@ Configure your bidirectional streaming agent for deployment: - agentcore configure -e websocket_echo_agent.py + agentcore create @@ -237 +237 @@ Deploy your agent: - agentcore launch + agentcore deploy