mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 13:55:50 +00:00
- 新增 autonomy CLI handler 和交互式面板 - 新增 autonomyCommandSpec 命令规范定义 - 新增 autonomyAuthority 权限控制 - 新增 autonomyStatus 状态管理 - 注册 CLI 子命令 (claude autonomy status/runs/flows/flow) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
416 B
TypeScript
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
|