Conversation to Org-mode Export
Export the current conversation as an org-mode snippet for notes or as a Hugo blog post.
Output Formats
Notes Format
Trigger: "save this to my notes", "summarize for notes", "export to notes"
* Headline with timestamp and tags [YYYY-MM-DD Day] :llm_convo:topic_tags:
:PROPERTIES:
:URL: https://claude.ai/chat/CHAT_ID_HERE
:END:
#+begin_quote
2-3 sentence summary of the conversation.
Key points:
- Point 1
- Point 2
- ...
2-3 sentence conclusion (if applicable).
#+end_quote
Blog Post Format
Trigger: "save this for my blog", "summarize for blog", "export for blog"
+++
date = 'YYYY-MM-DD'
title = 'Headline'
subtitle = 'Inferred subtitle'
description = 'Inferred description for SEO/preview'
author = 'Post-Candide'
meta = true
math = false
toc = false
draft = true
categories = ['']
tags = ['inferred', 'tags']
+++
* Headline
#+begin_quote
2-3 sentence summary of the conversation.
Key points:
- Point 1
- Point 2
- ...
2-3 sentence conclusion (if applicable).
#+end_quote
** Full Conversation
[Include the full conversation transcript, formatted as a dialogue]
Instructions
Analyze the conversation to extract:
- A concise, descriptive title
- Relevant topic tags (always include
llm_convo, then add 1-3 topic tags) - A 2-3 sentence summary
- Key points and arguments as a bullet list
- Optional 2-3 sentence conclusion
For timestamps:
- Notes: use org-style
[YYYY-MM-DD Day](e.g.,[2026-01-10 Sat]) - Blog: use date only
YYYY-MM-DD(e.g.,2026-01-10)
- Notes: use org-style
Chat URL: use placeholder
https://claude.ai/chat/CHAT_ID_HERE— user will replace manually.For blog posts:
- Set
math = trueonly if the conversation involves mathematical notation - Infer
subtitleas a one-line expansion of the title - Infer
descriptionas a 1-2 sentence SEO-friendly summary - Infer
tagsconsistent with the org-mode tags used in headlines
- Set
Output the org snippet in a code block so user can copy-paste easily.