source dump of claude code
at main 15 lines 393 B view raw
1/** 2 * Copy command - minimal metadata only. 3 * Implementation is lazy-loaded from copy.tsx to reduce startup time. 4 */ 5import type { Command } from '../../commands.js' 6 7const copy = { 8 type: 'local-jsx', 9 name: 'copy', 10 description: 11 "Copy Claude's last response to clipboard (or /copy N for the Nth-latest)", 12 load: () => import('./copy.js'), 13} satisfies Command 14 15export default copy