claude-code-best/src/commands/autonomy.ts
2026-06-01 20:17:09 +08:00

14 lines
416 B
TypeScript

import type { Command } from '../types/command.js'
const autonomy = {
type: 'local-jsx',
name: 'autonomy',
description:
'Inspect automatic autonomy runs recorded for proactive ticks and scheduled tasks',
argumentHint:
'[status [--deep]|runs [limit]|flows [limit]|flow <id>|flow cancel <id>|flow resume <id>]',
load: () => import('./autonomyPanel.js'),
} satisfies Command
export default autonomy