Components
Loading preview...
An animated task plan for your agent, including subtasks and assigned MCP servers.
npx shadcn@latest add https://21st.dev/r/isaiahbjork/agent-plan"use client";
import Plan from "@/components/ui/agent-plan";
export function Demo() {
return (
<div className="flex flex-col p-4 w-full h-full">
<Plan />
</div>
);
}