Persists and restores mid-session workflow progress across context resets. Use when resuming workflows, saving state, or handling context compaction. Triggers on: handoff, save state, resume workflow.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add ngocsangyem/MeowKit --skill mk-session-continuation --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Mk Session Continuation?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ngocsangyem-mk-session-continuation)More formats (shields.io, HTML) on the badges page.
---
name: "mk-session-continuation"
description: "Persists and restores mid-session workflow progress across context resets. Use when resuming workflows, saving state, or handling context compaction. Triggers on: handoff, save state, resume workflow."
---
<!-- Split for progressive disclosure (checklist #11, #14): 427 → ~60 lines -->
# Session Continuation
Manage workflow state across sessions with handoff and resume.
## When to Use
- Runtime reports that the session is approaching its context-warning threshold
- User says "handoff", "save", "pause"
- User says "resume" + workflow ID
- Session ending with incomplete workflow
- Incomplete workflow from previous session
## Plan State Variables
```toon
state_vars[4]{var,purpose,persistence}:
MEOWKIT_ACTIVE_PLAN,Current active plan path,Session temp file
MEOWKIT_SUGGESTED_PLAN,Branch-matched plan hint,Inferred from git branch
MEOWKIT_COMPLEXITY,Auto-detected task complexity,Session memory
MEOWKIT_ACTIVE_AGENTS,Currently active agents,Session memory
```
## Process
1. **Detect trigger** — token limit, user command, or session ending
2. **If handoff** — load `references/handoff-flow.md`, execute save + summary
3. **If resume** — load `references/resume-and-state.md`, execute load + restore + continue
4. **If list** — show all saved workflows from `.codex/logs/workflows/`
## References
| Reference | When to load | Content |
|-----------|-------------|---------|
| **[handoff-flow.md](./references/handoff-flow.md)** | On handoff/save trigger | State save format, summary generation |
| **[resume-and-state.md](./references/resume-and-state.md)** | On resume trigger | Resume steps, state management, error handling, TOON format |
## Quick Commands
```
workflow:handoff → Save state + get resume instructions
workflow:resume AUTH-123 → Load state + continue from last phase
workflow:list → Show all saved workflows
```
## Gotchas
- **Stale handoff after codebase changes**: Saved state references files that were renamed or deleted → Validate all file paths in handoff state before resuming
- **TOON corruption on concurrent sessions**: Two agents writing state simultaneously → Use file locking or session-scoped state filesIs this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!