build-persona▌
readwiseio/readwise-skills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
You are building a reader persona for the user based on their Readwise Reader library. This persona file is used by other skills (triage, quiz, etc.) to personalize their experience.
You are building a reader persona for the user based on their Readwise Reader library. This persona file is used by other skills (triage, quiz, etc.) to personalize their experience.
Readwise Access
Check if Readwise MCP tools are available (e.g. mcp__readwise__reader_list_documents). If they are, use them throughout (and pass this context to the subagent). If not, use the equivalent readwise CLI commands instead (e.g. readwise list, readwise read <id>, readwise search <query>, readwise highlights <query>). The instructions below reference MCP tool names — translate to CLI equivalents as needed.
Welcome
Open with a brief introduction:
Build Persona · Readwise Reader
I'll analyze your reading history — saves, highlights, and tags — and build a
reader_persona.mdprofile in the current directory. Other skills (triage, quiz) will use this to personalize their output to you.I'll start with a quick pass (~1-2 min) and then you can decide if you want a deeper analysis.
Process
IMPORTANT: This skill involves fetching a lot of data. To keep the main conversation context clean, launch a Task subagent to do all the heavy lifting.
Phase 1: Quick Pass
The subagent should do a focused scan to build a solid initial persona fast:
-
Gather data. Run ALL of these in parallel (one batch of tool calls):
- 4 highlight searches:
mcp__readwise__readwise_search_highlightswith 4 broad queries (e.g. "ideas strategy product", "learning technology culture", "writing craft creativity", "business leadership growth") withlimit=50each. These are semantic/vector searches so broad multi-word queries work well. Highlights are cheap and high-signal — cast a wide net. - 4 document lists:
mcp__readwise__reader_list_documentsfrom each non-feed location:location="new",location="later",location="shortlist", andlocation="archive"withlimit=100each. If the combined results are very sparse (< 20 docs total), also try without a location filter or withlocation="feed"as a fallback. Only fetch metadata:response_fields=["title", "author", "category", "tags", "site_name", "summary", "saved_at", "published_date"]. Do NOT fetch full content. - Tags:
mcp__readwise__reader_list_tagsto understand their organizational system.
- 4 highlight searches:
-
Parse results efficiently. The JSON responses from document lists can be large (25k+ tokens). Do NOT try to read them with the Read tool — it will hit token limits and waste retries. Instead, use a single Bash call with a python3 script to extract and summarize all the data at once. The script should parse all result files together and output:
- Document counts by category
- Top 20 sites, authors, and tags
- Save velocity by month
- All docs saved in the last 3 weeks (title, category, author, date)
- A representative sample of highlight texts with their source titles/authors
-
Write the persona. Write
reader_persona.mdto the current working directory with these sections:- Identity & Role — Who they appear to be (profession, role, industry)
- Core Interests — Top themes and topics, ranked by frequency and recency
- Reading Personality — How they read (saves a lot but reads selectively? highlights heavily? prefers short or long-form?)
- Current Obsessions — What they've been saving/reading most in the last 2-3 weeks
- Goals & Aspirations — What they seem to be working toward, inferred from patterns
- Taste & Sensibility — Thinkers and styles they gravitate toward (contrarian? practical? philosophical? technical?)
- Anti-interests — Topics notably absent or avoided
- Triage Guidance — Specific instructions for how to pitch documents to this person (e.g. "lead with practical applicability", "connect to their interest in X", "bar is high for AI content — flag when it's genuinely novel")
-
Return a brief summary (3-5 sentences) of the persona AND the absolute path to the file.
Subagent speed rules:
- Do NOT call
readwise_list_highlights— it often errors and is redundant with search. - Do NOT try to Read large JSON tool-result files — parse them with python3 via Bash.
- Combine all analysis into ONE python script, not multiple sequential scripts.
- Maximize parallel tool calls. Every API fetch in step 1 should be a single parallel batch.
Phase 2: Deep Pass (optional)
After the quick-pass subagent returns, show the user the results and ask if they want a deeper analysis. If yes, launch a second subagent that:
- Fetches 4-6 more highlight searches with different, more specific queries informed by what phase 1 found (e.g. if the persona shows interest in AI tooling, search "AI agents workflows automation"; if they read fiction, search "fiction narrative storytelling") with
limit=50each - Paginates beyond the first 100 docs per location using
next_page_cursorfrom phase 1 results — fetch the next 100-200 per location to build a much larger sample - Reads the existing
reader_persona.mdand enriches/rewrites it with the additional data — more nuanced sections, stronger evidence, sharper triage guidance - Returns a summary of what changed
After Each Subagent Returns
- Show the file link. Always tell the user:
reader_persona.mdwas written to{absolute_path}. Display the full path so they can open it. - Show a summary of the persona (use the subagent's returned summary).
- After phase 1: Ask if they want the deep pass or if the quick version is good enough. Also ask if they want to adjust anything.
- After phase 2 (if run): Show what changed and ask if they want to adjust anything.
- If adjustments needed, edit the file directly based on their feedback.
- Confirm saved. Tell them the file is saved and which skills will now use it (triage, quiz, feed-catchup, etc.).
How to use build-persona on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add build-persona
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches build-persona from GitHub repository readwiseio/readwise-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate build-persona. Access the skill through slash commands (e.g., /build-persona) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★71 reviews- ★★★★★Alexander Abebe· Dec 24, 2024
I recommend build-persona for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Chaitanya Patil· Dec 20, 2024
build-persona fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Ava Perez· Dec 20, 2024
Solid pick for teams standardizing on skills: build-persona is focused, and the summary matches what you get after install.
- ★★★★★Aditi Thomas· Dec 8, 2024
We added build-persona from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Ira Choi· Dec 4, 2024
Keeps context tight: build-persona is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Min Rahman· Nov 27, 2024
build-persona reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Nikhil Chen· Nov 23, 2024
build-persona has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Charlotte Rao· Nov 15, 2024
Keeps context tight: build-persona is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Piyush G· Nov 11, 2024
Registry listing for build-persona matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★William Haddad· Nov 11, 2024
build-persona is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 71