{
"version": "atlas-debrief-v1",
"title": "Research Summary Debrief",
"summary": "A research walk-through with the answer, strongest evidence, and the tradeoffs worth debating.",
"atlas": {
"openingSpeech": "I have the research summary ready. I can walk you through the answer, evidence, and recommendation when you want to start.",
"instructions": "Answer first. Keep this crisp and evidence-led. Pause after each section.",
"delivery": "manual"
},
"canvas": {
"title": "Research Summary",
"deliveryMode": "replace",
"pages": [
{
"title": "Answer First",
"html": "<div><h2>Recommendation</h2><p>The lightweight bridge model is the fastest path to local private tools without exposing localhost to the internet.</p></div>"
},
{
"title": "Evidence",
"html": "<div><h2>Evidence</h2><table><tr><th>Option</th><th>Setup friction</th><th>Security posture</th></tr><tr><td>Polling bridge</td><td>Low</td><td>Strong</td></tr><tr><td>Public tunnel</td><td>Medium</td><td>Weaker</td></tr><tr><td>Persistent socket</td><td>Medium</td><td>Strong</td></tr></table></div>"
},
{
"title": "Tradeoffs",
"html": "<div><h2>Tradeoffs</h2><p>Polling is simple and safe, but not instant. A persistent socket is smoother later, but more operationally complex now.</p></div>"
},
{
"title": "Recommendation",
"html": "<div><h2>Next move</h2><p>Ship the polling bridge first, then upgrade to long-poll or websocket only if latency or chatter becomes a real product issue.</p></div>"
}
]
},
"sections": [
{
"title": "Answer First",
"speech": "The short answer is yes: the local bridge model is the right choice. It keeps the setup simple, avoids public exposure, and fits the product well.",
"checkpointPrompt": "I can show you the evidence next.",
"pageIndex": 0,
"delivery": "wait_for_prompt"
},
{
"title": "Evidence",
"speech": "The strongest evidence is the tradeoff profile. The polling bridge has the lowest setup friction while still keeping the security model clean.",
"checkpointPrompt": "Next I’ll show you the tradeoffs.",
"pageIndex": 1,
"delivery": "wait_for_prompt"
},
{
"title": "Tradeoffs",
"speech": "The tradeoff is mostly experience versus simplicity. Polling is slightly less elegant than a socket, but it is much easier to ship and support first.",
"checkpointPrompt": "I can finish with the recommendation.",
"pageIndex": 2,
"delivery": "wait_for_prompt"
},
{
"title": "Recommendation",
"speech": "The recommendation is to keep the current bridge, harden the product feedback, and only move to a more complex transport if the real usage pattern demands it.",
"checkpointPrompt": "That is the research summary. If you want, I can turn it into a decision memo or next steps.",
"pageIndex": 3,
"delivery": "wait_for_prompt"
}
],
"actions": {
"speakToRoom": true,
"openCanvas": true
}
}