Agent Command

Ask the agent to build something...

⌘K
agent-dashboard.tsx
Live compose AI Pairing
export function AgentDashboard() {
  const workspace = useAgentWorkspace({
    vibe: "ambient-glass",
    runtime: "codex",
    focus: "ship stunning developer flows",
  });

  return (
    <FrostedShell intent="pair-programming">
      <EditorCanvas state={workspace} />
      <AgentRail presence="listening" />
    </FrostedShell>
  );
}