export-chat-history
Installation
SKILL.md
Export Chat History
Three-step workflow: discover sessions across providers, select one, export and share via GitHub Gist.
Prerequisites: jq, gawk, gh (GitHub CLI, authenticated).
Step 1: Discover Sessions
Detect which providers have session data on this machine, then list recent sessions from all of them.
Provider Detection
# Check which providers exist
[ -d ~/.claude/projects ] && echo "claude-code"
[ -d ~/.cursor/projects ] && echo "cursor"
ls ~/.claude/projects/ 2>/dev/null | grep -q "conductor-workspaces" && echo "conductor"