src/skills/list-issues-pr-pulse/SKILL.md
Open 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.
npx skillsauth add Soul-Brews-Studio/oracle-skills-cli list-issues-pr-pulseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
One command to see everything that's open.
/list-issues-pr-pulse # Issues + PRs (default)
/list-issues-pr-pulse issues # Issues only
/list-issues-pr-pulse prs # PRs only
/list-issues-pr-pulse board # Pulse board
/list-issues-pr-pulse closed # Recently closed issues
/list-issues-pr-pulse merged # Recently merged PRs
echo "=== ISSUES ==="
gh issue list --state open --limit 20 --json number,title,updatedAt,labels \
--jq '.[] | "#\(.number) \(.title) [\(.labels | map(.name) | join(","))] (\(.updatedAt[:10]))"'
echo "=== PRs ==="
gh pr list --state open --json number,title,headRefName \
--jq '.[] | "#\(.number) \(.title) (\(.headRefName))"'
gh issue list --state closed --limit 10 --json number,title,closedAt \
--jq '.[] | "#\(.number) \(.title) (closed \(.closedAt[:10]))"'
gh pr list --state merged --limit 10 --json number,title,mergedAt \
--jq '.[] | "#\(.number) \(.title) (merged \(.mergedAt[:10]))"'
Format as clean table. If no items in a category, skip silently.
ARGUMENTS: $ARGUMENTS
testing
Cut a beta pre-release — bump CalVer with --beta, PR to beta branch, CI auto-tags + publishes to npm @beta. Use when user says 'release beta', 'cut beta', '/release-beta', or wants to publish a beta version for pre-release testing.
testing
Cut an alpha pre-release — bump CalVer, PR to alpha branch, CI auto-tags + publishes to npm @alpha. Use when user says 'release alpha', 'cut alpha', '/release-alpha', or wants to publish an alpha version.
tools
Talk to another oracle via maw federation. Uses fleet machine names (white, mba, clinic-nat, oracle-world, phaith). Auto-signs with current oracle's [host:handle] from CLAUDE.md. Global — works from any oracle repo.
development
Log information for future reference. Use when user says "fyi", "remember this", "note that", "for your info".