AgentSkillsCN

transcript

在归档Claude Code对话时,结合研究元数据进行操作——利用IDW2025三重框架(提示/过程/溯源)生成HTML、Markdown以及PDF导出文件。

SKILL.md
--- frontmatter
name: transcript
description: Use when archiving Claude Code conversations with research metadata - generates HTML, markdown, and PDF exports using IDW2025 Three Ps framework (Prompt/Process/Provenance)

Transcript Archive Skill

Archive Claude Code conversations with research-grade metadata using the IDW2025 reproducibility framework.

When to Use

  • End of significant coding sessions
  • When you want to preserve conversation context for future reference
  • When documenting AI-assisted development for research
  • When you need readable exports (markdown, PDF) of a conversation

Quick Reference

Command: /transcript

Outputs generated:

FileDescription
index.htmlFull HTML transcript with expandable tool details
conversation.mdReadable markdown showing user/assistant exchange
conversation.pdfStyled PDF with colored speaker turn borders
session.meta.jsonComplete metadata including Three Ps

Three Ps Framework (IDW2025)

PQuestionExample
PromptWhat was asked/needed?"Add PDF export to transcript tool"
ProcessHow was the tool used?"Feature-dev skill with code exploration and TDD"
ProvenanceRole in broader context?"Part of research reproducibility toolkit"

CLI Usage

bash
# Interactive (recommended)
/transcript

# Direct CLI with metadata
claude-research-transcript --local --retitle \
  --title "Session Title" \
  --prompt "What was accomplished" \
  --process "How Claude was used" \
  --provenance "Research context"

Installation

bash
# Install CLI tool
uv tool install git+https://github.com/Denubis/claude-code-research-transcript-hook

# Install plugin (includes /transcript command)
/plugin install file:///path/to/claude-code-research-transcript-hook
# Or from marketplace when published

Dependencies

  • Python 3.10+
  • claude-code-transcripts (auto-installed)
  • pandoc + lualatex (optional, for PDF generation)