https://github.com/ricoberger/prlsp
prlsp is an LSP server for surfacing GitHub PR review comments in-editor.
https://github.com/ricoberger/prlsp
github lsp pull-requests
Last synced: about 5 hours ago
JSON representation
prlsp is an LSP server for surfacing GitHub PR review comments in-editor.
- Host: GitHub
- URL: https://github.com/ricoberger/prlsp
- Owner: ricoberger
- Created: 2026-07-04T04:38:41.000Z (3 days ago)
- Default Branch: main
- Last Pushed: 2026-07-04T11:01:07.000Z (3 days ago)
- Last Synced: 2026-07-04T11:07:28.765Z (3 days ago)
- Topics: github, lsp, pull-requests
- Language: Go
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# prlsp
`prlsp` is an LSP server for surfacing GitHub PR review comments in-editor (as
diagnostics), with commands / code-actions to create replies and new comments.
## Install
### Releases
Check the [releases](https://github.com/ricoberger/prlsp/releases) page for the
full list of pre-built binaries.
1. Download the release for your os/arch
2. Unzip the archive to get the `prlsp` binary
3. Add the `prlsp` binary to your `PATH`
### Source
```sh
go install github.com/ricoberger/prlsp@latest
```
## Development
To build and run the binary the following commands can be used:
```sh
go build -o ./bin/prlsp .
./bin/prlsp
```
## Acknowledgments
This is a "fork" of [prlsp](https://github.com/toziegler/prlsp), which contains
the original code and some of the open PRs.