File size: 390 Bytes
fdc8b59 | 1 2 3 4 5 6 7 8 9 10 11 12 | import type { Command } from '../../commands.js'
const goal = {
type: 'local-jsx',
name: 'goal',
description:
'Set or manage a long-running autonomous goal. The agent auto-continues toward it across turns until achieved, blocked, or paused.',
argumentHint: '[pause|resume|clear|edit|set <objective>]',
load: () => import('./goal.js'),
} satisfies Command
export default goal |