import type { Command } from '../../commands.js' const goal = { type: 'local', name: 'goal', description: 'Set or view the goal for a long-running task', supportsNonInteractive: true, argumentHint: ' | clear | pause | resume', load: () => import('./goal.js'), } satisfies Command export default goal