16 lines
393 B
TypeScript
16 lines
393 B
TypeScript
/**
|
|
* Copy command - minimal metadata only.
|
|
* Implementation is lazy-loaded from copy.tsx to reduce startup time.
|
|
*/
|
|
import type { Command } from '../../commands.js'
|
|
|
|
const copy = {
|
|
type: 'local-jsx',
|
|
name: 'copy',
|
|
description:
|
|
"Copy Claude's last response to clipboard (or /copy N for the Nth-latest)",
|
|
load: () => import('./copy.js'),
|
|
} satisfies Command
|
|
|
|
export default copy
|