type RunSkillCalloutProps = { command: string; }; export function RunSkillCallout({ command }: RunSkillCalloutProps) { const slashCommand = command.startsWith("/") ? command : `/${command}`; return (
{slashCommand}