Raindrop Sync

PassAudited by ClawScan on May 1, 2026.

Overview

This skill coherently fetches Raindrop.io bookmarks, but users should notice that it uses a Raindrop API token and may persist bookmark content into an agent knowledge base or scheduled sync.

This skill appears purpose-aligned and not malicious. Before installing, use the least-privileged Raindrop token possible, confirm which collections will be synced, and decide whether you are comfortable storing bookmark-derived content in the agent knowledge base or running it automatically on a schedule.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Anyone using the token through this skill may be able to read bookmark data from the linked Raindrop account.

Why it was flagged

The skill uses a Raindrop.io account token to authenticate API requests. This is expected for the stated integration, but the token should be scoped carefully.

Skill content
Save to `.secrets/raindrop.env`:
RAINDROP_TOKEN=your_token_here
Recommendation

Use a read-only Raindrop token if available, keep it in a private secrets file, and rotate it if exposed.

What this means

Saved bookmarks and fetched page summaries may remain available to future agent tasks through the knowledge base.

Why it was flagged

The workflow persists bookmark-derived content and URLs into memory files for later reuse. This is aligned with the knowledge-base purpose, but it may retain private browsing or research interests.

Skill content
Store — Append to `memory/knowledge-base.md`
Update index — Add URL to `memory/kb-index.json`
Recommendation

Review what bookmark content is written to memory, exclude private collections if needed, and define retention or deletion practices.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If scheduled, new bookmarks may be fetched and stored automatically on an ongoing basis.

Why it was flagged

The skill documents optional recurring execution. This is disclosed and user-directed, but it can cause the agent or environment to keep syncing bookmarks without a fresh manual request each time.

Skill content
Add to heartbeat or cron for automatic sync
Recommendation

Only add scheduled sync if you want recurring processing, and make sure the schedule, output files, and knowledge-base updates are easy to disable.