npx claudepluginhub thebushidocollective/han --plugin githubWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
Resume work on a pull request by loading its context, diff, CI status, and review comments
This skill uses the workspace's default tool permissions.
Resume from PR
Name
github:resume-from-pr - Resume work on a pull request
Synopsis
/resume-from-pr <pr-number-or-url>
Description
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.
Implementation
- Parse the PR number or URL from arguments
- Use
gh pr view <number> --json title,body,headRefName,baseRefName,state,reviewDecision,statusCheckRollup,comments,reviewsto fetch PR metadata - Use
gh pr diff <number>to get the current diff - Use
gh pr checks <number>to get CI status - Check out the PR branch:
git checkout <headRefName> - Summarize:
- PR title and description
- Current CI status (passing/failing)
- Review comments and requested changes
- Files changed
- Present a plan for what needs to be done based on the PR state
Example Interaction
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
Arguments
pr-number-or-url(required): A PR number (e.g.,42) or full GitHub URL (e.g.,https://github.com/owner/repo/pull/42)
Tips
- Works best when you have
ghCLI authenticated - The PR branch will be checked out automatically
- Combines well with
/review-prfor a detailed code review before resuming work - If the PR has failing CI, the plan will prioritize fixing those failures first
Related Commands
/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
Similar Skills
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.