Fork
Distill a Lore thread into handoff context for continuing work. Use when the user asks to continue work from a Lore thread, fork from a thread, pick up from a thread, or use a Lore thread as context for a new task.From its SKILL.md
npx -y skills add loredotlink/lore-plugin --skill forkAssembled 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
2.3 KB, 494 tokens by cl100k_base, as published. Nobody here has run it
Fork a Lore Thread
Use the bundled lore-local MCP server to generate an intent-conditioned handoff summary for a Lore thread.
When to Use
Use this skill when the user asks to:
- continue work from a Lore thread
- fork from a Lore thread
- pick up from a previous Lore thread
- use a Lore thread as context for a specific next task
Do not use this for merely reading or listing Lore threads. Use the read skill for read-only thread inspection.
Inputs
This skill needs two inputs:
- A Lore thread URL or ID. Accepted examples include
th_...andhttps://lore.tanagram.ai/thread/th_.... - Forker intent: what the user wants to do next with the source thread.
If either input is missing, ask one concise clarification question before calling the tool.
Tool Flow
- Extract the thread id from the URL path if needed.
- Call
fork_thread({ thread_id, forker_intent })onlore-local. - Treat the returned
source_distilledtext as the source-thread context for the current task.
The fork result is a JSON object with:
source_thread_id— the source Lore thread id.forker_intent— the intent used for the distillation.source_distilled— the handoff context for the new agent.
Do not show raw JSON to the user unless they explicitly ask for it. If the user only asked to prepare the fork context, return source_distilled verbatim. If they asked to continue the work, briefly acknowledge that the fork context was loaded and proceed with the task using that context.
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. - Thread not found or not visible: Tell the user the thread could not be found or they do not have access, and ask for a visible Lore thread URL or ID.
- Missing
source_distilled: Surface the error and do not invent fork context.
Tone
Speak about "threads" and "handoff context". 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.