一键导入
pr-status
Check status of a PR - CI, reviews, merge readiness
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check status of a PR - CI, reviews, merge readiness
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Weekly backlog audit — field completeness, staleness tiers, and duplicate detection. Run during grooming to clean up the backlog.
Creates a JIRA Bug with steps to reproduce, expected/actual behavior, and fix criteria. Activates when users ask to create a bug report, file a bug, or report an issue.
Creates a JIRA Epic with scope, success criteria, and child story breakdown. Activates when users ask to create an epic.
Creates a JIRA Story with user story format, acceptance criteria, and technical notes. Activates when users ask to create a story or user story.
Creates a JIRA Task for tech debt, infrastructure, documentation, or spike work. Activates when users ask to create a task, spike, tech debt ticket, or infrastructure work.
Daily briefing — sprint progress, new tickets, and recent comments in one report. Run this to get oriented at the start of the day.
| name | pr-status |
| description | Check status of a PR - CI, reviews, merge readiness |
| allowed-tools | Bash |
| argument-hint | ["PR-URL-or-number"] |
Check the full status of a pull request: CI checks, review status, and merge readiness.
$1 (optional): PR URL or number. If omitted, detects the PR for the current branch.gh pr view ${1:+$1} --json number,title,state,author,baseRefName,headRefName,additions,deletions,changedFiles,mergeable,reviewDecision,statusCheckRollup,reviews,url 2>/dev/null
gh pr checks ${1:+$1} 2>/dev/null
gh pr view ${1:+$1} --json reviews --jq '.reviews[] | "\(.author.login): \(.state)"' 2>/dev/null
### PR #[number]: [title]
**URL**: [url]
**Author**: @[author]
**Branch**: [head] → [base]
**State**: [Open/Closed/Merged]
---
| Check | Status |
|-------------|---------------------------|
| CI | PASS / FAIL / PENDING |
| Reviews | X/Y approved |
| Mergeable | Yes / No / Conflicting |
---
#### CI Checks
| Name | Status | Duration |
|---------------------|---------|----------|
| [check-name] | PASS | 3m 12s |
| [check-name] | FAIL | 1m 45s |
#### Review Status
| Reviewer | Decision |
|---------------|-------------------|
| @[reviewer] | APPROVED |
| @[reviewer] | CHANGES_REQUESTED |
| @[reviewer] | PENDING |
---
#### Action Items
1. [What needs to happen before this can merge]
2. [Any failing checks to investigate]
3. [Any reviews still pending]