import { AgentChatSurface, markAgentChatHomeHandoff, } from "@agent-native/core/client/agent-chat"; import { useEffect } from "react"; import { TAB_ID } from "@/lib/tab-id"; export function meta() { return [{ title: "Ask CRM" }]; } export default function AskCrmRoute() { useEffect(() => { const onChatRunning = (event: Event) => { if ((event as CustomEvent<{ isRunning?: boolean }>).detail?.isRunning) markAgentChatHomeHandoff("crm"); }; window.addEventListener("agentNative.chatRunning", onChatRunning); return () => window.removeEventListener("agentNative.chatRunning", onChatRunning); }, []); return (

Ask CRM

Explore permitted account context, follow-up work, and evidence across Native SQL and connected records.

} /> ); }