Help us improve
Share bugs, ideas, or general feedback.
From agent-meta
Saves current work session context including git state, tasks, decisions, relevant files, and next steps to a markdown file for later /unpark resumption.
npx claudepluginhub technicalpickles/pickled-claude-plugins --plugin agent-metaHow this skill is triggered — by the user, by Claude, or both
Slash command
/agent-meta:parkThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Save the current work session for later resumption.
Resumes parked coding sessions from handoff documents: locates in CLAUDE.md or .parkinglot/, summarizes next steps, validates git branches/files, offers update or fresh start options.
Writes a CONTINUE_HERE.md file capturing session state so a fresh Claude Code session can pick up where the last one left off. Use when ending a session with unfinished work or handing off context between sessions.
Saves session state and writes a handoff note so the next Claude Code session can continue cleanly. Read/writes a remember.md file at the project root.
Share bugs, ideas, or general feedback.
Save the current work session for later resumption.
Git state
Current task
Key decisions
Relevant files
Next steps
Resume prompt
Resolve location in order:
CLAUDE.md → ## Handoffs or ## Parking → Location:~/.claude/CLAUDE.md → same lookup.parkinglot/ in project rootEnsure the directory exists. If using .parkinglot/, check it's gitignored.
# Parked: [Topic]
**Parked:** [Date/time]
**Session:** [session ID from Bash]
**Branch:** [branch-name]
**Worktree:** [path if applicable]
## Current State
[What's done, what's in progress, any blockers]
## Key Decisions
- [Decision 1 with brief rationale]
- [Decision 2 with brief rationale]
## Relevant Files
- path/to/file.ts (new)
- path/to/other.ts (modified)
- path/to/reference.ts (read)
## Next Steps
1. [Next step]
2. [Next step]
## Resume Prompt
[Suggested prompt to continue this work - specific enough to pick up where we left off]
Use slug from topic: [topic-slug].md
Example: jwt-authentication.md, fix-login-bug.md
Report:
Parked to `[path]`.
To resume in a new session:
/unpark [path]
The /unpark [path] command should be copy-pasteable so the user can easily resume.