39 lines
1.5 KiB
TypeScript
39 lines
1.5 KiB
TypeScript
import type { CommandSpec } from '../args'
|
|
import { ACCOUNT_COMMAND_SPECS } from './account'
|
|
import { BROWSER_ADVANCED_COMMAND_SPECS } from './browser-advanced'
|
|
import { BROWSER_BASIC_COMMAND_SPECS } from './browser-basic'
|
|
import { AUTOMATION_COMMAND_SPECS } from './automations'
|
|
import { CORE_COMMAND_SPECS } from './core'
|
|
import { FILE_COMMAND_SPECS } from './file'
|
|
import { PROJECT_COMMAND_SPECS } from './project'
|
|
import { ORCHESTRATION_COMMAND_SPECS } from './orchestration'
|
|
import { COMPUTER_COMMAND_SPECS } from './computer'
|
|
import { ENVIRONMENT_COMMAND_SPECS } from './environment'
|
|
import { AGENT_HOOK_COMMAND_SPECS } from './agent-hooks'
|
|
import { DIAGNOSTICS_COMMAND_SPECS } from './diagnostics'
|
|
import { EMULATOR_COMMAND_SPECS } from './emulator'
|
|
import { INTROSPECTION_COMMAND_SPECS } from './introspection'
|
|
import { LINEAR_COMMAND_SPECS } from './linear'
|
|
import { VM_COMMAND_SPECS } from './vm'
|
|
import { SKILL_COMMAND_SPECS } from './skills'
|
|
|
|
export const COMMAND_SPECS: CommandSpec[] = [
|
|
...CORE_COMMAND_SPECS,
|
|
...ACCOUNT_COMMAND_SPECS,
|
|
...PROJECT_COMMAND_SPECS,
|
|
...FILE_COMMAND_SPECS,
|
|
...AUTOMATION_COMMAND_SPECS,
|
|
...BROWSER_BASIC_COMMAND_SPECS,
|
|
...BROWSER_ADVANCED_COMMAND_SPECS,
|
|
...ORCHESTRATION_COMMAND_SPECS,
|
|
...COMPUTER_COMMAND_SPECS,
|
|
...AGENT_HOOK_COMMAND_SPECS,
|
|
...DIAGNOSTICS_COMMAND_SPECS,
|
|
...INTROSPECTION_COMMAND_SPECS,
|
|
...ENVIRONMENT_COMMAND_SPECS,
|
|
...LINEAR_COMMAND_SPECS,
|
|
...VM_COMMAND_SPECS,
|
|
...EMULATOR_COMMAND_SPECS,
|
|
...SKILL_COMMAND_SPECS
|
|
]
|