Chat History Import Triage
Turns an exported Claude/ChatGPT history into a privacy-reviewed, triaged list of what to ingest, archive, or delete.
UtilitiesIntermediate★ 288⑂ 50AI score 8/10Last updated: Sep 23, 2026
What it does
- Converts a chat export into one Markdown file per conversation via
scripts/chat_export_to_md.py, skipping very short exchanges. - Runs a privacy pass first: flags conversations touching health, money, other people's private info, or confidential work — you decide, the assistant deletes nothing on its own.
- Triages the remainder into three piles (worth ingesting / archive in
raw// delete suggested) and reports them before moving anything. - On approval, ingests only the first pile, building pages around your reasoning and conclusions rather than the assistant's explanations, with dates recorded on every page.
Who it's for
- People moving years of AI chat history into a personal knowledge vault.
- Anyone worried that a raw export contains sensitive material that shouldn't be synced or committed.
- PKM users running a second-brain-os style workflow.
Examples
- "I unzipped my ChatGPT export — tell me what's worth keeping." → conversion counts, a privacy-review list, and an ingest shortlist.
- "Import my Claude history into the vault." → an aggressively filtered triage (roughly 9 in 10 chats are throwaway lookups) that only acts after you approve.
- "Just pull out last year's architecture debates." → dated notes centred on what you concluded and why.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/undefined-ui/second-brain-os/HEAD/skills/second-brain-chat-import/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/second-brain-chat-import folder from the GitHub repo undefined-ui/second-brain-os into my ~/.claude/skills/second-brain-chat-import/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/undefined-ui/second-brain-os.git && mkdir -p ~/.claude/skills && cp -r second-brain-os/skills/second-brain-chat-import ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/undefined-ui/second-brain-os.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r second-brain-os/skills/second-brain-chat-import ~/.claude/skills/ - Make sure Python 3 is available for the conversion script:
python3 --version. - Restart Claude Code, open the folder holding your export, and ask: "triage and import my exported chat history."
View source on GitHub ↗License: MIT