From 1ffbeb35d5570de48f8f8ef962b91ee2a5c152a4 Mon Sep 17 00:00:00 2001 From: JobRamos <33988720+JobRamos@users.noreply.github.com> Date: Fri, 10 Apr 2026 15:00:26 -0600 Subject: [PATCH] Update README.md In the [What's next section](https://github.com/awslabs/agentcore-samples/tree/main/00-getting-started), the --agent flag has been updated to --runtime, therefore the following command in the guide will fail: > agentcore add online-eval --name QualityMonitor --agent CustomerSupport --evaluator Builtin.GoalSuccessRate --sampling-rate 100 --enable-on-create Only a quick update is necessary Signed-off-by: JobRamos <33988720+JobRamos@users.noreply.github.com> --- 00-getting-started/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/00-getting-started/README.md b/00-getting-started/README.md index 27140bc6d..f3c8ad917 100644 --- a/00-getting-started/README.md +++ b/00-getting-started/README.md @@ -368,7 +368,7 @@ You now have a working agent running locally and in the cloud. Here are the next |---|---|---| | **Add Memory** | `agentcore add memory --name SharedMemory --strategies SEMANTIC,SUMMARIZATION --expiry 30` | Agent remembers users across sessions | | **Add Gateway** | `agentcore add gateway --name my-gateway --runtimes CustomerSupport` | Centralize and share tools across agents via MCP | -| **Add Evaluations** | `agentcore add online-eval --name QualityMonitor --agent CustomerSupport --evaluator Builtin.GoalSuccessRate --sampling-rate 100 --enable-on-create` | Continuous quality monitoring | +| **Add Evaluations** | `agentcore add online-eval --name QualityMonitor --runtime CustomerSupport --evaluator Builtin.GoalSuccessRate --sampling-rate 100 --enable-on-create` | Continuous quality monitoring | | **View Logs** | `agentcore logs` | Stream live logs from your deployed agent | | **View Traces** | `agentcore traces list --limit 10` | Inspect OpenTelemetry traces in CloudWatch |