type RunSkillCalloutProps = { command: string; }; export function RunSkillCallout({ command }: RunSkillCalloutProps) { const slashCommand = command.startsWith("/") ? command : `/${command}`; return (
Run this skill in your agent
> {slashCommand}
); }