feat: add Claude Code skills for PR and issue triage#343
Merged
pszymkowiak merged 2 commits intomasterfrom Mar 5, 2026
Merged
Conversation
Two skills that power structured audits directly in Claude Code sessions. They replace ad-hoc manual reviews with a repeatable, documented workflow. **`/pr-triage`** — Pull request audit Scans open PRs, runs deep review on selected ones, and posts formatted review comments to GitHub. Covers code quality, test coverage, security surface, and alignment with CLAUDE.md conventions. Useful before every merge and for contributor onboarding. **`/issue-triage`** — Issue audit Audits open issues, auto-categorizes (bug/feature/doc/question), detects duplicates, cross-references related PRs, and estimates risk/priority. Posts structured comments so maintainers have a clear action queue. Both skills integrate with the `gh` CLI and can be invoked with args: /pr-triage 42 57 — deep review of specific PRs /pr-triage all — full audit of all open PRs /issue-triage — audit-only mode (no comments posted) /issue-triage all en — deep analysis, English output These reduce the overhead of code review and issue management to a single slash command, keeping context inside the Claude Code session. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
dragonGR
pushed a commit
to dragonGR/rtk
that referenced
this pull request
Mar 5, 2026
* feat: add Claude Code skills for PR and issue triage Two skills that power structured audits directly in Claude Code sessions. They replace ad-hoc manual reviews with a repeatable, documented workflow. **`/pr-triage`** — Pull request audit Scans open PRs, runs deep review on selected ones, and posts formatted review comments to GitHub. Covers code quality, test coverage, security surface, and alignment with CLAUDE.md conventions. Useful before every merge and for contributor onboarding. **`/issue-triage`** — Issue audit Audits open issues, auto-categorizes (bug/feature/doc/question), detects duplicates, cross-references related PRs, and estimates risk/priority. Posts structured comments so maintainers have a clear action queue. Both skills integrate with the `gh` CLI and can be invoked with args: /pr-triage 42 57 — deep review of specific PRs /pr-triage all — full audit of all open PRs /issue-triage — audit-only mode (no comments posted) /issue-triage all en — deep analysis, English output These reduce the overhead of code review and issue management to a single slash command, keeping context inside the Claude Code session. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs: fix version references 0.24.0 → 0.25.0 and module count (pre-existing) --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two Claude Code skills (slash commands) that power structured, repeatable audits directly in a Claude Code session — no more ad-hoc reviews.
/pr-triageScans open PRs, runs deep review on selected ones, and posts formatted review comments to GitHub.
42 57(specific PRs),all(full audit), no arg = audit-only/issue-triageAudits open issues, auto-categorizes (bug/feature/doc/question), detects duplicates, cross-references related PRs, and estimates risk/priority.
all(deep analysis), issue numbers to focus,en/frfor languageWhy this matters
Instead of reading PRs and issues manually before a review session, maintainers invoke a single slash command. The skill handles GitHub CLI calls, formats structured output, and posts comments — keeping everything inside the Claude Code session with full context.
Test plan
/pr-triage --help)ghCLI integration tested on this repo🤖 Generated with Claude Code