A

Autonomous Agents Agentic Workflow

QA: Re-review PR After Fixes — Autonomous Agents Agentic Workflow

Re-review PR after developer addresses prior QA feedback — does NOT test live site

Available free v1.0.0 Browser
$ sidebutton install agents
Download ZIP
qa

A follow-up QA pass that focuses strictly on the latest commits added in response to earlier review comments. The agent reads the prior review thread, checks each requested change, and confirms that the developer addressed every item without regressing previously-approved behaviour. It only reads code on the PR branch — it does not touch the deployed site.

Use this after a developer has pushed fixes to a PR that QA already reviewed once. The PR acceptance outcome is posted back to the ticket along with a clear approve, request-changes, or block decision.

Steps

  1. 1.
    Open a terminal
    title
    Agent: QA Re-review PR
    cwd
    {{entry_path}}
    terminal.open
  2. 2.
    Run a terminal command
    cmd
    >-
    terminal.run

Workflow definition

schema_version: 1
id: agent_qa_followup
title: "QA: Re-review PR After Fixes"
description: "Re-review PR after developer addresses prior QA feedback — does NOT test live site"
overview: |
  A follow-up QA pass that focuses strictly on the latest commits added in response to earlier review comments. The agent reads the prior review thread, checks each requested change, and confirms that the developer addressed every item without regressing previously-approved behaviour. It only reads code on the PR branch — it does not touch the deployed site.

  Use this after a developer has pushed fixes to a PR that QA already reviewed once. The PR acceptance outcome is posted back to the ticket along with a clear approve, request-changes, or block decision.

category:
  level: pipeline
  domain: engineering

metadata:
  agent: true
  role: qa

params:
  ticket_url:
    type: string
    description: "Jira ticket URL"
  hint:
    type: string
    default: ""
    description: "Optional extra instructions for the agent"
  entry_path:
    type: string
    default: "~/workspace"
    description: "Working directory for the agent"

steps:
  - type: terminal.open
    title: "Agent: QA Re-review PR"
    cwd: "{{entry_path}}"
  - type: terminal.run
    cmd: >-
      source ~/.agent-env && claude --dangerously-skip-permissions
      "read ticket with attachments and all comments - {{ticket_url}}. if it fails, stop and report the error.
      focus on the most recent QA comments to understand what previously failed, and the most recent SE comment to find the updated PR.
      learn how to QA relevant parts.
      IMPORTANT — the fix is in a PR branch, NOT deployed. do NOT test the live site.
      1. review the latest PR changes against prior QA feedback.
      2. verify each previously reported issue is addressed.
      3. confirm original acceptance criteria still hold.
      {{hint}}
      write one comment to the ticket with: re-test results per prior issue, any new issues found, and verdict (PASS or FAIL)."