Agent skill
load-conversation
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.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/load-conversation
SKILL.md
Load Conversation
Load a past conversation by its UUID into the current context. This retrieves the full user/assistant message transcript from the conversation history database.
Usage
The user will provide a conversation ID (UUID) in one of these formats:
- "load conversation abc123-def456-..."
- "show me conversation abc123"
- "show me that conversation" (when ID was mentioned previously)
Instructions
-
Extract the conversation UUID from the user's request. It should be a UUID-like string (with or without dashes).
-
Run the load command:
bash ${CLAUDE_PLUGIN_ROOT}/skills/load-conversation/scripts/load.sh --id "CONVERSATION_UUID"
Replace CONVERSATION_UUID with the actual conversation ID from the user's request.
-
Present the conversation transcript to the user in a readable format.
-
If the conversation is not found, inform the user and suggest:
- Verifying the conversation ID
- Using the conversation search skill to find the correct ID
Output
The transcript will show:
- Conversation metadata (ID, project, dates)
- Full message history with USER and CLAUDE labels
- Timestamps for each message
This allows the user to review past discussions and use them as context for the current conversation.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?