1.1 KB
yaml
| 1 | schema: 1 |
| 2 | name: pr-reviewer |
| 3 | owner: openagents |
| 4 | version: 1.2.0 |
| 5 | kind: workflow |
| 6 | title: Pull Request Reviewer |
| 7 | summary: Structured PR review with risk classification, a correctness/security/test/perf checklist, and severity-tagged output |
| 8 | license: MIT |
| 9 | tags: [code-review, github, quality, security, testing] |
| 10 | capabilities: [review pull request, summarize diff, flag security risk] |
| 11 | runtimes: [claude-code, cursor, codex, generic] |
| 12 | pricing: |
| 13 | model: free |
| 14 | amount_cents: 0 |
| 15 | currency: usd |
| 16 | entry: WORKFLOW.md |
| 17 | files: |
| 18 | - WORKFLOW.md |
| 19 | - rules/review-checklist.md |
| 20 | - templates/review-comment.md |
| 21 | inputs: |
| 22 | - name: pr_ref |
| 23 | type: string |
| 24 | required: true |
| 25 | description: PR number, branch name, or commit range to review (e.g. "123", "feature/x", "main..HEAD") |
| 26 | - name: base_ref |
| 27 | type: string |
| 28 | required: false |
| 29 | default: main |
| 30 | description: Base branch/ref to diff against when pr_ref is not already a range |
| 31 | - name: post_comments |
| 32 | type: boolean |
| 33 | required: false |
| 34 | default: false |
| 35 | description: Whether to post inline comments to the PR (requires explicit user confirmation) vs. print a local report only |
| 36 | requires: [] |
| 37 |