A

Knowledge Pack Files

Autonomous Agents Knowledge Pack Files

Browse the source files that power the Autonomous Agents MCP server knowledge pack.

Available free v1.0.0 Browser
$ sidebutton install agents
Download ZIP
ops/agent_qa_followup.yaml
1.4 KB
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"
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)."