sessionlog:export-all
Installation
SKILL.md
Session Log Export All
Export all Claude Code sessions for the current project to standard LLM conversation JSON and human-readable TXT transcripts.
Steps
1. Identify the project session directory
project_dir="$HOME/.claude/projects/$(pwd | sed 's|/|-|g')"
echo "Project session directory: $project_dir"
session_count=$(ls "$project_dir"/*.jsonl 2>/dev/null | wc -l | tr -d ' ')
echo "Sessions found: $session_count"
2. Determine output directory
Use the output directory specified in the user's prompt. If none was specified, default to docs/sessionlogs/ relative to the current working directory.
Related skills