← All skills
Tencent SkillHub Β· Developer Tools

Raindrop Sync

Sync and process bookmarks from Raindrop.io. Use when fetching new bookmarks, analyzing saved content, or syncing bookmarks to knowledge base. Triggers on "r...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Sync and process bookmarks from Raindrop.io. Use when fetching new bookmarks, analyzing saved content, or syncing bookmarks to knowledge base. Triggers on "r...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/fetch.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

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 ζ–°δΉ¦η­ΎοΌŒε€„η†εŽε­˜ε…₯ηŸ₯θ―†εΊ“

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/fetch.py Scripts