Load the full content of a previous Claude Code conversation into current context. Use when user asks to "load conversation <uuid>" or "show me conversation <uuid>" or references loading/viewing a past conversation by its ID.
This skill is limited to using the following tools:
scripts/load-conversation.shLoad the complete transcript of a previous Claude Code conversation, providing full context of the user-assistant dialogue and files involved.
Extract the conversation UUID from the user's request. It should be a UUID format like:
e06a3702-af08-41d7-a425-403622c2f266f792926c-99b9-44ca-8733-e9f9db276da2The loader script is located in this skill's scripts/ directory. Execute it:
cd <skill-base-directory>/scripts && ./load-conversation.sh "<conversation-uuid>"
Note: The <skill-base-directory> is automatically provided by Claude Code as the base directory for this skill.
The script will output:
Present the entire output from the script to load the conversation context. The transcript format is:
=== CONVERSATION ===
ID: <uuid>
Project: <project-path>
Date: <timestamp>
Messages: <count>
=== TRANSCRIPT ===
[User]:
<message content>
[Assistant]:
<message content>
[User]:
<message content>
...
=== FILES ACCESSED ===
Read:
- /path/to/file1.rb
- /path/to/file2.rb
Edited:
- /path/to/file3.rb
~/.claude/projects/<encoded-path>/<uuid>.jsonlUser: "load conversation e06a3702-af08-41d7-a425-403622c2f266" → Execute loader script with the UUID, display full transcript
User: "show me what we discussed in f792926c-99b9-44ca-8733-e9f9db276da2" → Execute loader script with the UUID, display full transcript
User: "can you load the conversation from earlier where we worked on retry_before_failing?" → User should first use conversation-search to find the UUID, then load it