Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2467,7 +2467,7 @@ <h1>ai-helpers</h1>
{
"name": "openshift-developer",
"description": "Bundle of curated plugins, skills, and MCP servers useful to any OpenShift engineer",
"version": "1.1.7",
"version": "1.1.8",
"has_readme": true,
"commands": [],
"skills": [
Expand Down
2 changes: 1 addition & 1 deletion plugins/openshift-developer/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openshift-developer",
"description": "Bundle of curated plugins, skills, and MCP servers useful to any OpenShift engineer",
"version": "1.1.7",
"version": "1.1.8",
"author": {
"name": "github.com/openshift-eng"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ openshift-developer:address-review-pr

## Synopsis
```
/openshift-developer:address-review-pr [PR number] [--preview]
/openshift-developer:address-review-pr [PR number] [--preview] [--ci]
```

## Description
Automates addressing PR review comments by fetching all comments from a pull request, categorizing them by priority (blocking, change requests, questions, suggestions), and systematically addressing each one. Intelligently filters out outdated comments, bot-generated content, and oversized responses to optimize context usage. Handles code changes, posts replies to reviewers, and maintains a clean git history by amending relevant commits rather than creating unnecessary new ones.

When `--ci` is passed: NEVER ask interactive questions or wait for user input. Make autonomous decisions. When in doubt, proceed with the safest action.

## Implementation

### Step 0: Checkout the PR Branch
Expand Down Expand Up @@ -238,6 +240,7 @@ Show: total comments found, filtered out, addressed with code changes, replied t
## Arguments
- `$1`: PR number (optional — uses current branch if omitted)
- `--preview`: Preview each comment's proposed action and reply before proceeding
- `--ci`: Non-interactive CI automation mode

## Duplicate Prevention

Expand Down