/** * `agenticros config [action] [key=value]` - read or edit ~/.agenticros/config.json. * * Actions: * show pretty-print the current config (default) * set `agenticros config set robot.namespace=sim_robot` * edit open in $EDITOR (or vi) * reset delete the file (after confirm) * * Validation: when @agenticros/core's Zod schema is available we validate after * write. Phase 1 ships the looser, defensive version; the schema is layered in * as a follow-up once tsup config is finalised so we don't pull all of core's * native deps into the published bundle yet. */ export interface ConfigOptions { action?: string; keyValue?: string; } export declare function configCommand(opts: ConfigOptions): Promise; //# sourceMappingURL=config.d.ts.map