const plan = await lucid.agents.plan({ agentId: agent.id, goal: "Research the latest advances in quantum computing and summarize the top 5 breakthroughs"});console.log("Steps:", plan.steps.length);plan.steps.forEach((step, i) => console.log(` ${i + 1}. ${step.description}`));
// Full audit trailconst history = await lucid.agents.history(agent.id);// MMR root for all agent receiptsconst root = await lucid.agents.root(agent.id);