A

Autonomous Agents Agentic Workflow

SE: Apply Review Feedback — Autonomous Agents Agentic Workflow

Read review feedback, apply changes to existing PR, push updates

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

A software engineer agent uses this chain to act on reviewer comments on one of its existing PRs. It reads every unresolved review thread, understands the requested change, edits the affected files, runs the local test suite, and pushes updated commits. Each thread is either addressed with a fix or replied to with a rationale for not changing it.

The workflow is scoped strictly to the PR under review — it does not open new PRs or take on adjacent work. Run it whenever a human or QA agent has left feedback that needs developer action and the PR is still open.

Steps

  1. 1.
    Open a terminal
    title
    Agent: SE Followup
    cwd
    {{entry_path}}
    terminal.open
  2. 2.
    Run a terminal command
    cmd
    >-
    terminal.run

Workflow definition

schema_version: 1
id: agent_se_followup
title: "SE: Apply Review Feedback"
description: "Read review feedback, apply changes to existing PR, push updates"
overview: |
  A software engineer agent uses this chain to act on reviewer comments on one of its existing PRs. It reads every unresolved review thread, understands the requested change, edits the affected files, runs the local test suite, and pushes updated commits. Each thread is either addressed with a fix or replied to with a rationale for not changing it.

  The workflow is scoped strictly to the PR under review — it does not open new PRs or take on adjacent work. Run it whenever a human or QA agent has left feedback that needs developer action and the PR is still open.

category:
  level: pipeline
  domain: engineering

metadata:
  agent: true
  role: se

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: SE Followup"
    cwd: "{{entry_path}}"
  - type: terminal.run
    cmd: >-
      source ~/.agent-env && claude --dangerously-skip-permissions
      "read ticket with attachments and focus on recent comments - {{ticket_url}}. if it fails, stop and report the error.
      find the linked PR and read review comments to understand requested changes.
      learn how to SE relevant parts, check out the existing branch, and apply the requested changes.
      push updates to the PR.
      {{hint}}
      write one comment to the ticket with: each review item addressed (file refs) and confirmation that changes are pushed."