sessionlog:recap
Installation
SKILL.md
Session Recap
Read the last 3 session logs for this project and produce a concise TLDR of what was worked on.
Steps
1. Find recent sessions
project_dir="$HOME/.claude/projects/$(pwd | sed 's|/|-|g')"
sessions=$(ls -t "$project_dir"/*.jsonl 2>/dev/null | head -4)
echo "$sessions"
We grab up to 4 because the most recent one is the current session. Skip it and use the 3 before it.
2. Export each session to readable TXT
For each of the 3 previous sessions (skip the first/current one):
Related skills