mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 19:26:58 +10:00
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
|