From 02518012538427854e605ec67118433ca8ff19af Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Thu, 12 Feb 2026 17:54:54 -0500 Subject: [PATCH 1/2] Modify .pr_agent.toml for PR commands and settings Updated PR agent configuration to include new commands and settings. --- .pr_agent.toml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.pr_agent.toml b/.pr_agent.toml index 1839914fcc..3b4001defa 100644 --- a/.pr_agent.toml +++ b/.pr_agent.toml @@ -1,7 +1,15 @@ # .pr_agent.toml [github_app] -# Run these tools automatically on every new PR: -pr_commands = ["/describe", "/review", "/improve"] +pr_commands = [ +pr_commands = [ + "/review", + "/improve", +] + +handle_push_trigger = true +push_commands = [ + "/improve", +] [pr_reviewer] # (all fields optional) num_max_findings = 10 # how many items to surface From f8c2811cc3d6b23d4dbfa89a748739e2139a0422 Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Thu, 12 Feb 2026 17:55:26 -0500 Subject: [PATCH 2/2] Update command syntax in .pr_agent.toml Refactor command lists in .pr_agent.toml for clarity. --- .pr_agent.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.pr_agent.toml b/.pr_agent.toml index 3b4001defa..9411d1cfe7 100644 --- a/.pr_agent.toml +++ b/.pr_agent.toml @@ -1,15 +1,12 @@ # .pr_agent.toml [github_app] -pr_commands = [ pr_commands = [ "/review", "/improve", ] handle_push_trigger = true -push_commands = [ - "/improve", -] +push_commands = ["/improve"] [pr_reviewer] # (all fields optional) num_max_findings = 10 # how many items to surface