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.