This directory contains a real export from a GitHub Copilot conversation demonstrating CSV attachment capture.
This example shows the exporter's ability to:
- Capture CSV files from both user uploads and Copilot-generated files
- Insert inline attachment links at the appropriate location in the conversation
- Maintain clean folder structure with only
attachments/folder
The main markdown export with inline attachment links.
Contains all captured files:
aia-glossary-001.csv- Original CSV file uploaded by useraia-glossary-cleaned-001.csv- Cleaned/deduplicated CSV generated by Copilotimage-001.png- Screenshot uploaded in the conversation
Debug artifact containing the full HTML of the page (useful for troubleshooting).
Attachments appear directly in the conversation where they're referenced:
## User
📎 **Attachment:** [aia_glossary.csv](attachments/aia-glossary-001.csv)
here you are file
## Assistant
Here's the cleaned file I produced:
📎 **Attachment:** [aia_glossary_cleaned.csv](attachments/aia-glossary-cleaned-001.csv)# 1. Login once to save authentication
python scraper_playwright.py --mode login --url https://github.com/copilot/c/YOUR_CONVERSATION_ID
# 2. Export with assets
python scraper_playwright.py --mode run --url https://github.com/copilot/c/YOUR_CONVERSATION_ID --with-assetsoutput/conversation-name/
├── attachments/
│ ├── aia-glossary-001.csv
│ ├── aia-glossary-cleaned-001.csv
│ └── image-001.png
├── chat-export.md
└── page.html
Clean, simple, focused on actual user attachments.