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

const status = {
  type: 'local-jsx',
  name: 'status',
  description:
    'Show Claude Code status including version, model, account, API connectivity, and tool statuses',
  immediate: true,
  load: () => import('./status.js'),
} satisfies Command

export default status