npx skills add ...
npx skills add aws/agent-toolkit-for-aws --skill analyzing-release-readiness
npx skills add aws/agent-toolkit-for-aws --skill analyzing-release-readiness
Trigger a pre-merge release readiness review on a GitHub PR, GitLab MR, or local branch. Use when the user wants to analyze code changes for risk, correctness, and potential rollback issues before merging. Trigger words include release readiness, analyze PR, analyze MR, review PR, risk analysis, pre-merge, safe to ship, ready to merge, ready to commit, any risks, before merging, validate changes, release management.
AgentSpace routing (SigV4 only): If
list_agent_spacesis available in your tool list and the multi-space orchestration skill has NOT been invoked yet this session, invoke it first to determine whichagent_space_idto use. Then passagent_space_idon all tool calls below. For bearer token auth this is unnecessary — the token is already scoped to one space.
Run a release readiness review via the AWS DevOps Agent. Analyzes a code change for risk, correctness, and potential rollback issues. Returns a structured report with actionable findings.
Rules:
gh CLI, glab CLI, or any external tool to fetch PR/MR details. All required fields (repository, prNumber/mergeRequestIid, hostname) MUST be parsed directly from the URL or user input. The DevOps Agent fetches the content itself — you only need to pass identifiers.Infer everything automatically from the user's request — do not ask for parameters that can be derived.
Input source decision tree:
repository (required): owner/repo from the PR URLheadSha (commit SHA), headBranch (branch name), prNumber (PR number as a string, e.g. "8" not 8)hostname: Extract from the URL (e.g., github.com or a self-hosted hostname)create_release_readiness_review under content.githubPrContent as an array of objects (even for a single PR).Example:
Critical format rules:
githubPrContentMUST be an array (not a single object).prNumberMUST be a string (not an integer).
repository (required): owner/repo from the MR URLheadSha (commit SHA), headBranch (branch name), mergeRequestIid (MR number as a string, e.g. "1" not 1)hostname: Extract from the URL (e.g., gitlab.com or a self-hosted hostname)create_release_readiness_review under content.gitlabMrContent as an array of objects (even for a single MR).Example:
Critical format rules:
gitlabMrContentMUST be an array (not a single object).mergeRequestIidMUST be a string (not an integer). Violating either causes immediate task failure with no journal records.
MANDATORY: When the user references a repository or branch without a PR/MR link, you MUST execute every step below in order. Do NOT shortcut by grabbing the remote URL and SHA directly — the review agent needs a pushed branch to read from. Skipping the push step will cause the analysis to fail or produce incomplete results.
Navigate to the repository directory: cd to the repo root (e.g., the clone directory). Ask the user if needed.
Determine the base branch: Use main unless the user specifies a different branch. Verify the remote tracking branch exists:
If the fetch fails (e.g., "couldn't find remote ref"), ask the user to specify the base branch and stop.
Check for local changes: Run git status --short and git rev-list --count origin/$BASE_BRANCH..HEAD to determine the state and communicate accordingly:
Clean AND not ahead: Inform the user there's nothing new to analyze and stop.
Has uncommitted changes (with or without unpushed commits):
"You have uncommitted changes and N unpushed commits. I'll commit your uncommitted changes on top, then push all N+1 commits to a new branch for analysis. All changes will appear as a single diff against the base branch. Shall I proceed?"
"I'll commit your uncommitted changes and push them to a new branch for release readiness review. Shall I proceed?"
Clean but ahead of remote (rev-list count > 0, no uncommitted changes):
"You have N unpushed commits. I'll push all of them to a new branch for analysis. All changes will appear as a single diff against the base branch. Shall I proceed?"
"I'll push your latest commit to a new branch for release readiness review. Shall I proceed?"
Stash uncommitted changes (skip this step if working directory is clean):
Create review branch (do this BEFORE committing so the snapshot commit only lives on the disposable branch):
Apply stashed changes and commit on the review branch (skip this step if working directory was clean — go straight to step 7):
Before staging, check for sensitive files:
If sensitive files are detected, warn the user and ask for confirmation before proceeding. If the user declines, abort:
Once confirmed (or no sensitive files found):
Push all unpushed commits (requires prior user approval): If the user already approved the push in step 3, proceed directly. Otherwise (e.g., the flow reached here without an explicit approval prompt), confirm before pushing:
"I'm about to push branch
$BRANCH_NAMEtoorigin. This is a prerequisite step, can I proceed?" Do NOT push until the user approves. If they decline, abort and skip to step 11.
Once approved (or if already approved in step 3):
Determine the repository identifier and hostname: Run git remote get-url origin | sed 's|://[^@]*@|://|' to extract the owner/repo and hostname.
githubPrContent, hostname from URLgitlabMrContent, hostname from URLBuild the content: Set headBranch to $BRANCH_NAME, repository to the extracted owner/repo, and hostname to the value from step 8. Wrap the object in an array:
{"githubPrContent": [{"repository": "owner/repo", "headBranch": "feat/release-readiness-review", "hostname": "github.com"}]}{"gitlabMrContent": [{"repository": "namespace/repo", "headBranch": "feat/release-readiness-review", "hostname": "gitlab.com"}]}Inform the user: Tell them which branch was created and pushed, then proceed with the core workflow below.
After analysis completes: Clean up and restore working state:
If step 4 was executed (uncommitted changes were stashed), also run:
Important: Do NOT create a PR/MR — only push the branch. The release readiness review agent will read the branch directly.
STRICT SEQUENCING: Steps below are numbered. You MUST complete each step before moving to the next. In particular, step 1 (automated testing prompt) MUST NOT happen until the entire "Gathering execution parameters" flow above is fully complete — all git operations done, branch pushed (if local flow), content object built, and user informed of the branch. Only THEN proceed to step 1.
skip_automated_testing (ask ONLY after content is ready)The skip_automated_testing parameter controls whether the agent runs automated testing (automated verification tests) or only static analysis.
| Value | Behavior |
|---|---|
true | Skip automated testing, run static analysis only (fast — code review, risk assessment, dependency checks) |
false | Full analysis including automated testing (longer — spins up a testing environment, builds code, runs automated verification tests) |
Present the choice and wait for a response:
"Would you like a quick static analysis (code review, risk assessment, dependency checks), or a full analysis that also includes automated testing? Automated testing spins up a testing environment, builds your code, and runs automated verification tests — it's more thorough but takes longer."
Do NOT proceed until the user answers.
skip_automated_testing=falseskip_automated_testing=trueVerify that the following tools are available: aws_devops_agent__create_release_readiness_review, aws_devops_agent__get_task, aws_devops_agent__list_journal_records, aws_devops_agent__get_release_readiness_report. These tools are NOT deferred/lazy-loaded — if they do not appear in your tool list, they are unavailable. Do NOT search for them via ToolSearch. If any are missing, skip the remaining steps in this section and use the "Fallback (aws-mcp)" path below instead. Tell the user: "Remote server unavailable — using direct aws-mcp server fallback."
Record the taskId and executionId from the response.
Call aws_devops_agent__get_task(task_id=TASK_ID) every 30 seconds until the status transitions to IN_PROGRESS or a terminal state (COMPLETED, FAILED, CANCELED, TIMED_OUT).
Once IN_PROGRESS, poll for progress in a loop:
aws_devops_agent__list_journal_records(execution_id=EXEC_ID, order="ASC") to fetch new findings.next_token from the response to fetch only new records on subsequent polls.aws_devops_agent__get_task(task_id=TASK_ID) periodically — stop when terminal status.Once the job reaches a terminal status:
COMPLETED:
Call aws_devops_agent__get_release_readiness_report(execution_id=EXEC_ID) to retrieve the full report.
Write the report contents to a markdown file:
Inform the user that the report was saved, including the file path.
Auto-fix flow (MANDATORY): After saving the report, you MUST attempt to generate and present fixes for all actionable risks — this is the primary value of the review workflow, not an optional step.
ls to list available directories in the workspace.owner/repo or namespace/repo). For example, testgroupadthiru/repo1updated → look for a directory named repo1updated.<match> — is this the correct local copy of <namespace/repo>?"<repo-name>. Is it available locally under a different name, or should I just show the suggested fixes?"Verify branch: Run git -C <repo-directory> branch --show-current to confirm you're on the expected branch. If not on the expected branch, check out the correct one before proceeding.
Scan the relevant code, interpret the risks/issues from the report. Then tell the user:
"The report identified N actionable issues. I can generate the fixes in your local repository, and push them to a new branch
feat/release-readiness-fix. Shall I proceed?"
Do NOT proceed until the user approves. If they decline, stop.
Once approved, generate the fixes. Then:
Before pushing, verify branch again: Run git branch --show-current and confirm it shows feat/release-readiness-fix*. Do NOT push if you're on any other branch.
Inform the user: which issues were fixed, what branch was created, and that the fix has been pushed.
suggestedFix field from each risk. Format them as code blocks the user can copy-paste directly. Walk through each actionable risk: explain the issue, show the exact fix, and state which file/line it targets.FAILED or TIMED_OUT: Present the error information and suggest next steps.CANCELED: Inform the user the job was canceled and no report is available.FAILED or TIMED_OUT — stop and present the error. If the job failed quickly (within the first poll or two), call aws_devops_agent__list_associations() to check whether the target repository's hosting service (GitHub/GitLab hostname) is associated with the agent space.IN_PROGRESS within 5 minutes — cancel with cancel_release_readiness_review.429 or ThrottlingException) — wait 30 seconds, retry up to 3 times.If the aws-devops-agent remote server is unavailable, use the AWS CLI directly:
Tell the user: "Remote server unavailable — using the aws-mcp server fallback."
List available agent spaces:
Present the list to the user and ask which agent space they'd like to use. Do NOT proceed until the user has selected one. Use the selected agentSpaceId as SPACE_ID in all subsequent calls.
CRITICAL: The
contentvalue must be a single object — NOT wrapped in a list. Correct:"content": {"githubPrContent": [...]}. Incorrect:"content": [{"githubPrContent": [...]}]. Wrapping in a list causes a Pydantic validation failure on the backend. The values in the content should all be of string format e.g. the PR number should be a string.
Default is "skipAutomatedTesting": true (static only). Set to false only if user explicitly opted into automated testing.
Poll every 30 seconds until the status transitions to IN_PROGRESS or a terminal state (COMPLETED, FAILED, CANCELED, TIMED_OUT).
Once IN_PROGRESS, poll for progress in a loop:
next_token from the response to fetch only new records on subsequent polls.get-backlog-task periodically — stop when terminal status.Once the job reaches a terminal status:
COMPLETED:
Retrieve the report:
Write the report contents to a markdown file:
Inform the user that the report was saved, including the file path.
Auto-fix flow (MANDATORY): After saving the report, you MUST attempt to generate and present fixes for all actionable risks — this is the primary value of the review workflow, not an optional step. Follow the same auto-fix flow described in the Core workflow section above (locate repo, verify branch, generate fixes, push to feat/release-readiness-fix).
FAILED or TIMED_OUT: Present the error information and suggest next steps.CANCELED: Inform the user the job was canceled and no report is available.{
"content": {
"gitlabMrContent": [
{
"repository": "namespace/repo",
"mergeRequestIid": "1",
"hostname": "gitlab.com"
}
]
}
}