| Crates.io | mnemo |
| lib.rs | mnemo |
| version | 1.0.0 |
| created_at | 2026-01-25 17:20:02.54578+00 |
| updated_at | 2026-01-25 17:20:02.54578+00 |
| description | A personal knowledge vault for your terminal |
| homepage | https://github.com/aayushadhikari7/mnemo |
| repository | https://github.com/aayushadhikari7/mnemo |
| max_upload_size | |
| id | 2069114 |
| size | 8,507,505 |
A personal knowledge vault for your terminal. Store notes, code snippets, and links with tags - all searchable from the command line.

cargo install --path .
Or build from source:
cargo build --release
cp target/release/mnemo ~/.local/bin/
mnemo init
# Add a note
mnemo note add "Remember to review PR #42" -t work,todo
# List notes
mnemo note ls
# Delete a note
mnemo note rm abc123
# Add a snippet
mnemo snippet add "git undo" "git reset --soft HEAD~1" -l bash -t git
# List snippets
mnemo snippet ls
mnemo snippet ls -l rust # filter by language
# Show snippet code
mnemo snippet show abc123
# Delete a snippet
mnemo snippet rm abc123
# Add a link
mnemo link add "https://github.com" -t "dev,tools"
# List links
mnemo link ls
# Delete a link
mnemo link rm abc123
# Search across notes, snippets, and links
mnemo search "docker"
# List all tags with counts
mnemo tags
# Filter items by tag
mnemo tags filter work
# Copy snippet to clipboard
mnemo copy snippet abc123
# Copy note to clipboard
mnemo copy note abc123
# Capture clipboard as note
mnemo capture
# Capture clipboard as snippet
mnemo capture --snippet -l python -t automation
# Show vault statistics
mnemo stats
# Export to markdown
mnemo export -o vault-backup.md
Your vault is stored locally at:
~/.local/share/mnemo/vault.db%LOCALAPPDATA%\mnemo\vault.dbMIT
Demo recorded with termgif