Skip to content

Commit 3f3042c

Browse files
ThomasK33claude
andcommitted
chore(reviewfixer): pin acp adapter and clarify install prerequisites
Address review feedback on the reviewfixer config: - Pin @agentclientprotocol/claude-agent-acp to 0.31.1 so `npx -y` no longer pulls an unpinned `latest` with repo-write authority (DEREM-3). - Document how to install the reviewfixer CLI itself, which the prior prerequisites list omitted (DEREM-7). - Add a one-line description of what reviewfixer does (DEREM-9) and a comment naming the external consumer of `/coder-agents-review` (DEREM-11). Change-Id: If6286d60f13224c617d5e91198a17e2c66e12329 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Signed-off-by: Thomas Kosiewski <tk@coder.com>
1 parent ada7b0b commit 3f3042c

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

reviewfixer.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# yaml-language-server: $schema=https://raw.githubusercontent.com/ThomasK33/reviewfixer/refs/heads/main/reviewfixer.schema.json
22
# Config for running reviewfixer against the Claude ACP adapter.
3+
# reviewfixer automatically addresses PR review findings using an AI agent.
34
#
45
# Prerequisites:
5-
# - `node` and `npm`/`npx` available on PATH
6+
# - `reviewfixer` CLI installed (`go install github.com/ThomasK33/reviewfixer@latest`,
7+
# or download a binary from https://github.com/ThomasK33/reviewfixer/releases)
8+
# - `node` and `npm`/`npx` available on PATH (for the ACP adapter below)
69
# - `ANTHROPIC_API_KEY` exported in the shell that launches reviewfixer
710
#
811
# Usage:
@@ -12,7 +15,7 @@
1215
#
1316
# If you install the adapter globally instead of using `npx`, you can replace:
1417
# command: npx
15-
# args: ["-y", "@agentclientprotocol/claude-agent-acp"]
18+
# args: ["-y", "@agentclientprotocol/claude-agent-acp@0.31.1"]
1619
# with:
1720
# command: claude-agent-acp
1821

@@ -23,9 +26,13 @@ runtime:
2326
command: npx
2427
args:
2528
- -y
26-
- "@agentclientprotocol/claude-agent-acp"
29+
# Pinned to avoid pulling an unverified `latest` at invocation time;
30+
# bump deliberately after reviewing release notes.
31+
- "@agentclientprotocol/claude-agent-acp@0.31.1"
2732

2833
review:
2934
request:
35+
# `/coder-agents-review` is consumed by the external coder-agents-review
36+
# bot (not by any workflow in this repository).
3037
- mode: comment
3138
comment: "/coder-agents-review"

0 commit comments

Comments
 (0)