Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill raindrop-cli명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | raindrop-cli |
| description | > Use when this capability is needed. |
Command-line interface for Raindrop.io bookmark management. Add, search, organize, and export bookmarks.
# 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
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>
Requires browser-based OAuth flow. User must run raindrop auth login interactively. Do not attempt OAuth setup on behalf of the user.
--json when parsing output. Table format is for display only.Work and work are equivalent.--force to skip confirmations in scripts.raindrop list --json | jq -r '.[].id'| Flag | Format | Use case |
|---|---|---|
| (default) | Table | User-facing display |
--json | JSON | Agent parsing, scripting |
| Name | ID | Description |
|---|---|---|
all | 0 | All bookmarks |
unsorted | -1 | Unsorted bookmarks |
trash | -99 | Trash |
# 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 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
# Get bookmark details
raindrop get 12345 --json
# Update bookmark
raindrop update 12345 --title "New Title" --tags "updated,important"
# Open in browser
raindrop open 12345
# Copy URL to clipboard
raindrop copy 12345
# Delete with confirmation
raindrop delete 12345
# Delete without confirmation
raindrop delete 12345 --force
# List collections (tree view)
raindrop collections list --json
# Get collection details
raindrop collections get Work --json
# Create collection
raindrop collections create "New Project"
# Update collection
raindrop collections update Work --title "Work Projects"
# Delete collection
raindrop collections delete "Old Project" --force
# List all tags
raindrop tags list --json
# Rename a tag
raindrop tags rename old-name new-name
# Merge tags
raindrop tags merge tag1 tag2 --into combined
# Delete tags
raindrop tags delete unused-tag
# List highlights for a bookmark
raindrop highlights list 12345 --json
# Add a highlight
raindrop highlights add 12345 "Important quote from the page"
# Delete a highlight
raindrop highlights delete 12345 <highlight-id>
# Import Netscape HTML bookmarks
raindrop import bookmarks.html
# Export all bookmarks
raindrop export --format csv > bookmarks.csv
raindrop export --format html > bookmarks.html
raindrop export --format zip > backup.zip
# Get bookmark ID after adding
ID=$(raindrop add https://example.com --json | jq -r '.id')
# List all bookmark URLs
raindrop list --json | jq -r '.[].link'
# Find bookmarks without tags
raindrop list --json | jq -r '.[] | select(.tags | length == 0) | .link'
# Count bookmarks per collection
raindrop collections list --json | jq -r '.[] | "\(.title): \(.count)"'
# Delete all trash
raindrop list trash --json | jq -r '.[].id' | xargs -I{} raindrop delete {} --force
| Variable | Description |
|---|---|
RAINDROP_TOKEN | API token (skips keyring) |
| Command | Description |
|---|---|
add [url] | Add a bookmark |
list [collection] | List bookmarks |
get <id> | Get bookmark details |
update <id> | Update a bookmark |
delete <id> | Delete a bookmark |
search [query] | Search bookmarks |
open <id> | Open in browser |
copy <id> | Copy URL to clipboard |
collections list | List collections |
collections get <name> | Get collection |
collections create <name> | Create collection |
collections update <name> | Update collection |
collections delete <name> | Delete collection |
tags list | List all tags |
tags rename <old> <new> | Rename tag |
tags merge <tags> --into <target> | Merge tags |
tags delete <tags> | Delete tags |
highlights list <id> | List highlights |
highlights add <id> <text> | Add highlight |
highlights delete <id> <hid> | Delete highlight |
import <file> | Import bookmarks |
export | Export bookmarks |
auth token <token> | Set API token |
auth status | Check auth status |
config get <key> | Get config value |
delete) with the user first.--no-input in CI/scripts to fail on prompts instead of hanging.brew install dedene/tap/raindrop
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
config set <key> <value> |
| Set config value |