import { Copy } from 'lucide-react' import { useState } from 'react' import { Button, copyToClipboard } from 'ui' import type { StepContentProps } from '@/components/interfaces/ConnectSheet/Connect.types' const SKILLS_COMMAND = 'npx skills add briven/agent-skills' function SkillsInstallContent(_props: StepContentProps) { const [copyLabel, setCopyLabel] = useState('Copy') const handleCopy = () => { copyToClipboard(SKILLS_COMMAND, () => { setCopyLabel('Copied') setTimeout(() => setCopyLabel('Copy'), 2000) }) } return (
{SKILLS_COMMAND}