From flow
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".
npx claudepluginhub artu-ai/flow --plugin 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.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Performs token-optimized structural code search using tree-sitter AST parsing to discover symbols, outline files, and unfold code without reading full files.
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)