Tips & Tricks
Use descriptions as your future memory
The title tells you what a link is. The description tells you why you saved it. Six months from now you won't remember why you bookmarked an obscure Stack Overflow answer or a random tool you stumbled upon. Take ten seconds to write a one-line description every time you save a bookmark — it's the single habit that makes a bookmark library genuinely useful instead of just a long list of links.
Let folders inherit the circle for you
When you assign a bookmark to a folder, the circle is automatically locked to the folder's circle. This means you don't have to think about circles at all once your folder structure is set up — just pick the right folder and the workspace assignment takes care of itself.
If you're creating bookmarks in multiple circles, the easiest approach is to create one top-level folder per circle and always save through the folder.
Use tags for cross-folder filtering
Folders give you hierarchy; tags give you cross-cutting views. A bookmark about a CSS animation library might live in your Frontend → CSS folder, but tagging it tool,animation,performance means you can find it later when you search the word "tool" or "animation" in the All Bookmarks view — even without remembering which folder it lives in.
Good tag vocabularies to adopt:
| Tag type | Examples |
|----------|---------|
| Content type | docs, tutorial, video, article, cheatsheet, tool |
| Status | to-read, read, review, archive |
| Project | project-alpha, q3-sprint, onboarding |
| Action | buy, try, share, learn |
Star sparingly for maximum signal
The Favorites section is only valuable if it stays short. Treat favorites as your top 10–20 most-used links, not a second archive. When you find yourself scrolling through a long favorites list, it's time to un-star the things you haven't opened in months.
Sort by Most Visited to discover your real favourites
Open All Bookmarks and switch the sort order to Most Visited. The links that bubble to the top are the ones you actually rely on — make sure they're starred as Favorites and live in a folder you can find quickly.
Use the import feature to bootstrap new projects
Whenever you start a new project, resist the urge to save bookmarks one by one. Instead, prepare a JSON file with all the reference links you already know you'll need — documentation, related tools, relevant articles — and import the whole batch in one go. A 20-link folder takes about two minutes to set up as a JSON file and five seconds to import.
Example JSON file to get you started:
{ "folderName": "Project Kickoff Resources", "bookmarks": [ { "title": "Project Brief", "url": "https://...", "tags": "brief,project", "favorite": true }, { "title": "Design System", "url": "https://...", "tags": "design,reference" }, { "title": "API Documentation", "url": "https://...", "tags": "docs,api" } ]
}
Keep your folder structure shallow
Deep folder trees feel organized but are slow to navigate. Aim for a maximum of two levels for everyday use: a root folder for the broad topic and one level of subfolders for sub-topics. If you feel the urge to go three or four levels deep, consider using tags instead of more nesting — they're faster to search and don't require clicking through a hierarchy.
Auto-https:// saves keystrokes
You don't need to type https:// when saving a bookmark. Just paste the domain — developer.mozilla.org — and the app adds the protocol automatically. This is especially handy when copying URLs from terminal output or log files that don't include the scheme.
Use the paginator to stay fast in large folders
If you have a folder with hundreds of bookmarks, switch to 50 items per page to reduce the number of page changes while still keeping the list manageable. For very large folders, the search bar inside the folder content view is usually the fastest way to find a specific bookmark.
Clean up before a circle handoff
Before sharing a circle with a new team member or handing off a project, do a quick sweep:
- Open All Bookmarks, search for the circle's content, and delete any bookmarks that are no longer relevant.
- Check for broken links — if a bookmark's URL returns a 404, delete or update it.
- Review tags for consistency — a mix of
js,javascript, andJavaScriptis harder to search than a single normalized tag.
A tidy library is a trustworthy library.
Move items between circles with ADMIN permission
If you need to reorganize content across circles — for example, moving a personal research folder into a shared team circle — you'll need ADMIN permission on the source circle. Once you have that, open the folder or bookmark's edit form and use the circle autocomplete field to select the destination. You'll also need WRITE permission on the destination circle.
If you can't move items yourself, ask the circle administrator to do it or to grant you temporary ADMIN access.