بنقرة واحدة
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]