- Notifications
You must be signed in to change notification settings - Fork3.1k
[Reply To Review Comments] Add reply_to_review_comment tool for threaded PR review responses#1443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
lossyrob wants to merge22 commits intogithub:mainChoose a base branch fromlossyrob:feature/reply-to-review-comments
base:main
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
+396 −0
Open
Changes fromall commits
Commits
Show all changes
22 commits Select commitHold shift + click to select a range
8bb523f Add planning artifacts for reply-to-review-comments feature
lossyrobbbab98d Merge pull request #1 from lossyrob/feature/reply-to-review-comments_…
lossyrobf5140d4 Add ReplyToReviewComment tool for replying to PR review comments
lossyrob50910fa Merge pull request #2 from lossyrob/feature/reply-to-review-comments_…
lossyrob31c8768 Register ReplyToReviewComment tool in pull_requests toolset
lossyrobd55854c Update ImplementationPlan.md with Phase 2 commit hash
lossyrobd2784b0 docs: clarify intentional variable shadowing in error handling
lossyrob087774e refactor: use responseBody to avoid variable shadowing
lossyrob7289421 Merge pull request #3 from lossyrob/feature/reply-to-review-comments_…
lossyrob8d6c3a9 Add comprehensive tests for ReplyToReviewComment tool
lossyrob558d07d Update ImplementationPlan.md - Phase 3 complete
lossyrobdbfa30b docs: add Phase 3 PR link to ImplementationPlan.md
lossyrob01f9323 test: remove E2E test - unit tests provide sufficient coverage
lossyrob540f87f Merge pull request #4 from lossyrob/feature/reply-to-review-comments_…
lossyrobef35315 Generate documentation and complete Phase 4 validation
lossyrobbc5e8a7 Merge pull request #5 from lossyrob/feature/reply-to-review-comments_…
lossyrob7248261 Add comprehensive documentation for reply_to_review_comment tool
lossyrob44e7f0f Merge pull request #6 from lossyrob/feature/reply-to-review-comments_…
lossyrob80dca50 Add manual testing guide.
lossyrobb15f134 Remove .paw directory, as project isn't using PAW directly.
lossyrob68546f8 Merge branch 'main' into feature/reply-to-review-comments
lossyrob572fe53 Merge branch 'main' into feature/reply-to-review-comments
lossyrobFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| { | ||
| "annotations": { | ||
| "title": "Reply to a review comment", | ||
| "readOnlyHint": false | ||
| }, | ||
| "description": "Reply to a review comment on a pull request. Use this to respond directly within pull request review comment threads, maintaining conversation context at specific code locations.", | ||
| "inputSchema": { | ||
| "properties": { | ||
| "body": { | ||
| "description": "Reply text supporting GitHub-flavored Markdown", | ||
| "type": "string" | ||
| }, | ||
| "comment_id": { | ||
| "description": "Review comment ID from pull_request_read", | ||
| "type": "number" | ||
| }, | ||
| "owner": { | ||
| "description": "Repository owner", | ||
| "type": "string" | ||
| }, | ||
| "pull_number": { | ||
| "description": "Pull request number", | ||
| "type": "number" | ||
| }, | ||
| "repo": { | ||
| "description": "Repository name", | ||
| "type": "string" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "owner", | ||
| "repo", | ||
| "pull_number", | ||
| "comment_id", | ||
| "body" | ||
| ], | ||
| "type": "object" | ||
| }, | ||
| "name": "reply_to_review_comment" | ||
| } |
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
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
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.