Summarize current project state after a long break. Analyzes recent git history, beads issues, and memory to produce a one-page orientation. Use when returning to a project cold, or when asking "what was I doing", "where did I leave off".
From mindcontext-corenpx claudepluginhub tmsjngx0/mindcontext-core --plugin mindcontext-coreThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Generates FastAPI project templates with async routes, dependency injection, Pydantic schemas, repository patterns, middleware, and config for PostgreSQL/MongoDB backends.
Get up to speed after being away. One-page summary: what happened, where things stand, what's next.
Parse $ARGUMENTS:
3) → look back N daysall → 30 daysDAYS="${ARGUMENTS:-7}"
Run all queries:
git log --format="%h %s" --since="$DAYS days ago" --all --no-merges 2>/dev/null | head -20
br list --status=in_progress --json 2>/dev/null
br list --status=open --json 2>/dev/null | head -20
br list --status=closed --json 2>/dev/null | head -10
Read memory index for relevant context:
Read: ~/.claude/projects/*/memory/MEMORY.md
Scan referenced memory files that relate to active work.
git status --short 2>/dev/null
git stash list 2>/dev/null
git submodule status 2>/dev/null
git worktree list 2>/dev/null
CATCHUP — last $DAYS days
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
## What Happened
[Group commits by theme/epic. 3-5 bullet points max.]
- [theme]: [what was done] ([N commits])
## Current State
| Area | Status |
|------|--------|
| Branch | [current branch] |
| Uncommitted | [Y files / clean] |
| Stashed | [N stashes / none] |
| Worktrees | [list active worktrees] |
## Active Work
[In-progress beads tasks]
- [issue-id]: [title] — [brief status from last comment]
## Ready to Pick Up
[Top 3 ready tasks by priority]
- [issue-id]: [title] (P[N])
## Recommended Next
→ [Single most impactful action, with rationale]
Rules:
Quick actions:
- /next — claim or resume a task
- /recall [topic] — search past sessions
- /handoff — generate handoff for someone else