index.ts
1 import type { Command } from '../../commands.js' 2 3 const stats = { 4 type: 'local-jsx', 5 name: 'stats', 6 description: 'Show your Claude Code usage statistics and activity', 7 load: () => import('./stats.js'), 8 } satisfies Command 9 10 export default stats