Convo to org
Skill aavanian/convo-to-org
A Claude skill that exports the current conversation to org-mode format.
npx -y skills add aavanian/convo-to-orgAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Export the current conversation to org-mode format. Two modes: (1) notes — generates an org snippet for pasting into a notes file, (2) blog — generates a Hugo-compatible org file with TOML frontmatter. Trigger with phrases like 'save this to my notes', 'summarize for notes', 'save this for my blog', 'summarize for blog', or 'export this conversation'.
SKILL.md
2.4 KB, as published. Nobody here has run it
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.