Continue Session banner
secondsky secondsky

Continue Session

Development community intermediate

Description

Quickly continue work by loading context from SESSION.md, showing current state, and continuing from "Next Action". ---

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for secondsky/claude-skills, shared by 6 entries in this directory. It describes the repository, not this entry specifically.

Continue Session

Quickly continue work by loading context from SESSION.md, showing current state, and continuing from "Next Action".


Your Task

Follow these steps to load session context and resume work efficiently.

1. Load Session Context (Use Explore Agent)

Use the Task tool with subagent_type="Explore" and description "Load session context for resuming work" to gather:

  • Find and read SESSION.md
  • Find and read IMPLEMENTATION_PHASES.md (focus on current phase section)
  • Extract current phase number and name
  • Extract current stage (Implementation/Verification/Debugging)
  • Extract last checkpoint hash and date
  • Extract "Next Action" (file + line + what to do)
  • Extract known issues
  • Extract progress (completed and pending tasks)
  • Get list of planning docs mentioned in SESSION.md
  • Run git log --oneline -5 for recent commits
  • Run git status for uncommitted changes

**If SESSION.md doesn't exist:**

  • Output: "❌ No SESSION.md found. Is this a new project?"
  • Suggest: "Run project-planning skill to set up session management."
  • Stop here

**If IMPLEMENTATION_PHASES.md doesn't exist:**

  • Output: "⚠️ Warning: No IMPLEMENTATION_PHASES.md found."
  • Output: "Continuing with SESSION.md only. Some context may be limited."
  • Continue anyway

2. Check for Uncommitted Changes

If `git status` shows uncommitted changes:

  • Output warning:
    ⚠️ WARNING: Uncommitted changes detected!
    
    Uncommitted files:
    [list files from git status]
    
    These changes weren't checkpointed. Continue anyway? (y/n)

**If user says no:**

  • Output: "Stopping. Run /wrap-session to checkpoint changes first."
  • Stop here

**If user says yes:**

  • Output: "⚠️ Proceeding with uncommitted changes. Remember to checkpoint later."
  • Continue

3. Show Recent Git History

Output formatted git history:

📜 Recent Commits (last 5):

[hash] [commit message line 1]
[hash] [commit message line 1]
[hash] [commit message line 1]
[hash] [commit message line 1]
[hash] [commit message line 1]

Current checkpoint: [hash from SESSION.md] ([date])

4. Display Session Summary

Output formatted summary:

═══════════════════════════════════════════════
   WELCOME BACK TO [PROJECT NAME]
═══════════════════════════════════════════════

📋 Current Phase: Phase [N] - [Phase Name] ([Status emoji])
📍 Current Stage: [Implementation/Verification/Debugging]
💾 Last Checkpoint: [hash] ([date])

───────────────────────────────────────────────
PROGRESS THIS PHASE:
───────────────────────────────────────────────

✅ [completed task]
✅ [completed task]
✅ [completed task]
🔄 [current pending task] ← CURRENT
⏸️ [future pending task]
⏸️ [future pending task]

───────────────────────────────────────────────
KNOWN ISSUES:
───────────────────────────────────────────────

• [issue 1]
• [issue 2]
[or "None" if no issues]

───────────────────────────────────────────────
NEXT ACTION:
───────────────────────────────────────────────

[Concrete next action from SESSION.md]
Fi