This skill should be used when the user asks to "resume work", "continue where we left off", "what were we working on", "pick up from last session", or starts a session wanting context from previous work.
From engram-mcpnpx claudepluginhub astrosteveo/engram --plugin engramThis 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.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
Retrieve context from previous sessions to seamlessly continue work.
Call memory_resume to get comprehensive session state:
mcp__plugin_engram-mcp_engram__memory_resume
This returns:
Search for in-progress work:
ls -la .artifacts/*/progress.md 2>/dev/null
If artifacts exist, read the most recent progress.md to understand:
If user mentions a specific topic, search for it:
mcp__plugin_engram-mcp_engram__memory_search
query: "{topic from user}"
n_results: 5
Structure the resume context clearly:
## Previous Session Context
### Last Active Work
{What was being worked on}
### Current State
- **Phase/Status:** {where things stand}
- **Open Items:** {todos or incomplete tasks}
- **Last Action:** {what was done most recently}
### Key Context
{Relevant decisions, constraints, or information}
### Suggested Next Steps
1. {Most logical next action}
2. {Alternative if needed}
---
Ready to continue. What would you like to focus on?
If .artifacts/{slug}/progress.md exists with incomplete checklist:
Example output:
**Resuming: dark-mode-toggle**
Status: Implementation phase (5/8 complete)
- [x] Discovery, Explore, Requirements, Design, Implement
- [ ] Review, Testing, Summary
Last action: Implemented theme toggle component
Suggest: Continue to code review phase. Run `/harness:feature "dark mode toggle"` to proceed.
If no artifacts found but memory exists:
Example output:
No active feature workflows found.
**Recent work:**
- 3 days ago: Fixed authentication bug
- 5 days ago: Refactored API error handling
**Recent decisions:**
- Selected JWT over sessions for auth (2 days ago)
What would you like to work on today?
If no engram memory exists:
This appears to be a fresh project with no previous session context.
The `.engram/` directory will be created automatically as you work.
What would you like to start with?
Resume context is assembled from:
| Source | Contains |
|---|---|
.engram/state.json | Todos, active files, last phase |
| ChromaDB index | Past exchanges, tool uses |
| Insight index | Decisions and lessons |
.artifacts/ | Feature workflow progress |
| Git history | Recent commits, changes |
/resume at the start of any session after a break