Frontmatter
| id | 7484 |
| title | Get PR Conversation History |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Oct 14, 2025, 12:56 PM |
| updatedAt | Oct 14, 2025, 1:08 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7484 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 7477 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 14, 2025, 1:08 PM |

For an agent to effectively review and comment on a pull request, it needs the full context of the conversation. This includes the PR's title, description (body), and all previous comments.
This ticket covers implementing a new endpoint to retrieve this complete conversation history for a given pull request.
Acceptance Criteria
openapi.yamlis updated with a newGET /pull-requests/{pr_number}/conversationendpoint.getConversationfunction is added topullRequestService.mjs.gh pr view <PR_NUMBER> --json title,body,commentscommand to fetch the data.routes/pullRequests.mjsfile is updated with the new route and handler.