Help us improve
Share bugs, ideas, or general feedback.
From agent-meta
Captures current Claude Code session state as a reviewable snapshot without stopping work. Summarizes focus, progress, decisions, files touched, and current thread; optionally saves to Markdown file. Ideal for checkpoints, sharing, or reorientation in long sessions.
npx claudepluginhub technicalpickles/pickled-claude-plugins --plugin agent-metaHow this skill is triggered — by the user, by Claude, or both
Slash command
/agent-meta:snapshotThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Capture current session state for review without parking.
Wraps up a work session by recording changed files, caveats, decisions, and next steps so a fresh session can resume without re-deriving context.
Saves current work session context including git state, tasks, decisions, relevant files, and next steps to a markdown file for later /unpark resumption.
Saves Plan-Build-Run session state to .continue-here.md for resumption, capturing current phase, plan progress, git status, and blockers from .planning files.
Share bugs, ideas, or general feedback.
Capture current session state for review without parking.
━━━ Session Snapshot ━━━
Focus: [Current focus/goal]
Progress:
✓ [Completed item]
✓ [Completed item]
○ [In progress item]
○ [Pending item]
Key decisions:
- [Decision 1]
- [Decision 2]
Files touched:
- path/to/file.ts (new)
- path/to/other.ts (modified)
Current thread: [What we're actively discussing/working on]
--saveWrite the snapshot to the parking location as a checkpoint file.
Filename: snapshot-[timestamp].md
Format when saved:
# Snapshot: [Focus]
**Captured:** [Date/time]
**Branch:** [branch-name]
## Progress
- [x] [Completed item]
- [x] [Completed item]
- [ ] [In progress item]
- [ ] [Pending item]
## Key Decisions
- [Decision 1]
- [Decision 2]
## Files Touched
- path/to/file.ts (new)
- path/to/other.ts (modified)
## Current Thread
[What we're actively discussing/working on]
Report: "Snapshot saved to [path]"
| Aspect | /snapshot | /park |
|---|---|---|
| Intent | Review progress | Stop work for later |
| Output | Inline (default) | Always file |
| Resume prompt | No | Yes |
| Next steps | Current state | Future direction |