conversation-export

Export conversation histories into JSON, CSV, and Markdown formats.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/liushuang393/serverlessAIAgents --skill conversation-export
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: conversation-export
Source: https://github.com/liushuang393/serverlessAIAgents/tree/main/agentflow/skills/builtin/conversation_export
Command: npx skills add https://github.com/liushuang393/serverlessAIAgents --skill conversation-export

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill exports conversation histories into JSON, CSV, and Markdown formats for easy archiving, sharing, and analysis.

Core Features & Use Cases

  • JSON export: structured data suitable for programmatic processing and integration.
  • CSV export: spreadsheet-friendly format for data analysis and reporting.
  • Markdown export: readable, shareable transcripts for documentation and reviews.
  • Use Case: Convert chat transcripts from support chats into a single report for stakeholders.

Quick Start

Use the ConversationExportSkill to export a list of messages. Example: exporter = ConversationExportSkill(); json_data = await exporter.export_json(messages)

Frequently Asked Questions about conversation-export

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

FAQPage Schema
How do I export conversation histories to JSON, CSV, or Markdown?

To export conversation histories, you can use the ConversationExportSkill to convert a list of messages into JSON, CSV, or Markdown formats. It provides simple APIs to transform chat data into structured data or readable documents.

What is the best way to convert chat transcripts into a single report for stakeholders?

The best way to convert chat transcripts into a single report for stakeholders is exporting the conversation histories to Markdown. This creates readable, shareable transcript documents suitable for documentation and reviews.

Can I export conversations to CSV for data analysis and reporting?

Yes, you can export conversations to CSV for data analysis and reporting. The CSV export feature generates a spreadsheet-friendly format, allowing you to easily analyze and report on the structured conversation data.

Does conversation export support JSON for programmatic processing and integration?

Yes, conversation export supports JSON for programmatic processing and integration. The JSON export feature converts messages into structured data, making it suitable for integrating chat histories into other applications.

Do I need any external dependencies to export messages into structured data?

No, you do not need any external dependencies to export messages into structured data. The conversation export skill operates independently without requiring additional components or libraries to generate JSON, CSV, or Markdown files.