/ commands / status / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const status = {
 4    type: 'local-jsx',
 5    name: 'status',
 6    description:
 7      'Show Claude Code status including version, model, account, API connectivity, and tool statuses',
 8    immediate: true,
 9    load: () => import('./status.js'),
10  } satisfies Command
11  
12  export default status