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

const tasks = {
  type: 'local-jsx',
  name: 'tasks',
  aliases: ['bashes'],
  description: 'List and manage background tasks',
  load: () => import('./tasks.js'),
} satisfies Command

export default tasks