Save bookmarks to Karakeep (self-hosted bookmark manager). Use when the user wants to save a URL, bookmark a link, or add something to their reading list.
Scanned 9/19/2026
Install to Claude Code
npx -y skills add rondoflow/rondoflow --skill karakeep-bookmark-saving --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Karakeep Bookmark Saving?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/rondoflow-karakeep-bookmark-saving)More formats (shields.io, HTML) on the badges page.
---
name: karakeep-bookmark-saving
description: "Save bookmarks to Karakeep (self-hosted bookmark manager). Use when the user wants to save a URL, bookmark a link, or add something to their reading list."
category: "Community"
author: community
version: "1.0.0"
icon: puzzle
---
# Karakeep
Save bookmarks to a self-hosted Karakeep instance.
## Setup
Set these environment variables (in your shell profile or Clawdbot config):
```bash
export KARAKEEP_URL="https://your-karakeep-instance.com"
export KARAKEEP_API_KEY="your-api-key"
```
To get your API key: Karakeep → Settings → API Keys → Create new key.
## Save a bookmark
```bash
{baseDir}/scripts/save.sh "<URL>" ["optional note"]
```
Examples:
```bash
{baseDir}/scripts/save.sh "https://example.com/article"
{baseDir}/scripts/save.sh "https://github.com/repo" "Interesting project to check out"
```
## API Details
- **Endpoint:** `POST {KARAKEEP_URL}/api/v1/bookmarks`
- **Auth:** Bearer token
- **Body:** `{"type": "link", "url": "...", "note": "..."}`
## Response
Returns JSON with bookmark ID. Tags will be auto-generated by Karakeep's AI.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!