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 & CodingAdvanced★ 69,295⑂ 5,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 usesgit log,git blame,git showto 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 aSUMMARY.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
"triage issues"→ get per-issue reports split into confirmed bugs, already-fixed, and needs-more-info."triage PRs"→ get merge-readiness tables covering CI, review state, conflicts and risk for each PR."github triage"→ process issues and PRs together, then read only the "Items Requiring Attention" section ofSUMMARY.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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Make sure
gh(GitHub CLI),git, andjqare installed, then rungh auth login. - Clone the repo:
git clone https://github.com/code-yeongyu/oh-my-openagent.git - Copy the skill:
mkdir -p ~/.claude/skills && cp -r oh-my-openagent/.opencode/skills/github-triage ~/.claude/skills/ cdinto the repository you want to triage and restart Claude Code.- Ask for
triage issuesorgithub triage. - Read the output in
/tmp/{datetime}/—issue-N.md,pr-N.md, andSUMMARY.md. - 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 GitHub ↗License: NOASSERTION