/** * Root CLI application. */ import { CliError, Command } from "effect/unstable/cli"; import { AppError } from "./app-error/index.js"; /** * Effect CLI built-ins kept for axm: `--completions` and `--log-level` are * intentionally absent — verbosity flags own logger severity instead. */ /** * Experimental AXM command tree for structural inspection and composition. * * Executing the tree through {@link run} is supported for one invocation per * process. Repeated, concurrent, and Worker-hosted invocation are unsupported. * * @experimental This API is unstable and may change without notice. */ export declare const rootCommand: Command.Command<"axm", {}, {}, AppError | CliError.ShowHelp, import("effect/FileSystem").FileSystem | import("effect/Path").Path | import("@agentxm/registry-access/authentication").DeviceLoginInteraction | import("@agentxm/cli-maintenance/official-skill/application").AxmSkillCompatibilityPolicy | import("@agentxm/registry-access/authentication").AuthLoginInteraction>; /** * Run AXM as a process entry point. * * This API supports one invocation per process. It owns stdout, stderr, and * signal handlers for that invocation, and it terminates the process on * failure. Repeated, concurrent, and Worker-hosted invocation are unsupported. * * @experimental This API is unstable and may change without notice. */ export declare const run: (args?: ReadonlyArray) => Promise; //# sourceMappingURL=app.d.ts.map