github-pr

Automate GitHub PR review triage, guideline discovery, and inline comments.

5|Updated Dec 28, 2025
One-click install
npx skills add https://github.com/Bind/skillz.sh --skill github-pr-bind
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-pr
Source: https://github.com/Bind/skillz.sh/tree/main/docs/registry/skills/github-pr
Command: npx skills add https://github.com/Bind/skillz.sh --skill github-pr-bind

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

GitHub PR workflows often suffer from repetitive checks and inconsistent review decisions. This Skill provides automated PR utilities to streamline triage, enforcement of guidelines, and targeted inline feedback.

Core Features & Use Cases

  • Check Review Needed: Determine whether a PR should be reviewed based on status, author, and changes.
  • List Guideline Files: Find AGENTS.md or CLAUDE.md in changed files to surface team guidelines.
  • Post Inline Comment: Add precise inline feedback on PRs to accelerate fixes.
  • Use Case: A reviewer wants to quickly decide if a PR requires attention and surface relevant guidelines before commenting.

Quick Start

Run sample commands to exercise the Skill:

  • Check the current PR: bun .opencode/skill/github-pr/check-review-needed.js
  • List guideline files for a PR: bun .opencode/skill/github-pr/list-guideline-files.js 123 --json
  • Post an inline comment: bun .opencode/skill/github-pr/post-inline-comment.js 123 --path src/app.ts --line 42 --body "Please update this function to handle edge cases"

Frequently Asked Questions about github-pr

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate GitHub PR triage to decide if a pull request needs review?

Automate GitHub PR triage by running the check-review-needed script to evaluate PR status, author, and changes, yielding a clear review necessity decision to speed up workflow processing.

How do I find AGENTS.md or CLAUDE.md guideline files in changed PR files?

Find guideline files in changed PR files by running the list-guideline-files script with a PR number, which surfaces AGENTS.md or CLAUDE.md content to inform team review decisions.

How do I post inline comments on a GitHub pull request via command line?

Post inline comments on a GitHub pull request by executing the post-inline-comment script with the PR number, file path, line number, and comment body to provide precise code review feedback.

Do I need GitHub CLI and bun runtime to automate pull request checks?

Yes, you need the GitHub CLI and bun runtime installed to automate pull request checks, as the skill relies on gh commands and bun to execute its JavaScript review scripts.

What is the best way to enforce code review guidelines on open-source PRs?

The best way to enforce code review guidelines on open-source PRs is to automatically discover AGENTS.md or CLAUDE.md files in changed paths and post targeted inline comments addressing violations.