Skills raindrop-cli
Manage Raindrop.io bookmarks from the command line (search, exists, add, update, remove) using the Raindrop REST API. Use when automating bookmark capture and organization with a personal RAINDROP_TOKEN.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/adorostkar/raindrop-cli" ~/.claude/skills/openclaw-skills-raindrop-cli && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/adorostkar/raindrop-cli" ~/.openclaw/skills/openclaw-skills-raindrop-cli && rm -rf "$T"
manifest:
skills/adorostkar/raindrop-cli/SKILL.mdsource content
Raindrop CLI
This skill provides
scripts/raindrop.
Auth
Set
RAINDROP_TOKEN in a local env file (recommended: ~/.config/openclaw/gateway.env, chmod 600).
Safety defaults
- If a URL already exists, the tool reports it and does not create duplicates.
- If no collection is provided, it defaults to Unsorted.
Usage
raindrop collectionsraindrop search "query" --collection allraindrop exists <url>raindrop add <url> --tags tag1,tag2 --collection unsortedraindrop update <id> --title "New title"raindrop remove <id>