load-conversation

Load a past Claude Code conversation transcript by UUID from ~/.claude/projects.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/dhughes/claude-marketplace --skill load-conversation
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: load-conversation
Source: https://github.com/dhughes/claude-marketplace/tree/main/plugins/conversation-loader/skills/load-conversation
Command: npx skills add https://github.com/dhughes/claude-marketplace --skill load-conversation

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill allows you to load the complete transcript of a previous Claude Code conversation into the current context, enabling you to reference past dialogue and files without re-asking for information.

Core Features & Use Cases

  • Load the entire transcript by specifying a UUID, restoring user-assistant history and involved files to the current session.
  • Includes header metadata (ID, project, date, message count), full transcript, and a list of files accessed.
  • Use Case: When you need to recall what happened in a prior conversation to inform a new decision or to locate referenced code changes.

Quick Start

To load a conversation, run the loader with a UUID, e.g.: cd <skill-base-directory>/scripts && ./load-conversation.sh "<conversation-uuid>"

Frequently Asked Questions about load-conversation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I load a previous Claude Code conversation by UUID?

Load a conversation by running the loader script with its UUID: cd <skill-base-directory>/scripts && ./load-conversation.sh "<conversation-uuid>". The script locates the conversation file under ~/.claude/projects, parses the JSONL transcript, and outputs the full dialogue, metadata, and accessed files.

What information is restored when I load a past conversation?

Loading a conversation restores the complete transcript with all user and assistant messages, header metadata (conversation ID, project, date, message count), and a list of files read or edited during that session.

Can I load a conversation to continue work from a previous session?

Yes. Load a past conversation transcript into your current context to reference prior dialogue and files without re-asking for information, enabling you to continue or inform new decisions based on prior work.

What happens if the conversation UUID doesn't exist?

The loader script includes explicit handling for missing conversation files and returns an error message indicating the UUID was not found under ~/.claude/projects.

Do I need to know the exact conversation UUID to load it?

Yes, you must provide the exact UUID of the conversation you want to load. The UUID uniquely identifies the conversation file stored in your Claude Code projects directory.