Read
Read from Lore by fetching a thread by ID or URL, or by listing and searching threads. Use when the user asks to open a Lore thread, find recent Lore sessions, or search Lore for a topic, author, or filepath.From its SKILL.md
npx -y skills add loredotlink/lore-plugin --skill readAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.8 KB, 379 tokens by cl100k_base, as published. Nobody here has run it
Read from Lore
Use the bundled lore-local MCP server to fetch or search Lore threads.
You can search threads semantically with a natural-language query. Use search_threads when the user asks an open-ended question about prior discussions, decisions, or work, not just when they provide exact keywords.
Tool Selection
- Thread ID like
th_...or a Lore URL: Callget_thread({ thread_id }). Extract the id from the URL path if needed. - Keyword phrase:
Call
search_threads({ query, limit: 10 }). - Semantic/open-ended question:
Call
search_threads({ query: question, limit: 10 }). Use this when the user asks about threads in a broad way that cannot be captured by deterministic filters. Examples:- "what have we been thinking about our open-source strategy?"
- "what did we say about running multiple fastify replicas in railway?"
- "what are some recent decisions we've made about our Posthog setup?"
- "recent", "latest", or no specific query:
Call
list_threads({ limit: 10 }).
Output
- Single-thread fetches: Surface the URL prominently along with the title and author.
- Lists: Show the top matches as one-liners with title, author, and link.
- Empty results: Say nothing matched and suggest loosening the query.
Failure Modes
- Auth errors:
Call
lore_loginonlore-local, then retry. Iflore_loginreturnsbrowser_open_failed, tell the user to visit the verification URL, then calllore_login_resume({ device_code })and retry.
Tone
Speak about "threads" and "shared sessions". Never say "transcript", "JSONL", or "MCP" to the user.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.