Replace all "Claude's" references with "CoStrict's" across 34 source files including commands, components, services, tools, and utilities.
16 lines
395 B
TypeScript
16 lines
395 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 CoStrict's last response to clipboard (or /copy N for the Nth-latest)",
|
|
load: () => import('./copy.js'),
|
|
} satisfies Command
|
|
|
|
export default copy
|