Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

GitHub Triage (Read-Only Analyzer)

Analyzes every open GitHub issue and PR in parallel and writes permalink-backed triage reports without ever mutating the repository.

Dev & CodingAdvanced69,2955,711AI score 9/10Last updated: Sep 22, 2026

What it does

  • Fetches all open issues and PRs (with 500-per-page pagination) and dispatches one background subagent per item.
  • Classifies issues as question / bug / feature / other and PRs as bugfix / other, each with a dedicated report template.
  • For bugs it renders a verdict — CONFIRMED_BUG / NOT_A_BUG / ALREADY_FIXED / UNCLEAR — and uses git log, git blame, git show to locate the fixing commit when already resolved.
  • Evidence rule is absolute: every factual claim needs a commit-SHA permalink; unsupported statements must be marked [UNVERIFIED].
  • Zero GitHub mutations: no comments, merges, closes, labels or reviews. Output is markdown files under /tmp/{datetime}/ plus a SUMMARY.md.

Who it's for

  • Open-source maintainers drowning in an issue/PR backlog.
  • Team leads preparing weekly backlog-grooming notes.
  • Anyone who wants AI analysis of a repo but strictly no write access to GitHub.

Examples

  1. "triage issues" → get per-issue reports split into confirmed bugs, already-fixed, and needs-more-info.
  2. "triage PRs" → get merge-readiness tables covering CI, review state, conflicts and risk for each PR.
  3. "github triage" → process issues and PRs together, then read only the "Items Requiring Attention" section of SUMMARY.md.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/HEAD/.opencode/skills/github-triage/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .opencode/skills/github-triage folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/code-yeongyu-github-triage/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent && mkdir -p ~/.claude/skills && cp -r /tmp/oh-my-openagent/.opencode/skills/github-triage ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Make sure gh (GitHub CLI), git, and jq are installed, then run gh auth login.
  2. Clone the repo: git clone https://github.com/code-yeongyu/oh-my-openagent.git
  3. Copy the skill: mkdir -p ~/.claude/skills && cp -r oh-my-openagent/.opencode/skills/github-triage ~/.claude/skills/
  4. cd into the repository you want to triage and restart Claude Code.
  5. Ask for triage issues or github triage.
  6. Read the output in /tmp/{datetime}/issue-N.md, pr-N.md, and SUMMARY.md.
  7. Note: the skill was written for OpenCode's background task tools (task_create, background_output), so on other runtimes the parallel fan-out may fall back to sequential analysis.
View source on GitHubLicense: NOASSERTION