codev / src /commands /goal /index.ts
chenbhao's picture
feat: /goal
fdc8b59
Raw
History Blame Contribute Delete
390 Bytes
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