@arc2898/clipsync
v1.0.1
Published
Clipboard history that persists across terminal sessions. Search, tag, and recall anything you've copied.
Downloads
34
Maintainers
Readme
ClipSync
Clipboard history that persists across terminal sessions.
Install
npm install -g @arc2898/clipsyncCommands
clipsync watch
Start 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 entriesclipsync list
Show recent clipboard entries.
clipsync list # Last 20 entries
clipsync list -n 50 # Last 50 entriesclipsync search <query>
Search through clipboard history.
clipsync search "password"
clipsync search "api key" -n 10clipsync copy <id>
Copy an old entry back to the clipboard.
clipsync copy clip_1234567890_abc123clipsync clear
Clear all clipboard history.
clipsync clear --forceclipsync info
Show storage stats.
clipsync infoHow It Works
- 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
License
MIT
