/** * Independent top-level host command leaves. * * `host-command-specs.ts` remains the composition inventory and keeps the * statically declared bridge functions named in each descriptor. This module * owns the leaf-specific option parsing and handlers so that composition stays * readable and bounded. */ import type { HostRuntimeCommandSpec } from './host-runtime-access.js'; import type { CliCommandsContext } from './shared.js'; type HostSpec = HostRuntimeCommandSpec; /** Build the user-level Cloud configuration command. */ export declare function createConfigureCommandSpec(): HostSpec; /** Build the no-init runtime-status inspection command. */ export declare function createStatusCommandSpec(): HostSpec; /** Build the CLI-owned cross-tool report command. */ export declare function createReportCommandSpec(): HostSpec; /** Build the user/project state removal command. */ export declare function createUninstallCommandSpec(ctx: CliCommandsContext): HostSpec; /** Build the machine-oriented host command inventory. */ export declare function createAgentCatalogCommandSpec(ctx: CliCommandsContext): HostSpec; export {}; //# sourceMappingURL=host-leaf-command-specs.d.ts.map