โ† All skills
Tencent SkillHub ยท Developer Tools

karakeep-sh

Karakeep bookmark manager with full API support including notes, updates, and deletion. Requires KARAKEEP_SERVER_URL and KARAKEEP_API_KEY environment variables.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Karakeep bookmark manager with full API support including notes, updates, and deletion. Requires KARAKEEP_SERVER_URL and KARAKEEP_API_KEY environment variables.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
scripts/karakeep-script.sh, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.3

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Karakeep Skill

Advanced Karakeep bookmark management with full REST API support. Add KARAKEEP_SERVER_URL and KARAKEEP_API_KEY to environment variables and jq for pretty-printing JSON responses. If they are missing, provied a clear guide to the user. IMPORTANT:always ask user to confirm beefore you delete a bookmark,

Complete Function Reference

Use this script karakeep-script.sh We have the functions below: FunctionDescriptionkb-createCreate bookmark (supports note)kb-update-noteUpdate bookmark notekb-deleteDelete bookmarkkb-getGet bookmark detailskb-listList all bookmarks (with limit)kb-contentGet markdown contentkb-searchSearch with qualifierskb-listsList all listskb-create-listCreate new listkb-add-to-listAdd to listkb-remove-from-listRemove from listkb-attach-tagsAttach tagskb-detach-tagsDetach tags

Create Bookmark with Note

# Link bookmark with note kb-create link "https://example.com" "Example Site" "My analysis and notes here..." # Text bookmark with note kb-create text "Text content here" "My Note" "Additional notes..."

Update Bookmark Note

kb-update-note "bookmark_id" "Updated note content..."

Delete Bookmark

kb-delete "bookmark_id"

Get Bookmark

kb-get "bookmark_id"

Search Operations

# Search with qualifiers (uses MeiliSearch backend) kb-search "is:fav after:2023-01-01 #important" kb-search "machine learning is:tagged" kb-search "list:reading #work" # Search with custom limit and sort order kb-search "python" 50 "desc" # 50 results, descending order # Available qualifiers: # - is:fav, is:archived, is:tagged, is:inlist # - is:link, is:text, is:media # - url:<value>, #<tag>, list:<name> # - after:<YYYY-MM-DD>, before:<YYYY-MM-DD> # Sort options: relevance (default), asc, desc API Parameters: q (required): Search query string with qualifiers limit (optional): Results per page (default: server-controlled) sortOrder (optional): asc | desc | relevance (default) cursor (optional): Pagination cursor includeContent (optional): Include full content (default: true)

List Management

# List all lists kb-lists # Create new list kb-create-list "Reading List" "๐Ÿ“š" # Add bookmark to list kb-add-to-list "bookmark_id" "list_id" # Remove bookmark from list kb-remove-from-list "bookmark_id" "list_id"

Tag Management

# Attach tags kb-attach-tags "bookmark_id" "important" "todo" "work" # Detach tags kb-detach-tags "bookmark_id" "oldtag" "anotherold"

Notes

All responses are in JSON format Bookmark IDs are returned in creation responses Use jq for pretty-printing JSON responses API rate limits may apply

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/karakeep-script.sh Scripts