session-export
Export a project's Claude Code sessions into a readable transcript dump (the input the project-timeline skill needs). Walks the user through choosing the project, scoping which sessions to include (date window, excluding meta/plugin runs), and warns about secrets before writing. Use when the user wa
Install
mkdir -p .claude/skills/session-export && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15368" && unzip -o skill.zip -d .claude/skills/session-export && rm skill.zipInstalls to .claude/skills/session-export
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Export a project's Claude Code sessions into a readable transcript dump (the input the project-timeline skill needs). Walks the user through choosing the project, scoping which sessions to include (date window, excluding meta/plugin runs), and warns about secrets before writing. Use when the user wants to export, dump, collect, or back up their Claude Code sessions for a project so they can be analysed or coached. Produces <out>/<session-id>.txt transcripts + INDEX.md + manifest.json. Reads ~/.claude/projects/<encoded-path>/*.jsonl.About this skill
session-export
This skill's full rubric lives at .agents/skills/session-export/SKILL.md. Read that file before acting on this skill. The body of this stub carries no substantive content.
Scripts bundled with this skill live at .agents/skills/session-export/scripts/ and should be invoked from the repo root.
Edits must be made in .agents/skills/session-export/SKILL.md and re-mirrored with python tools/gather.py.