$npx -y skills add Soul-Brews-Studio/arra-oracle-skills-cli --skill list-issues-pr-pulseOpen issues, PRs, and Pulse board in one view. Use when user says "issues", "prs", "pulse", "board", "what is open", or wants to see project status.
| 1 | # /list-issues-pr-pulse — Issues + PRs + Pulse Board |
| 2 | |
| 3 | One command to see everything that's open. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | ``` |
| 8 | /list-issues-pr-pulse # Issues + PRs (default) |
| 9 | /list-issues-pr-pulse issues # Issues only |
| 10 | /list-issues-pr-pulse prs # PRs only |
| 11 | /list-issues-pr-pulse board # Pulse board |
| 12 | /list-issues-pr-pulse closed # Recently closed issues |
| 13 | /list-issues-pr-pulse merged # Recently merged PRs |
| 14 | ``` |
| 15 | |
| 16 | ## Commands |
| 17 | |
| 18 | ### Default: Issues + PRs |
| 19 | |
| 20 | ```bash |
| 21 | echo "=== ISSUES ===" |
| 22 | gh issue list --state open --limit 20 --json number,title,updatedAt,labels \ |
| 23 | --jq '.[] | "#\(.number) \(.title) [\(.labels | map(.name) | join(","))] (\(.updatedAt[:10]))"' |
| 24 | |
| 25 | echo "=== PRs ===" |
| 26 | gh pr list --state open --json number,title,headRefName \ |
| 27 | --jq '.[] | "#\(.number) \(.title) (\(.headRefName))"' |
| 28 | ``` |
| 29 | |
| 30 | ### closed / merged |
| 31 | |
| 32 | ```bash |
| 33 | gh issue list --state closed --limit 10 --json number,title,closedAt \ |
| 34 | --jq '.[] | "#\(.number) \(.title) (closed \(.closedAt[:10]))"' |
| 35 | |
| 36 | gh pr list --state merged --limit 10 --json number,title,mergedAt \ |
| 37 | --jq '.[] | "#\(.number) \(.title) (merged \(.mergedAt[:10]))"' |
| 38 | ``` |
| 39 | |
| 40 | ## Output |
| 41 | |
| 42 | Format as clean table. If no items in a category, skip silently. |
| 43 | |
| 44 | ARGUMENTS: $ARGUMENTS |