mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-24 17:15:50 +00:00
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
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
|