# Send Raindrop.io Bookmarks to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "raindrop",
    "name": "Raindrop.io Bookmarks",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/velvet-shark/raindrop",
    "canonicalUrl": "https://clawhub.ai/velvet-shark/raindrop",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/raindrop",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raindrop",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/raindrop.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "raindrop",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T21:35:55.417Z",
      "expiresAt": "2026-05-14T21:35:55.417Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raindrop",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raindrop",
        "contentDisposition": "attachment; filename=\"raindrop-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "raindrop"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/raindrop"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/raindrop",
    "downloadUrl": "https://openagent3.xyz/downloads/raindrop",
    "agentUrl": "https://openagent3.xyz/skills/raindrop/agent",
    "manifestUrl": "https://openagent3.xyz/skills/raindrop/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/raindrop/agent.md"
  }
}
```
## Documentation

### 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

# Or pass token at runtime (recommended for ephemeral use)
{baseDir}/scripts/raindrop.sh --token "your-token" whoami

### 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

### Reading

CommandDescriptionwhoamiShow authenticated usercollectionsList all collections with IDslist [ID]List bookmarks (default: 0 = all)count [ID]Count bookmarks in collectionsearch QUERY [ID]Search bookmarksget IDGet bookmark detailstagsList all tags with countslist-untagged [ID]Find bookmarks without tagscache IDGet permanent copy (Pro only)

### Writing

CommandDescriptionadd URL [ID]Add bookmark (default: -1 = Unsorted)delete IDDelete bookmarkcreate-collection NAMECreate new collectionmove ID COLLECTIONMove bookmark to collectionupdate ID [opts]Update tags/title/collectionbulk-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:

Use --delay 100 (100ms between calls)
Use bulk-move instead of individual move calls
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/
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: velvet-shark
- Version: 1.0.4
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T21:35:55.417Z
- Expires at: 2026-05-14T21:35:55.417Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/raindrop)
- [Send to Agent page](https://openagent3.xyz/skills/raindrop/agent)
- [JSON manifest](https://openagent3.xyz/skills/raindrop/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/raindrop/agent.md)
- [Download page](https://openagent3.xyz/downloads/raindrop)