Clipboard history that persists across terminal sessions.
npm install -g @arc2898/clipsyncStart monitoring the clipboard. Every new copy is captured to a local history file.
clipsync watch # Default: 500ms polling
clipsync watch -i 200 # Faster: 200ms polling
clipsync watch -m 500 # Keep max 500 entriesShow recent clipboard entries.
clipsync list # Last 20 entries
clipsync list -n 50 # Last 50 entriesSearch through clipboard history.
clipsync search "password"
clipsync search "api key" -n 10Copy an old entry back to the clipboard.
clipsync copy clip_1234567890_abc123Clear all clipboard history.
clipsync clear --forceShow storage stats.
clipsync info- Stores entries in
~/.clipsync/history.json - Polls system clipboard at configurable interval
- Text-only (v1.0.0), images planned
- No server, no cloud — everything stays local
MIT