pr-review-core 0.13.0

Core engine for a self-hosted advisory AI PR reviewer: fetches a pull request diff, reviews it with a Claude model via OpenRouter, and posts line-anchored inline comments plus a summary. Works with GitHub and Bitbucket.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[
  {
    "provider": "github",
    "repo": "owner/app",
    "pr": 42,
    "issues": [
      { "file": "backend/src/kpis.service.ts", "line": 2488, "type": "bug", "note": "N+1 query inside the tenant loop" },
      { "file": "backend/src/auth.guard.ts", "line": 71, "type": "bug", "note": "user can be undefined when the token is expired" }
    ]
  },
  {
    "provider": "github",
    "repo": "owner/app",
    "pr": 55,
    "issues": []
  }
]