Runs automated UAT tests (UI or API) using a test profile on an AWS DevOps Agent, with a remote-server path and a fallback CLI path. Polls for completion and saves the test report to a file.
How this command is triggered — by the user, by Claude, or both
Slash command
/aws-agents-for-devsecops:release-testing test profile IDThe summary Claude sees in its command listing — used to decide when to auto-load this command
Read and follow the `running-release-tests` skill for full execution details. ## Step 0 — Choose your execution path (DO THIS FIRST) Check your available tools. Do you have ALL of these tools? - `aws_devops_agent__create_release_testing_job` - `aws_devops_agent__get_task` - `aws_devops_agent__list_journal_records` - `aws_devops_agent__get_release_ui_testing_report` - `aws_devops_agent__get_release_api_testing_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. - **YES (all present)** → ...
Read and follow the running-release-tests skill for full execution details.
Check your available tools. Do you have ALL of these tools?
aws_devops_agent__create_release_testing_jobaws_devops_agent__get_taskaws_devops_agent__list_journal_recordsaws_devops_agent__get_release_ui_testing_reportaws_devops_agent__get_release_api_testing_reportThese 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.
setup-devops-agent skill if they intend to set up the connection. If not, mention that you are "proceeding with the AWS CLI fallback." Then use the Fallback (CLI) path below.$ARGUMENTS contains a test profile ID (e.g., ki-12345), use it directly.$ARGUMENTS is empty, ask the user which test profile to use.aws_devops_agent__create_release_testing_job(test_profile_id="...", webhook_event_message="...").aws_devops_agent__get_task(task_id=TASK_ID) every 30s.aws_devops_agent__list_journal_records(execution_id=EXEC_ID, order="ASC").COMPLETED: call aws_devops_agent__get_release_ui_testing_report(execution_id=EXEC_ID) (UI) or aws_devops_agent__get_release_api_testing_report(execution_id=EXEC_ID) (API), and save to file.Use this path when the remote server tools are unavailable.
List agent spaces with aws devops-agent list-agent-spaces --region us-east-1 and ask the user which one to use.
Start the job:
aws devops-agent create-backlog-task \
--agent-space-id SPACE_ID \
--task-type RELEASE_TESTING \
--title 'Release Testing' \
--priority MEDIUM \
--description '{"testProfileId": "<PROFILE_ID>", "webhookEventMessage": "<REQUIREMENT>"}' \
--region us-east-1
Poll for status every 30s:
aws devops-agent get-backlog-task \
--agent-space-id SPACE_ID \
--task-id TASK_ID \
--region us-east-1
On completion, retrieve the report. For UI testing, use --record-type qa_ui_testing_report, and for API testing, use --record-type qa_api_testing_report:
aws devops-agent list-journal-records \
--agent-space-id SPACE_ID \
--execution-id EXEC_ID \
--record-type qa_ui_testing_report \
--order ASC \
--region us-east-1
Save to file.
If $ARGUMENTS is empty and no test profile ID is provided, prompt the user.
npx claudepluginhub spencerx/agent-toolkit-for-aws --plugin aws-agents-for-devsecops5plugins reuse this command
First indexed Jun 18, 2026
/release-testingRuns automated UAT tests (UI or API) using a test profile on an AWS DevOps Agent, with a remote-server path and a fallback CLI path. Polls for completion and saves the test report to a file.
/r-testDispatches the UAT subagent to run acceptance tests from an end-user perspective, reporting pass/fail results and UX observations. Accepts optional scope (path, scenario keyword, or current state).
/testOrchestrates agentic end-to-end tests for web and macOS — runs Playwright or Peekaboo drivers, evaluates UX against a rubric, and reconciles findings with the issue tracker.
/fire-verify-uatGuides conversational User Acceptance Testing by walking through critical flows and spawning parallel diagnostic agents on failures.
/run-testsRun chaos tests — inject faults, stress test, and check your agent's resilience to failures
/flow-test-strategy-executionOrchestrates multi-agent test execution across levels (unit, integration, e2e, regression, etc.), validates coverage, triages defects, and reports quality metrics. Accepts --guidance and --interactive flags.