skills/review-handoff/SKILL.md
Read the most recent handoff for this project and orient yourself. The FIRST thing you do when starting a new session.
npx skillsauth add nhouseholder/nicks-claude-code-superpowers review-handoffInstall 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.
Read the latest handoff and orient. FIRST thing at session start.
Triggers: "review handoff", "pick up where we left off", "read handoff", "session start", "continue from last session"
READ-ONLY. Do NOT write a new handoff. Do NOT invoke /full-handoff.
PROJECT_PATH=$(pwd)
PROJECT_NAME=$(basename "$PROJECT_PATH")
GITHUB_REPO=$(git remote get-url origin 2>/dev/null | sed 's|.*/||;s|\.git$||')
[ -z "$GITHUB_REPO" ] && GITHUB_REPO="$PROJECT_NAME"
# Primary: project's own handoffs/ directory
LATEST=$(ls -t "$PROJECT_PATH/handoffs"/handoff_*.md 2>/dev/null | head -1)
# Fallback: superpowers repo (transition period — old handoffs stored there)
if [ -z "$LATEST" ]; then
LATEST=$(ls -t ~/ProjectsHQ/superpowers/handoffs/handoff_${GITHUB_REPO}_*.md 2>/dev/null | head -1)
fi
echo "Project: $PROJECT_NAME | Repo: $GITHUB_REPO"
echo "Latest handoff: ${LATEST:-NONE FOUND}"
If no handoff found: "No previous handoff. First session for this project." Then skip to Step 3.
Read the ENTIRE handoff. Pay special attention to:
git fetch origin --quiet 2>/dev/null
LOCAL_SHA=$(git rev-parse HEAD 2>/dev/null)
REMOTE_SHA=$(git rev-parse origin/main 2>/dev/null || git rev-parse origin/master 2>/dev/null)
echo "Local: $LOCAL_SHA"
echo "Remote: $REMOTE_SHA"
if [ "$LOCAL_SHA" != "$REMOTE_SHA" ]; then
echo "STALE — pulling..."
git pull
fi
echo "Last commit: $(git log -1 --format='%ci %s' 2>/dev/null)"
Read (if they exist): project CLAUDE.md, ~/.claude/anti-patterns.md
SESSION ORIENTED
================
Project: [name] ([repo])
Path: [canonical local path]
Branch: [branch] | Last commit: [date] [message]
Local = Remote: [yes/no]
PREVIOUS SESSION ([date]):
[1-2 sentence summary from handoff]
PICKUP: [In Progress content, or "All tasks completed"]
BLOCKED: [Blocked content, or "Nothing blocked"]
NEXT STEPS:
1. [from handoff]
2. [from handoff]
3. [from handoff]
WARNINGS: [from handoff, or "None"]
Ready to work. What would you like to tackle?
tools
Unified context management and session continuity skill. Combines total-recall, strategic-compact, /ledger, and session continuity. Runs in background to preserve critical context across compaction and sessions.
tools
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
tools
Suggest /ultraplan for complex planning tasks on Claude Code CLI (2.1.91+ only). Research preview.
tools
UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient. Integrations: shadcn/ui MCP for component search and examples.