skills$openclaw/raindrop
velvet-shark1.8k

by velvet-shark

raindrop – OpenClaw Skill

raindrop is an OpenClaw Skills integration for coding workflows. Search, list, and manage Raindrop.io bookmarks via CLI. Use when the user wants to find saved links, browse collections, add new bookmarks, organize with tags, move bookmarks between collections, or work with their Raindrop library. Supports reading (search, list, get, tags) and writing (add, delete, move, update, bulk operations).

1.8k stars3.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameraindrop
descriptionSearch, list, and manage Raindrop.io bookmarks via CLI. Use when the user wants to find saved links, browse collections, add new bookmarks, organize with tags, move bookmarks between collections, or work with their Raindrop library. Supports reading (search, list, get, tags) and writing (add, delete, move, update, bulk operations). OpenClaw Skills integration.
ownervelvet-shark
repositoryvelvet-shark/raindrop
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @velvet-shark/raindrop
last updatedFeb 7, 2026

Maintainer

velvet-shark

velvet-shark

Maintains raindrop in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
raindrop.sh
9.3 KB
_meta.json
465 B
SKILL.md
4.7 KB
SKILL.md

name: raindrop description: Search, list, and manage Raindrop.io bookmarks via CLI. Use when the user wants to find saved links, browse collections, add new bookmarks, organize with tags, move bookmarks between collections, or work with their Raindrop library. Supports reading (search, list, get, tags) and writing (add, delete, move, update, bulk operations). metadata: {"clawdbot":{"emoji":"🌧️","homepage":"https://raindrop.io","requires":{"bins":["bash","curl","jq","bc"]}}}

Raindrop.io Bookmarks

Manage bookmarks via the Raindrop.io API.

Setup

# Get token from: https://app.raindrop.io/settings/integrations → "Create test token"
echo 'RAINDROP_TOKEN="your-token"' > ~/.config/raindrop.env

Quick Start

# Search bookmarks
{baseDir}/scripts/raindrop.sh search "AI tools"

# List unsorted bookmarks
{baseDir}/scripts/raindrop.sh list -1 --limit 50

# Count unsorted
{baseDir}/scripts/raindrop.sh count -1

# Create collection and move bookmarks
{baseDir}/scripts/raindrop.sh create-collection "AI Coding"
{baseDir}/scripts/raindrop.sh move 12345 66016720

# Bulk move (efficient!)
{baseDir}/scripts/raindrop.sh bulk-move "123,456,789" 66016720

Commands

Reading

CommandDescription
whoamiShow authenticated user
collectionsList all collections with IDs
list [ID]List bookmarks (default: 0 = all)
count [ID]Count bookmarks in collection
search QUERY [ID]Search bookmarks
get IDGet bookmark details
tagsList all tags with counts
list-untagged [ID]Find bookmarks without tags
cache IDGet permanent copy (Pro only)

Writing

CommandDescription
add URL [ID]Add bookmark (default: -1 = Unsorted)
delete IDDelete bookmark
create-collection NAMECreate new collection
move ID COLLECTIONMove bookmark to collection
update ID [opts]Update tags/title/collection
bulk-move IDS TARGET [SOURCE]Move multiple bookmarks (source defaults to -1/Unsorted)
suggest URLGet AI-suggested tags/title

Options

FlagDescription
--jsonRaw JSON output
--limit NMax results (default: 25)
--page NPagination (0-indexed)
--delay MSDelay between API calls (rate limiting)
--token TOKENOverride API token

Update Options

For the update command:

FlagDescription
--tags TAG1,TAG2Set tags (comma-separated)
--title TITLESet title
--collection IDMove to collection

Collection IDs

  • 0 = All bookmarks
  • -1 = Unsorted
  • -99 = Trash
  • N = Specific collection (get IDs from collections)

Examples

# List unsorted with pagination
{baseDir}/scripts/raindrop.sh list -1 --limit 50 --page 0
{baseDir}/scripts/raindrop.sh list -1 --limit 50 --page 1

# Create collection
{baseDir}/scripts/raindrop.sh create-collection "AI Coding"
# Output: Created: AI Coding / ID: 66016720

# Move single bookmark
{baseDir}/scripts/raindrop.sh move 1234567 66016720

# Update bookmark with tags and move
{baseDir}/scripts/raindrop.sh update 1234567 --tags "claude-code,workflow,tips" --collection 66016720

# Bulk move with rate limiting (100ms between calls)
{baseDir}/scripts/raindrop.sh bulk-move "123,456,789,101112" 66016720 --delay 100

# Find untagged bookmarks in unsorted
{baseDir}/scripts/raindrop.sh list-untagged -1 --limit 100

# Get JSON for scripting
{baseDir}/scripts/raindrop.sh list -1 --json --limit 50 | jq '.items[]._id'

# Count unsorted bookmarks
{baseDir}/scripts/raindrop.sh count -1

Bulk Operations

For large batch operations, use bulk-move which uses the Raindrop batch API (up to 100 items per request):

# Get IDs from unsorted
ids=$({baseDir}/scripts/raindrop.sh list -1 --json --limit 100 | jq -r '[.items[]._id] | join(",")')

# Move all to collection
{baseDir}/scripts/raindrop.sh bulk-move "$ids" 66016720

Rate Limiting

Raindrop API has rate limits. For bulk operations:

  1. Use --delay 100 (100ms between calls)
  2. Use bulk-move instead of individual move calls
  3. Process in batches of 50-100

Direct API

For operations not covered:

source ~/.config/raindrop.env

# Update tags
curl -X PUT "https://api.raindrop.io/rest/v1/raindrop/ID" \
  -H "Authorization: Bearer $RAINDROP_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"tags": ["tag1", "tag2"]}'

# Bulk update (up to 100 IDs)
curl -X PUT "https://api.raindrop.io/rest/v1/raindrops" \
  -H "Authorization: Bearer $RAINDROP_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"ids": [123, 456, 789], "collectionId": 12345}'

API docs: https://developer.raindrop.io/

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install raindrop?

Run openclaw add @velvet-shark/raindrop in your terminal. This installs raindrop into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/velvet-shark/raindrop. Review commits and README documentation before installing.