Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Karakeep bookmark manager with full API support including notes, updates, and deletion. Requires KARAKEEP_SERVER_URL and KARAKEEP_API_KEY environment variables.
Karakeep bookmark manager with full API support including notes, updates, and deletion. Requires KARAKEEP_SERVER_URL and KARAKEEP_API_KEY environment variables.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
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,
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
# 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..."
kb-update-note "bookmark_id" "Updated note content..."
kb-delete "bookmark_id"
kb-get "bookmark_id"
# 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 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"
# Attach tags kb-attach-tags "bookmark_id" "important" "todo" "work" # Detach tags kb-detach-tags "bookmark_id" "oldtag" "anotherold"
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
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.