docs(claude): note review-reply threading hygiene#6421
Merged
Conversation
When responding to PR review comments (Codex bot or human reviewers),
use the `replies` endpoint (`POST .../pulls/{pr}/comments/{id}/replies`)
or pass `in_reply_to_id` so the reply is **threaded under** the
original comment, not posted as a standalone inline comment at the
same line. Threaded replies show in the "Resolved conversations"
view; standalone inline comments don't. Verify via the GitHub API
that `in_reply_to_id` is set on your new comment.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
277d237 to
a43bf75
Compare
trinity-1686a
approved these changes
May 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds one entry to the Known Pitfalls table in
CLAUDE.md.I'd been replying to Codex review comments by posting new inline comments at the same line rather than as threaded replies under the original. They look similar in some views but are NOT the same — the reply chain is broken, and the "Resolved conversations" view doesn't roll them up together.
Correct technique with
gh:gh api repos/{owner}/{repo}/pulls/{pr}/comments/{codex_comment_id}/replies --input reply.jsonor pass
in_reply_to_idin the POST body topulls/{pr}/comments. Verify via the API thatin_reply_to_idis set on the new comment.Test plan