← ClaudeAtlas

unparklisted

Resume work from a parked handoff
technicalpickles/pickled-claude-plugins · ★ 10 · AI & Automation · score 73
Install: claude install-skill technicalpickles/pickled-claude-plugins
# Unpark Resume work from a parked handoff document, or read a wrapped close-out record as reference. ## Process ### 1. Find Handoff Check parking locations in order: 1. Project `CLAUDE.md` -> `## Handoffs` or `## Parking` -> `Location:` 2. User `~/.claude/CLAUDE.md` -> same lookup 3. Default: `.parkinglot/` in project root If multiple files exist, group them by mode and list: ``` Active handoffs: (A) jwt-authentication.md - Parked 2026-05-06 (B) fix-login-bug.md - Parked 2026-05-04 Wrapped (reference only): (C) sanitation-skill-fix-wrapped.md - Wrapped 2026-03-30 (D) confirm-dotfiles-work-role-wrapped.md - Wrapped 2026-04-12 (E) Other location ``` Detect group by filename suffix (`-wrapped.md`) and the file's first heading (`Parked:` vs `Wrapped:`). Filename and heading should agree; if they disagree, trust the heading and note the mismatch. ### 2. Branch on Mode After the user picks a file, read it and check the first heading. - `# Parked:` -> continue with **Continuation Flow** below - `# Wrapped:` -> switch to **Reference Flow** below ### Continuation Flow #### 2a. Read and Present Read the handoff and present a summary: ``` Resuming: [Topic] Parked: [Date] Branch: [branch] Current state: [Brief summary] Next steps: 1. [Step 1] 2. [Step 2] ``` #### 2b. Validate Check that the handoff is still valid: - [ ] Git branch matches (or can be checked out) - [ ] Worktree exists (if specified) - [ ] Key files still exist - [ ] Decisions sti