muse_export_session
Export vibe coding sessions to Markdown, JSON, or HTML formats for creating shareable documentation, backups, or reports from session history.
Instructions
Exports vibe coding sessions to various formats (Markdown, JSON, HTML). Use for creating shareable documentation, backups, or reports from session history.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionIds | No | Specific session IDs to export. If omitted, exports all sessions. | |
| format | Yes | Output format: markdown (readable docs), json (structured data), html (web page) | |
| outputPath | No | File path to save the export. If omitted, returns content directly. | |
| includeMetadata | No | Include session metadata (ID, timestamps, tags). Default: true | |
| includeCodeBlocks | No | Include code blocks from code contexts. Default: true | |
| includeDesignDecisions | No | Include design decisions. Default: true | |
| template | No | Template style: minimal (brief), default (balanced), detailed (comprehensive), report (formal) | |
| title | No | Document title. Default: "Vibe Coding Session Export" | |
| bundleMultiple | No | Combine multiple sessions into one document. Default: true |