Agent skill
session-resume
Resume context from previous session
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/session-resume-dgkngk-super-kit
SKILL.md
Session Resume Skill
Helps agents quickly understand where work left off when starting a new session.
When To Use
- At the start of any new conversation
- When context seems missing
- When user asks "what were we working on?"
Instrumentation
# Log usage when using this skill
Call MCP `call_tool_logger_manager` { action: "logSkill", name: "session-resume", outcome: "manual" }
Quick Resume Checklist
1. Check Active Work
# Ready todos (highest priority)
ls todos/*-ready-*.md 2>/dev/null | head -5
# In-progress plans
ls plans/*.md 2>/dev/null
# Recent solutions (for context)
ls -t docs/solutions/**/*.md 2>/dev/null | head -3
2. Check Recent Git Activity
# Recent commits
git log --oneline -5
# Uncommitted changes
git status --short
3. Summarize Context
After gathering info, summarize:
4. Check System Health
Call MCP `call_tool_compound_manager` { action: "dashboard" }
Review health grade and recommendations before starting work.
5. Final Summary
📍 Session Context:
**Active Work:**
- {X} ready todos waiting
- Plan in progress: {plan name if any}
**Recent Activity:**
- Last commit: {subject}
- {Changed files if uncommitted}
**Suggested Next Steps:**
1. {Most logical next action}
2. {Alternative}
Automatic Triggers
Consider running this skill when you see:
- User starts with "continue", "resume", "where were we"
- First message in a new session
- User seems to lack context
References
- Todos:
todos/ - Plans:
plans/ - Solutions:
docs/solutions/ - Workflows:
skills/workflows/
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?