@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
22 lines (21 loc) • 703 B
TypeScript
/**
* CLI options consumed by the `run` command action.
*
* @private internal utility of `$initializeRunCommand`
*/
export type RunCommandCliOptions = {
readonly reload: boolean;
readonly interactive: boolean;
readonly formfactor: boolean;
readonly json?: string;
readonly verbose: boolean;
readonly saveReport?: string;
readonly provider: string;
readonly remoteServerUrl: string;
};
/**
* Runs the whole `ptbk run` flow as a top-down orchestration of focused steps.
*
* @private internal utility of `$initializeRunCommand`
*/
export declare function runCommandAction(pipelineSource: string | undefined, cliOptions: RunCommandCliOptions): Promise<void | never>;