# Send Raindrop Sync 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-sync",
    "name": "Raindrop Sync",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zerone0x/raindrop-sync",
    "canonicalUrl": "https://clawhub.ai/zerone0x/raindrop-sync",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/raindrop-sync",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raindrop-sync",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/fetch.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "raindrop-sync",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T21:35:33.289Z",
      "expiresAt": "2026-05-14T21:35:33.289Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raindrop-sync",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raindrop-sync",
        "contentDisposition": "attachment; filename=\"raindrop-sync-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "raindrop-sync"
      },
      "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-sync"
    },
    "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-sync",
    "downloadUrl": "https://openagent3.xyz/downloads/raindrop-sync",
    "agentUrl": "https://openagent3.xyz/skills/raindrop-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/raindrop-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/raindrop-sync/agent.md"
  }
}
```
## Documentation

### Raindrop Bookmark Sync

Fetch bookmarks from Raindrop.io API and process them for knowledge base integration.

### Setup

Get API token from https://app.raindrop.io/settings/integrations
Create test token (read-only is fine)
Save to .secrets/raindrop.env:
RAINDROP_TOKEN=your_token_here

### Fetch new bookmarks

source .secrets/raindrop.env
python3 skills/raindrop/scripts/fetch.py --since 24h

### Fetch from specific collection

python3 skills/raindrop/scripts/fetch.py --collection 12345678

### Process and add to knowledge base

python3 skills/raindrop/scripts/fetch.py --since 24h --output /tmp/raindrop-new.json
# Then process each item with web_fetch and add to memory/knowledge-base.md

### API Reference

Base URL: https://api.raindrop.io/rest/v1
Auth: Bearer token in header
Rate limit: 120 req/min

### Key Endpoints

GET /raindrops/{collectionId} — List bookmarks (use 0 for all)
GET /collections — List collections
GET /raindrop/{id} — Single bookmark details

### Bookmark Object

{
  "_id": 123456,
  "title": "Article Title",
  "link": "https://example.com/article",
  "excerpt": "Short description...",
  "tags": ["tag1", "tag2"],
  "created": "2026-02-15T10:00:00Z",
  "collection": {"$id": 12345678}
}

### Workflow

Fetch — Get new bookmarks since last sync
Filter — Skip already-processed URLs (check memory/kb-index.json)
Extract — Use web_fetch to get content
Analyze — Summarize and tag
Store — Append to memory/knowledge-base.md
Update index — Add URL to memory/kb-index.json

### Cron Integration

Add to heartbeat or cron for automatic sync:

每天检查一次 Raindrop 新书签，处理后存入知识库
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zerone0x
- Version: 1.0.0
## 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:33.289Z
- Expires at: 2026-05-14T21:35:33.289Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/raindrop-sync)
- [Send to Agent page](https://openagent3.xyz/skills/raindrop-sync/agent)
- [JSON manifest](https://openagent3.xyz/skills/raindrop-sync/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/raindrop-sync/agent.md)
- [Download page](https://openagent3.xyz/downloads/raindrop-sync)