Agent skill · AI & Agents

readwise-chat

Chat with Readwise highlights using GPT-5.1 RAG. Use when the user wants to ask questions about their reading library, get summaries across documents, or have a conversation about their highlights. Triggers on "ask readwise", "chat about my highlights", "what do my notes say about", "summarize my reading on".

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill readwise-chat --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-llm/readwise-chat/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Readwise Chat (RAG over Highlights) Uses GPT-5.1 to answer questions with RAG over the user's full highlight library via WebSocket streaming. ## Prerequisites Chat requires session cookies (not API token). Check if configured: ```bash grep SESSION_COOKIES ~/.readwise/env ``` If missing, run: ```bash readwise-custom auth session ``` This launches Chrome, navigates to readwise.io/chat, and extracts httpOnly session cookies via CDP. ## Commands ### One-Shot Query Streams the response to stdout as it arrives: ```bash readwise-custom chat "What are my highlights about fiduciary duty?" readwise-custom chat "Summarize my notes on proxy advisors" readwise-custom chat "Compare what I've read about SEC regulation vs FINRA" ``` With JSON output (includes related highlights): ```bash readwise-custom chat "What do my highlights say about broker-dealer regulation?" --json ``` ### Interactive REPL Multi-turn conversation with context preserved: ```bash readwise-custom chat-interactive readwise-custom chat-interactive --model 5.1-thinking # reasoning model ``` Type `exit` to quit. ### Conversation Management ```bash readwise-custom chat-list # List all conversations readwise-custom chat-get <id>

What's inside
Steps it walks through
  1. Prerequisites
  2. Commands
  3. One-Shot Query
  4. Interactive REPL
  5. Conversation Management
  6. Model Options
  7. Chat vs Search
Ships with 1 file
  • metadata.json
Commands it runs
grep SESSION_COOKIES ~/.readwise/env
readwise-custom auth session
readwise-custom chat "What are my highlights about fiduciary duty?"
readwise-custom chat "Summarize my notes on proxy advisors"
readwise-custom chat "Compare what I've read about SEC regulation vs FINRA"
readwise-custom chat "What do my highlights say about broker-dealer regulation?" --json
readwise-custom chat-interactive
readwise-custom chat-interactive --model 5.1-thinking  # reasoning model
readwise-custom chat-list                           # List all conversations
readwise-custom chat-get <id>                       # Get conversation with messages
More from claude-skill-registry
All skills →
About this skill
What does the readwise-chat skill do?

Chat with Readwise highlights using GPT-5.1 RAG. Use when the user wants to ask questions about their reading library, get summaries across documents, or have a conversation about their highlights. Triggers on "ask readwise", "chat about my highlights", "what do my notes say about", "summarize my reading on".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill readwise-chat --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going