readwise
Installation
SKILL.md
Readwise Original Skill
Use this skill to automate work with the Readwise "Original" API that powers highlight exports and metadata management.
Quick start
- Generate a token from https://readwise.io/access_token and store it in
READWISE_TOKEN. - Use
uv run --project ${CLAUDE_PLUGIN_ROOT} python ${CLAUDE_PLUGIN_ROOT}/skills/readwise/scripts/readwise_client.py ...instead of calling the API directly; it handles retries, pagination, rate-limit surfacing,--dry-run, and tagging rules. - Keep requests below the documented rate limit (currently 60 req/min). Batch operations and pause between pages when processing large libraries.
Example workflows
- "Summarize my daily review and save highlights to a note" — uses
highlights reviewto fetch today's highlights, then formats them - "Find all highlights from Meditations and export as markdown" — uses
booksto find the book ID, thenhighlights listto fetch - "Save this quote to my Readwise" — uses
highlight createwith the quote text
CLI commands
Global options --dry-run and --raw can appear anywhere in the command.
Related skills