From github
Resumes GitHub PR work by loading details, diff, CI status, reviews; checks out branch and generates fix plan from failures/comments.
npx claudepluginhub thebushidocollective/han --plugin githubThis skill uses the workspace's default tool permissions.
github:resume-from-pr - Resume work on a pull request
Loads GitHub PR context for a branch: title, description, file changes, CI status, reviews via MCP tools. Manual /load-pr-context or auto on feature branches.
Reviews GitHub PR workflow results and reviewer comments, categorizes feedback, and addresses substantive issues with fixes, optional commit, and push.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Share bugs, ideas, or general feedback.
github:resume-from-pr - Resume work on a pull request
/resume-from-pr <pr-number-or-url>
Load full context for a pull request to resume work. Fetches PR details, diff, CI check status, and review comments to provide complete context for continuing development.
This maps to Claude Code's --from-pr flag which creates a PR-linked session.
gh pr view <number> --json title,body,headRefName,baseRefName,state,reviewDecision,statusCheckRollup,comments,reviews to fetch PR metadatagh pr diff <number> to get the current diffgh pr checks <number> to get CI statusgit checkout <headRefName>User: /resume-from-pr 42
Claude: Loading PR #42 context...
**PR #42: Add user authentication**
- Branch: `feature/auth` -> `main`
- Status: Changes requested
- CI: 2/3 checks passing (lint failing)
**Review Comments:**
- @reviewer: "Please add input validation for email field"
- @reviewer: "Missing test for password reset flow"
**Plan:**
1. Fix ESLint errors in auth module
2. Add email input validation
3. Add password reset test
pr-number-or-url (required): A PR number (e.g., 42) or full GitHub URL (e.g., https://github.com/owner/repo/pull/42)gh CLI authenticated/review-pr for a detailed code review before resuming work/load-pr-context: Load PR context without checking out the branch/review-pr: Get a comprehensive code review of a PR/create-pr: Create a new pull request