From context-engine
Resume work from the latest handoff document. Use at the start of a new session to pick up where you left off.
npx claudepluginhub artmin96/forge-studio --plugin context-engineThis skill is limited to using the following tools:
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.
Walks every branching path and boundary condition in code, specs, or diffs, reporting only unhandled edge cases.
Pick up where the last session left off by reading the most recent handoff document.
Find the latest handoff document. Use Glob to search for .claude/handoffs/*.md. Sort by filename (they are date-prefixed) and pick the most recent one. If no handoffs exist, report: "No handoff documents found in .claude/handoffs/. Nothing to resume."
Read the handoff document using the Read tool. This is your briefing.
Check for uncommitted changes:
git status --short
Report whether there are uncommitted changes and list them briefly.
Check for failing tests (best effort):
package.json for a test script, look for Makefile test targets, or pytest/cargo test/go test conventions.Present the briefing in this format:
## Session Briefing
**Last handoff:** {filename} ({date})
**Summary:** {1-2 sentence summary from the Done/In Progress sections}
**Uncommitted changes:** {yes/no, brief list if yes}
**Test status:** {pass/fail/unknown}
**Next steps** (from handoff):
1. {prioritized items from the handoff}
**Gotchas:** {anything flagged in the handoff}
Ready to continue. What would you like to tackle first?