Newer
Older
cortex-hub / CaudeCodeSourceCode / cc-recovered-main / src / commands / plan / index.ts
import type { Command } from '../../commands.js'

const plan = {
  type: 'local-jsx',
  name: 'plan',
  description: 'Enable plan mode or view the current session plan',
  argumentHint: '[open|<description>]',
  load: () => import('./plan.js'),
} satisfies Command

export default plan