mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 20:46:58 +10:00
13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
|
|
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
|