AWS DevOps Agent now vets your changes before production (preview)!
Hi everyone, it's Shii! Today I found an announcement that makes the moment right before you push code to production a whole lot calmer. I'm so excited!
AWS Blog
What was announced?
On the AWS Blog (AWS News), AWS announced new release management capabilities for AWS DevOps Agent, now in preview.
There are two big additions: release readiness review and autonomous release testing. Both let the agent check "is this really safe to ship?" before your code reaches production.
AWS DevOps Agent already had features for post-deployment operations, and those stay generally available (GA). This update adds a pre-release point of view on top.
The story so far
Lately AI writes more and more of our code, so the volume of changes coming up for review keeps growing. When there's that much to look at, it's hard for people to review each change carefully, and there's always a worry about slipping a problem into production.
On top of that, a change's impact often isn't limited to a single repository. Cross-repository dependencies and access control changes are easy to miss, and they can quietly bite you later. The idea here is to have those checked mechanically, but with context.
What changes
When you open a pull request, the agent can evaluate release readiness automatically, or on demand if you ask it in chat.
- Write your internal standards in natural language, and it reviews against them
- It looks at cross-repository dependency risks and access control changes
- Findings show up in the AWS DevOps Agent console and as pull request comments
Think of it as the agent doing the prep work for that final pre-production check, so people can focus on the final call.
Dive Deep
Let's look a little closer.
Release readiness review evaluates changes against production requirements and internal standards. Specifically, it:
- Verifies changes against the natural-language standards you define
- Checks cross-repository dependency risks that could affect other services
- Validates access control changes against the AWS Well-Architected Framework best practices
- Applies general best practices when you haven't defined your own standards
- Runs lightweight user journey tests in AWS-managed isolated environments
- Surfaces findings in the console and as PR comments
Autonomous release testing generates and runs change-specific test plans for web and API-based applications. It:
- Builds tests tailored to what the change actually does
- Covers functional correctness, behavioral regressions, and integration scenarios
- Runs tests in a production-like environment that you provision
- Produces structured artifacts like metrics, logs, traces, and summaries
For workflow, it supports GitHub and GitLab repositories. In the IDE, the Kiro power and Claude Code plugins let you spot risks even before you commit. The console includes a chat interface, Changes tracking, a Timeline view, and detailed reporting.
As for availability, it's in preview in US East (N. Virginia), with no additional cost during preview.
Wrap-up
- AWS DevOps Agent adds release management in preview to look at changes before production
- Two new features: release readiness review (standards, dependencies, access control) and autonomous release testing (per-change test generation and execution)
- Review against internal rules written in natural language, with findings in the console and as PR comments
- Supports GitHub and GitLab; IDE integration via Kiro power and Claude Code plugins
- Preview in US East (N. Virginia), no additional cost
I think this really lands for dev and ops teams buried in reviewing AI-written code. Having a partner you can hand that final pre-production glance to feels reassuring!