Fetch the current pull request's details, CI status, and review state. Use when you need to understand the PR status, check CI/build results, see review comments, understand what reviewers requested, or when the user mentions "the PR", "pull request", "checks", "CI", "build status", or "reviews".
Fetches current pull request details including CI status and review comments.
npx claudepluginhub artu-ai/flowThis skill is limited to using the following tools:
This skill retrieves the current pull request's details to provide context about the PR state.
Get PR details for current branch:
gh pr view --json title,body,state,isDraft,url,number,headRefName,baseRefName,mergeable,reviewDecision,additions,deletions,changedFiles
This returns:
Get status of all checks:
gh pr checks
This shows:
Get review comments if needed:
gh pr view --json reviews --jq '.reviews[] | {author: .author.login, state: .state, body: .body}'
After fetching, summarize based on what the user needs:
PR #123: Implement user authentication
Status: Open (Draft)
Reviews: Awaiting review
CI: 3/4 checks passed, 1 pending
Mergeable: Yes
PR #123 - CI Status:
✓ lint (passed)
✓ typecheck (passed)
✗ test (failed) - https://github.com/...
◯ build (pending)
The test check failed. View details at the link above.
PR #123 - Reviews:
@reviewer1 - Changes Requested:
"Please add error handling for the edge case when..."
@reviewer2 - Approved:
"LGTM!"
PR #123: Implement user authentication
URL: https://github.com/org/repo/pull/123
Status: Open
Branch: feature/auth → main
Changes: +245 -32 across 8 files
Reviews: Changes Requested
- @alice requested changes: "Add tests for token expiry"
CI Status:
✓ lint
✓ typecheck
✓ test
✓ build
Mergeable: Blocked (needs approval)
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.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
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.