/ commands / copy / index.ts
index.ts
 1  /**
 2   * Copy command - minimal metadata only.
 3   * Implementation is lazy-loaded from copy.tsx to reduce startup time.
 4   */
 5  import type { Command } from '../../commands.js'
 6  
 7  const 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  
15  export default copy