Feat / Add transport abstraction and SSE and JSON-RPC implementation #16
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
| name: Claude Code Review | |
| on: | |
| pull_request: | |
| types: [opened, ready_for_review] | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| claude-review: | |
| if: > | |
| (github.event_name == 'pull_request') || | |
| (github.event_name == 'issue_comment' && | |
| github.event.issue.pull_request && | |
| github.event.comment.body == '/review') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| id-token: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Checkout PR branch (comment trigger) | |
| if: github.event_name == 'issue_comment' | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: gh pr checkout ${{ github.event.issue.number }} | |
| - name: Run Claude Code Review | |
| id: claude-review | |
| uses: anthropics/claude-code-action@v1 | |
| with: | |
| claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} | |
| prompt: | | |
| REPO: ${{ github.repository }} | |
| PR NUMBER: ${{ github.event.pull_request.number || github.event.issue.number }} | |
| Review this PR. Read REVIEW.md at the repo root for files/paths to skip. | |
| Before commenting, read all existing review comments and conversations | |
| on this PR to avoid repeating prior feedback. | |
| ## What to comment on (ONLY these) | |
| - Bugs or logic errors that would cause incorrect behavior | |
| - Security vulnerabilities | |
| - Breaking changes to public APIs | |
| ## What NOT to comment on | |
| - Style, formatting, or naming — CI runs `mix format` and `mix credo --strict` | |
| - Minor refactoring or cleanup suggestions | |
| - Anything a linter or formatter would catch | |
| - "Consider" or "you might want to" suggestions | |
| - Test coverage gaps (unless a bug is untested) | |
| ## Confidence scoring | |
| For each potential issue, internally rate your confidence from 1-10. | |
| Only post issues you rate 8/10 or higher. If unsure, skip it. | |
| ## Output rules | |
| - Maximum 5 inline comments total | |
| - Use `mcp__github_inline_comment__create_inline_comment` (with `confirmed: true`) for specific code issues | |
| - Use `gh pr comment` for a top-level summary | |
| - If no issues meet the criteria above, post a single summary comment: | |
| "Reviewed — no high-confidence issues found. LGTM." | |
| - Only post GitHub comments — don't submit review text as messages | |
| max_turns: 15 | |
| allowed_tools: | | |
| Read | |
| Glob | |
| Grep | |
| Bash(gh pr comment:*) | |
| Bash(gh pr diff:*) | |
| Bash(gh pr view:*) | |
| mcp__github_inline_comment__create_inline_comment |