{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/raindrop-sync",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raindrop-sync",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/fetch.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/raindrop-sync",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Raindrop Bookmark Sync",
        "body": "Fetch bookmarks from Raindrop.io API and process them for knowledge base integration."
      },
      {
        "title": "Setup",
        "body": "Get API token from https://app.raindrop.io/settings/integrations\nCreate test token (read-only is fine)\nSave to .secrets/raindrop.env:\nRAINDROP_TOKEN=your_token_here"
      },
      {
        "title": "Fetch new bookmarks",
        "body": "source .secrets/raindrop.env\npython3 skills/raindrop/scripts/fetch.py --since 24h"
      },
      {
        "title": "Fetch from specific collection",
        "body": "python3 skills/raindrop/scripts/fetch.py --collection 12345678"
      },
      {
        "title": "Process and add to knowledge base",
        "body": "python3 skills/raindrop/scripts/fetch.py --since 24h --output /tmp/raindrop-new.json\n# Then process each item with web_fetch and add to memory/knowledge-base.md"
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://api.raindrop.io/rest/v1\nAuth: Bearer token in header\nRate limit: 120 req/min"
      },
      {
        "title": "Key Endpoints",
        "body": "GET /raindrops/{collectionId} — List bookmarks (use 0 for all)\nGET /collections — List collections\nGET /raindrop/{id} — Single bookmark details"
      },
      {
        "title": "Bookmark Object",
        "body": "{\n  \"_id\": 123456,\n  \"title\": \"Article Title\",\n  \"link\": \"https://example.com/article\",\n  \"excerpt\": \"Short description...\",\n  \"tags\": [\"tag1\", \"tag2\"],\n  \"created\": \"2026-02-15T10:00:00Z\",\n  \"collection\": {\"$id\": 12345678}\n}"
      },
      {
        "title": "Workflow",
        "body": "Fetch — Get new bookmarks since last sync\nFilter — Skip already-processed URLs (check memory/kb-index.json)\nExtract — Use web_fetch to get content\nAnalyze — Summarize and tag\nStore — Append to memory/knowledge-base.md\nUpdate index — Add URL to memory/kb-index.json"
      },
      {
        "title": "Cron Integration",
        "body": "Add to heartbeat or cron for automatic sync:\n\n每天检查一次 Raindrop 新书签，处理后存入知识库"
      }
    ],
    "body": "Raindrop Bookmark Sync\n\nFetch bookmarks from Raindrop.io API and process them for knowledge base integration.\n\nSetup\nGet API token from https://app.raindrop.io/settings/integrations\nCreate test token (read-only is fine)\nSave to .secrets/raindrop.env:\nRAINDROP_TOKEN=your_token_here\n\nUsage\nFetch new bookmarks\nsource .secrets/raindrop.env\npython3 skills/raindrop/scripts/fetch.py --since 24h\n\nFetch from specific collection\npython3 skills/raindrop/scripts/fetch.py --collection 12345678\n\nProcess and add to knowledge base\npython3 skills/raindrop/scripts/fetch.py --since 24h --output /tmp/raindrop-new.json\n# Then process each item with web_fetch and add to memory/knowledge-base.md\n\nAPI Reference\nBase URL: https://api.raindrop.io/rest/v1\nAuth: Bearer token in header\nRate limit: 120 req/min\nKey Endpoints\nGET /raindrops/{collectionId} — List bookmarks (use 0 for all)\nGET /collections — List collections\nGET /raindrop/{id} — Single bookmark details\nBookmark Object\n{\n  \"_id\": 123456,\n  \"title\": \"Article Title\",\n  \"link\": \"https://example.com/article\",\n  \"excerpt\": \"Short description...\",\n  \"tags\": [\"tag1\", \"tag2\"],\n  \"created\": \"2026-02-15T10:00:00Z\",\n  \"collection\": {\"$id\": 12345678}\n}\n\nWorkflow\nFetch — Get new bookmarks since last sync\nFilter — Skip already-processed URLs (check memory/kb-index.json)\nExtract — Use web_fetch to get content\nAnalyze — Summarize and tag\nStore — Append to memory/knowledge-base.md\nUpdate index — Add URL to memory/kb-index.json\nCron Integration\n\nAdd to heartbeat or cron for automatic sync:\n\n每天检查一次 Raindrop 新书签，处理后存入知识库"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zerone0x/raindrop-sync",
    "publisherUrl": "https://clawhub.ai/zerone0x/raindrop-sync",
    "owner": "zerone0x",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}