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 tag...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install raindrop或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install raindrop⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/raindrop/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- 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: openclaw: emoji: '🌧️' homepage: https://developer.raindrop.io/ requires: env: - RAINDROP_TOKEN bins: - bash - curl - jq - bc config: - ~/.config/raindrop.env primaryEnv: RAINDROP_TOKEN ---
Manage bookmarks via the Raindrop.io API.
# Get token from: https://app.raindrop.io/settings/integrations → "Create test token"
echo 'RAINDROP_TOKEN="your-token"' > ~/.config/raindrop.env
# Or pass token at runtime (recommended for ephemeral use)
{baseDir}/scripts/raindrop.sh --token "your-token" whoami
# 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
| Command | Description | |---------|-------------| | whoami | Show authenticated user | | collections | List all collections with IDs | | list [ID] | List bookmarks (default: 0 = all) | | count [ID] | Count bookmarks in collection | | search QUERY [ID] | Search bookmarks | | get ID | Get bookmark details | | tags | List all tags with counts | | list-untagged [ID] | Find bookmarks without tags | | cache ID | Get permanent copy (Pro only) |
| Command | Description | |---------|-------------| | add URL [ID] | Add bookmark (default: -1 = Unsorted) | | delete ID | Delete bookmark | | create-collection NAME | Create new collection | | move ID COLLECTION | Move bookmark to collection | | update ID [opts] | Update tags/title/collection | | bulk-move IDS TARGET [SOURCE] | Move multiple bookmarks (source defaults to -1/Unsorted) | | suggest URL | Get AI-suggested tags/title |
| Flag | Description | |------|-------------| | --json | Raw JSON output | | --limit N | Max results (default: 25) | | --page N | Pagination (0-indexed) | | --delay MS | Delay between API calls (rate limiting) | | --token TOKEN | Override API token |
For the update command:
| Flag | Description | |------|-------------| | --tags TAG1,TAG2 | Set tags (comma-separated) | | --title TITLE | Set title | | --collection ID | Move to collection |
0 = All bookmarks-1 = Unsorted-99 = TrashN = Specific collection (get IDs from collections)# 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
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
Raindrop API has rate limits. For bulk operations:
--delay 100 (100ms between calls)bulk-move instead of individual move callsFor 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/
安装 Raindrop.io Bookmarks 后,可以对 AI 说这些话来触发它
Help me get started with Raindrop.io Bookmarks
Explains what Raindrop.io Bookmarks does, walks through the setup, and runs a quick demo based on your current project
Use Raindrop.io Bookmarks to search, list, and manage Raindrop
Invokes Raindrop.io Bookmarks with the right parameters and returns the result directly in the conversation
What can I do with Raindrop.io Bookmarks in my marketing & growth workflow?
Lists the top use cases for Raindrop.io Bookmarks, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/raindrop/ 目录(个人级,所有项目可用),或 .claude/skills/raindrop/(项目级)。重启 AI 客户端后,用 /raindrop 主动调用,或让 AI 根据上下文自动发现并使用。
Raindrop.io Bookmarks 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Raindrop.io Bookmarks 可免费安装使用。请查阅仓库了解许可证信息。
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 tag...
Raindrop.io Bookmarks 属于「Marketing & Growth」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my marketing & growth tasks using Raindrop.io Bookmarks
Identifies repetitive steps in your workflow and sets up Raindrop.io Bookmarks to handle them automatically