index.ts 393 B

123456789101112131415
  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. const copy = {
  7. type: 'local-jsx',
  8. name: 'copy',
  9. description:
  10. "Copy Claude's last response to clipboard (or /copy N for the Nth-latest)",
  11. load: () => import('./copy.js'),
  12. } satisfies Command
  13. export default copy