/ commands / color / index.ts
index.ts
 1  /**
 2   * Color command - minimal metadata only.
 3   * Implementation is lazy-loaded from color.ts to reduce startup time.
 4   */
 5  import type { Command } from '../../commands.js'
 6  
 7  const color = {
 8    type: 'local-jsx',
 9    name: 'color',
10    description: 'Set the prompt bar color for this session',
11    immediate: true,
12    argumentHint: '<color|default>',
13    load: () => import('./color.js'),
14  } satisfies Command
15  
16  export default color