source dump of claude code
at main 7 lines 254 B view raw
1import type { LocalCommandCall } from '../../types/command.js' 2import { clearConversation } from './conversation.js' 3 4export const call: LocalCommandCall = async (_, context) => { 5 await clearConversation(context) 6 return { type: 'text', value: '' } 7}