src/skills/whats-next/SKILL.md
Smart action suggestions — scan context, rank priorities, suggest top 3 actions. Use when user says "whats next", "what should I do", "next action", "priorities", or wants direction.
npx skillsauth add Soul-Brews-Studio/oracle-skills-cli whats-nextInstall 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.
Scan context → rank priorities → suggest top 3 actions.
/whats-next # Scan everything, suggest top 3
/whats-next --issues # Focus on open issues only
# Open issues
gh issue list --state open --limit 10 --json number,title,updatedAt,labels \
--jq '.[] | "#\(.number) \(.title) [\(.labels | map(.name) | join(","))]"' 2>/dev/null
# Git status
git status --short
git log --oneline -3
# Open PRs
gh pr list --state open --json number,title,headRefName \
--jq '.[] | "#\(.number) \(.title) (\(.headRefName))"' 2>/dev/null
# Latest handoff
PSI=$(readlink -f ψ 2>/dev/null || echo "ψ")
ls -t "$PSI/inbox/handoff/"*.md 2>/dev/null | head -1 | xargs head -30 2>/dev/null
# Stale branches
git branch --list | grep -v '^\*' | grep -v main
| Signal | Weight | |--------|--------| | Uncommitted changes | High | | Open PR needs merge | High | | Handoff pending items | Medium | | P0/P1 issues | Medium | | Stale branches | Low | | Old issues | Low |
## What's Next?
### 1. [Top priority action]
Why: [reasoning from signals]
How: `[command or /skill]`
### 2. [Second action]
Why: [reasoning]
How: `[command or /skill]`
### 3. [Third action]
Why: [reasoning]
How: `[command or /skill]`
---
Pick one, or tell me what you'd rather do.
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".