transcript

Saves the current session transcript to a dated file for later continuation.

3|Updated Jan 10, 2026
One-click install
npx skills add https://github.com/MaxWolf-01/agents --skill transcript-maxwolf-01
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: transcript
Source: https://github.com/MaxWolf-01/agents/tree/main/mx/skills/transcript
Command: npx skills add https://github.com/MaxWolf-01/agents --skill transcript-maxwolf-01

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Long agent sessions lose context when they end, forcing you to restart work from scratch. This Skill persists the full session transcript to disk so a future session can pick up exactly where you left off. ## Core Features & Use Cases - Transcript Export: Saves the current session's transcript via the ccx CLI into the agent/transcripts/ directory with a date-prefixed filename. - Descriptive Session Naming: Generates a lowercase dash-separated slug covering all major topics, making transcripts easy to identify later. - Continuation Handoff: Reports the session name and file path so you can rename the session and resume by reading the transcript in full. - Use Case: After a long debugging session on Docker Compose environment variables, save the transcript as deploy-script-docker-compose-env-vars-debugging and continue the investigation in a fresh session without losing context. ## Quick Start Ask the agent to save this session's transcript for later continuation and it will export the transcript file and report the path to resume from.

Frequently Asked Questions about transcript

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

FAQPage Schema
How do I save an agent session transcript for later?

Invoke the transcript skill, which runs ccx with the current session ID to export the transcript into agent/transcripts/ with a date-prefixed filename. It then reports the path so you can resume from it in a new session.

How do I continue work from a saved session transcript?

Start a new session and instruct the agent to read the saved transcript file in full from agent/transcripts/ before continuing. The skill output includes the exact path and a suggested /rename command for the new session.

What naming convention is used for saved transcripts?

Filenames combine the current date with a lowercase dash-separated slug describing the session's major topics, such as 2025-01-15-auth-migration-research-jwt-vs-sessions.txt. Ticket or spec names lead the slug when applicable.

Does the transcript skill create the transcripts directory automatically?

No, the skill assumes agent/transcripts/ already exists and explicitly does not run mkdir -p. Create the directory once in your project before first use.

What tools does the transcript skill depend on?

It requires the ccx CLI to export the session by ID and access to the CLAUDE_SESSION_ID environment variable. Without ccx installed, the transcript export command will fail.