the claude code sourcemaps leaked march 31
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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}