Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,5 @@ temp/

# Test outputs
out/
outberduck/
.splice/
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Convert social/chat archives into normalized threads and export to Markdown, OAI

- Idiomatic CLI (clig.dev principles)
- Modular architecture:
- sources: Twitter/X today; Bluesky, ChatGPT, etc. next
- sources: Twitter/X archives and Bluesky repo CAR exports (text-first; blobs soon), ChatGPT, etc. next
- transforms: filtering, grouping into threads/conversations, text cleaning
- outputs: Markdown, OAI JSONL, JSONL (normalized items), ShareGPT
- Library API to compose your own pipeline or plug in proprietary adapters
Expand Down Expand Up @@ -147,6 +147,10 @@ We currently ingest:
- Tweets (YTD `tweets`) and Likes (YTD `like`)
- Media files prefixed with `<tweetId>-*` in `data/tweets_media/`

Bluesky/AT Protocol:
- Pass `--source path/to/repo-export.car`. We load `app.bsky.feed.post` records from the CAR.
- Media blobs are referenced (with blob CID + alt text) but not downloaded yet; they’ll show up when we add a blob fetch step.

## Output layout

On a successful run, you’ll see:
Expand Down
Loading