A powerful command-line interface for managing your bookmarks with LinkHut. Efficiently add, update, delete, and organize your bookmarks directly from the terminal.
- Bookmark Management: Add, update, delete, and list bookmarks
- Tag Management: Rename and delete tags across all bookmarks
- Reading List: Maintain a reading list with to-read/read status toggling
- Features:
- Automatic title fetching when adding bookmarks.
- Tag suggestions based on bookmark content.
- Rich formatting for improved readability.
- Auto completion for commands and options using key.
pip install linkhut-cli
# Clone the repository
git clone https://github.com/yourusername/linkhut-cli.git
cd linkhut-cli
# Install in development mode
pip install -e .
The CLI requires two environment variables to function:
LH_PAT
: Your LinkHut Personal Access Token. (sign in and get it from here)LINK_PREVIEW_API_KEY
: Free API key for fetching link previews (get it for free from here)
You can set these in a .env
file in the project root or set them in your environment.
# Verify your configuration status
linkhut config_status
You can set up aliases in your shell configuration file (e.g., .bashrc
, .zshrc
) for convenience:
alias bm='linkhut'
alias bg='bm bookmarks get'
alias ba='bm bookmarks add'
alias rl='bm reading-list'
all the flags and options stay the same.
# get your most recent bookmarks (default: 15)
linkhut bookmarks get
# get bookmarks filtered by tags seperated by commas, separated by spaces inside quotes or mix and match
linkhut bookmarks get -g stream,cricket
linkhut bookmarks get -g 'stream cricket'
linkhut bookmarks get -g 'stream, cricket'
# se the count of bookmarks to fetch
linkhut bookmarks get -g stream -c 5
# Filter by specific date (YYYY-MM-DD format)
linkhut bookmarks get -d 2025-05-19 -g personal-blog -c 4
# Search for a specific URL
# because of limitation of the API, it can only match exact URLs
linkhut bookmarks get -u https://registry.jsonresume.org/
If the url already exists, program will throw an error. You can add -R flag to replace the existing bookmark.
# Add a bookmark with just the URL (title and tags will be fetched automatically)
linkhut bookmarks add https://example.com
# Add with full details
linkhut bookmarks add https://github.com/xiangechen/chili3d -g "simulation, 3d, cad, blender" -n "A browser based 3D simulation engine"
# Add multiple bookmarks seperated by commas or newlines inside quotes
ba "https://github.com/thomasdavis/resume
https://www.npmjs.com/package/jsonresume-theme-onepage-plus
https://github.com/vkcelik/jsonresume-theme-onepage-plus
https://www.npmjs.com/package/jsonresume-theme-even"
The default behavior of the update command is to append tags and notes to the existing bookmark. If you want to replace the existing tags or notes, you can use the -R
flag.
# replace existing tags
linkhut bookmarks update https://audiophile.fm/intense-radio -g "audio,stream,radio" -R
# Append to existing note
linkhut bookmarks update https://audiophile.fm/intense-radio -n "New note content"
# Change privacy setting
linkhut bookmarks update https://macthemes.garden/ -g 'macos, themes' --private
This command deletes a bookmark identified by its URL. It first shows the bookmark details and then asks for confirmation before deleting. Use the --force option to skip the confirmation prompt.
# Delete with confirmation prompt
linkhut bookmarks delete https://www.depthofml.in
# Delete without confirmation
linkhut bookmarks delete https://www.depthofml.in --force
Manage Items in your reading list with ease. You can add items to your reading list, mark them as read, or toggle their status. While toggling, you can also add notes and tags to the items.
# show 5 most recent reading list items
linkhut reading-list
# show most recent n reading list items
linkhut reading-list --count 10
# Add a bookmark to your reading list
linkhut reading-list https://example.com --to-read
# Mark item as read with tags and notes
linkhut reading-list https://example.com --read -g "python, cli" -n "Good read, shows the power of CLI tools"
Allows you to rename or delete tags across all bookmarks. This is useful for maintaining consistency in your tagging system.
# Rename a tag across all bookmarks
linkhut tags rename old-tag-name new-tag-name
# Delete a tag from all bookmarks (with confirmation)
linkhut tags delete tag-name
# Delete a tag without confirmation
linkhut tags delete tag-name --force
# Get general help
linkhut --help
# Get help for a specific command group
linkhut bookmarks --help
# Get help for a specific command
linkhut bookmarks add --help
Please refer to the development guide for information on contributing to this project.
This project is licensed under the terms of the LICENSE file included in the repository.