Bookmark plugins are the simplest form of Jarvis plugin: a name, a URL, and an optional category, all declared in yourDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/dyoburon/jarvis/llms.txt
Use this file to discover all available pages before exploring further.
config.toml file. They require no files on disk and load any website directly in a Jarvis pane.
Configuration Format
Bookmark plugins are defined inconfig.toml using the [[plugins.bookmarks]] array-of-tables syntax. Each entry supports three fields:
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | "" | Display name in the command palette |
url | string | Yes | "" | URL to open (any valid https:// or http:// URL) |
category | string | No | "Plugins" | Palette category for grouping |
Examples
Single Bookmark
Multiple Bookmarks Across Categories
Categories
Thecategory field controls how the bookmark appears in the command palette. When the palette is open and no search query is active, items are grouped under category headers.
Common categories include:
"Music"— streaming and audio services"Dev"— development tools and repositories"Design"— design and prototyping tools"Productivity"— task management and documentation"News"— news aggregators and feeds
How Bookmarks Load
When a user selects a bookmark from the command palette, Jarvis dispatchesAction::OpenURL with the bookmark’s URL. The dispatch handler:
The navigation handler permits all
https:// and http:// URLs, so bookmarks can point to any public website.
Hot Reload
Edit yourconfig.toml, then trigger “Reload Config” from the command palette. Bookmark changes take effect immediately the next time the palette is opened.
Use Cases
Web Apps in Your Workflow
Quickly access web applications without leaving Jarvis:Internal Tools
Link to internal company tools or dashboards:Quick Reference
Keep documentation and references handy:Troubleshooting
Bookmark doesn’t appear in palette
- Check that both
nameandurlare not empty — bookmarks with empty fields are skipped. - Reload config — open the palette and select “Reload Config”.
- Check TOML syntax — make sure your config file parses correctly.
Bookmark loads but shows nothing
Some websites prevent embedding in iframes or webviews. This is controlled by the website’sX-Frame-Options or Content-Security-Policy headers. Try:
- Opening the URL directly in a browser to verify it loads.
- Checking the browser console (if DevTools are enabled) for CSP errors.
- Using a different URL — some services offer alternative embeddable URLs.
URL doesn’t auto-complete
Bookmarks don’t have autocomplete — you must type the fullurl field. If you want to open a URL without a bookmark, use the URL input mode in the command palette (type > then the URL).
Comparison with Local Plugins
| Feature | Bookmark | Local Plugin |
|---|---|---|
| Configuration | config.toml | Folder + plugin.toml |
| Files on disk | None | HTML/JS/CSS |
| IPC bridge | No | Yes |
| System clipboard | No | Yes (via IPC) |
| Read files | No | Yes (via IPC) |
| Custom code | No | Yes |
| External websites | Yes | Yes |
| Refresh workflow | Reload config | Cmd+R |