Forkable, Unearthable, Recursive memory tracker
Like git, but for conversations, ideas, and AI chats.
👉 For a more visual overview, see the FURChats portfolio site.
Scrolling through endless chats to find that one reply is painful.
FUR makes it easy to track, branch, and preserve your conversations as trees you can navigate, fork, and export.
With FUR you can:
- Jot quick notes or attach Markdown files.
- Chat long-form messages interactively (paste documents straight in).
- Branch & fork conversations into multiple futures.
- Jump backward or forward to any message.
- See threads as timelines or trees.
- Switch between multiple threads easily.
- Assign avatars (🦊 you, 🤖 bots, 👤 others — customizable).
- Script conversations with
.frsfiles. - Export threads to Markdown or PDF.
Think of it as a version control system for your thoughts.
-
fur chat→ interactive, long-form jotting.
Paste Markdown, essays, or multi-line rants directly into the CLI.
By default, FUR suggests saving inside achats/folder. -
Better ergonomics →
chatis the natural sibling ofjot.fur jot→ quick scratches.fur chat→ longer tales.
-
Tests → new
tests/chat.rscovers file + message creation.
FUR keeps everything inside a local .fur/ folder:
.fur/index.json→ global state.fur/threads/*.json→ one per thread.fur/messages/*.json→ one per message.fur/avatars.json→ avatar mappings
# Start fresh
fur new "Penguin talks"
# Manage avatars
fur avatar andrew # set yourself (🦊 main)
fur avatar tengu --emoji 👺 # create a custom avatar with emoji
fur avatar --view
# Quick jot
fur jot "Just finished reading about quantum time crystals."
# Jot as a custom avatar
fur jot dr-strange "We’re in the endgame now."
# Long-form interactive jot (paste Markdown or docs)
fur chat gpt5
# Attach an existing markdown file
fur jot ai-helper --file examples/chats/QUANTUM_MANIFESTO.md
# Work with scripts
fur run examples/quantum_playground.frs
# or just:
fur examples/quantum_playground.frs
# Export views
fur timeline --contents --out CONVO.md
fur timeline --contents --out convo.pdf
---
## 🚀 Installation
### From crates.io
```bash
cargo install fur-clicargo install --path . --forceFUR is minimal. It's not an AI client. It's a memory tracker that respects:
- Your brain's tendency to branch.
- Your need to retrace steps.
- Your desire to keep everything.
Avatars keep things clear: 🦊 (you), 🤖 (AI/bots), 👤 (others). But you can always customize them (fur avatar tengu --emoji 👺).
Goal: Make recursive thinking natural.
✅ Already complete (v0.3)
- Threads (
fur new,fur thread) - Avatars (
fur avatar) - Jotting text & files (
fur jot) - Tree / Timeline views
- Jumping & forking
.frsscripting system (branching supported here)- VS Code highlighting for
.frs - Thread import / export
- Markdown & PDF rendering
- Polished exports (Markdown/PDF with styles, embedded assets)
🔜 Planned for future releases
fur rm→ delete messages directly in the CLIfur move→ replace / reorder messages in a threadfur branch→ create branches interactively in the CLI (currently only in.frsscripts)- Interactive editing flows for power users
- Richer exports (metadata, tags, avatars)
🎉 v1.0 Milestone
- Full editing suite: add, delete, move, replace, fork, branch — all stable
- Rock-solid
.frsimport/export parity (round-trip safe) - Robust test coverage & docs
- Consider cross-platform packaging (Homebrew, Scoop, etc.)
MIT, like almost everything else that's friendly and open-source.
