You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use unified review API for code review comments
Switch from posting individual inline comments and separate summary to
GitHub's Pull Request Review API. All comments now submit together as
a single review event, matching native GitHub review flow.
* Add review thread management and resolution
Enables Claude to maintain conversation continuity by resolving fixed
issues and replying to existing threads instead of creating duplicate
comments on subsequent reviews.
- Fetch existing review threads via GraphQL before each review
- Resolve threads when issues are fixed using resolveReviewThread
- Reply to existing threads when issues persist
- Only create new comment threads for genuinely new issues
* Add superpowers workflow to Claude agent
Guides Claude through brainstorming, planning, and implementation when
invoked via @claude mentions. Uses autonomous Socratic brainstorming,
writes temporary planning docs, completes full implementation, then
performs self-review at the end for efficiency.
gh api repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/comments/COMMENT_DATABASE_ID/replies \
224
+
--method POST \
225
+
-f body="Update: Issue has been partially addressed but..."
226
+
```
227
+
228
+
**Important**: This workflow maintains conversation continuity - resolved issues show as "Resolved", ongoing issues have threaded replies, and only new issues create new comment threads.
229
+
131
230
Always post a NEW comment - never update previous ones. Natural conversation flow.
132
231
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
133
232
# or https://docs.claude.com/en/docs/claude-code/cli-reference for available options
IMPORTANT: Before starting any work, read the CLAUDE.md file at the root of this repository. It contains critical project conventions, architecture patterns, and development guidelines that you must follow.
48
+
## Task Context
50
49
51
-
After reading CLAUDE.md, proceed with the following task:
0 commit comments