mirror of
https://github.com/stablyai/orca.git
synced 2026-09-27 08:02:35 +00:00
Migrate profile state to SQLite and move writes and backups into a background worker. Acknowledge terminal, SSH and automation changes only after durable saves. Preserve JSON import, recovery, rollback and compatibility exports. Validate migration, worker failures, maintenance, cross-profile moves and terminal lifetime races with unit, integration and end-to-end coverage.
45 lines
1.7 KiB
TypeScript
45 lines
1.7 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'
|
|
import { ARTIFACT_COMMAND_SPECS } from './artifacts'
|
|
import { SEARCH_COMMAND_SPECS } from './search'
|
|
import { PROFILE_STATE_COMMAND_SPECS } from './profile-state'
|
|
|
|
export const COMMAND_SPECS: CommandSpec[] = [
|
|
...CORE_COMMAND_SPECS,
|
|
...ARTIFACT_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,
|
|
...SEARCH_COMMAND_SPECS,
|
|
...PROFILE_STATE_COMMAND_SPECS
|
|
]
|