Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/dedene/raindrop-cli/raindropnpx skills add dedene/raindrop-cli --skill raindropgit clone --depth 1 https://github.com/dedene/raindrop-cliWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00075 | $0.01774 |
| Opus 5 | $0.00037 | $0.00887 |
| Sonnet 5 | $0.00015 | $0.00355 |
| Haiku 4.5 | $0.00007 | $0.00177 |
Grade A, and why
raindrop-cli scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.
raindrop-cli
Command-line interface for Raindrop.io bookmark management. Add, search, organize, and export bookmarks.
Quick Start
# Verify auth
raindrop auth status
# Add a bookmark
raindrop add https://example.com --tags "reference"
# List bookmarks
raindrop list --json
# Search
raindrop search "golang" --json
Authentication
Test Token (personal use)
Get a test token from raindrop.io/settings/integrations:
raindrop auth token <your-token>
raindrop auth status
Or use environment variable:
export RAINDROP_TOKEN=<your-token>
OAuth2 (apps/shared use)
Requires browser-based OAuth flow. User must run raindrop auth login interactively. Do not attempt OAuth setup on behalf of the user.
Core Rules
- Always use
--jsonwhen parsing output. Table format is for display only. - Read before write -- fetch bookmark/collection before modifying.
- Collection names are case-insensitive --
Workandworkare equivalent. - Use
--forceto skip confirmations in scripts. - Pipe with jq -- extract IDs:
raindrop list --json | jq -r '.[].id'
Output Formats
| Flag | Format | Use case |
|---|---|---|
| (default) | Table | User-facing display |
--json |
JSON | Agent parsing, scripting |
System Collections
| Name | ID | Description |
|---|---|---|
all |
0 | All bookmarks |
unsorted |
-1 | Unsorted bookmarks |
trash |
-99 | Trash |
Workflows
Add Bookmarks
# Basic add
raindrop add https://example.com
# With metadata
raindrop add https://example.com --collection Work --tags "docs,reference"
# Bulk add from stdin
echo -e "https://a.com\nhttps://b.com" | raindrop add -
List and Search
# List all bookmarks
raindrop list --json
# List from collection
raindrop list Work --json
raindrop list Work --all --json # include nested
# Favorites only
raindrop list --favorites --json
# Search by text
raindrop search "golang tutorial" --json
# Search with filters
raindrop search --tag programming --type article --json
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 285 lines · 75 tokens per session scan A 889f865fd401
raindrop-cli is a skill published in the GitHub repository dedene/raindrop-cli (11 stars, last pushed 6mo ago), licensed MIT. It adds 75 tokens to every session and 1,774 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
instrument-agent
Set up Raindrop AI traces for an agent and verify they flow into Workshop. Use when the user says "set up traces", "add tracing", "instrument my agent", "wire Raindrop", "Workshop is empty", or "make traces show up in Workshop." Guides unknown repos by discovering runtime and telemetry setup, using current Raindrop…
setup-agent-replay
Set up a local agent replay server for Raindrop Workshop. Use when the user wants Workshop to replay a captured trace against their real local agent code and tools. Creates/updates .raindrop/agents.yaml, scaffolds a language-appropriate replay server, registers the project with raindrop replay register, and verifies…
karakeep
Official skill for how to use karakeep (the bookmark manager) and interact with it programmatically.
mcp-testing
MCP Testing Strategies with Vitest, Inspector, and Integration Tests.
raindrop-mcp-publishing
Automates and manages the complete publishing workflow for @adeze/raindrop-mcp from version bumping through npm registry deployment.
mcp-inspector
MCP Protocol Inspection and Debugging with Inspector CLI.