@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
21 lines (20 loc) • 852 B
TypeScript
import type { Command as Program } from 'commander';
import type { $side_effect } from '../../../utils/organization/$side_effect';
/**
* Initializes `coder generate-boilerplates` command for Promptbook CLI utilities
*
* Note: `$` is used to indicate that this function is not a pure function - it registers a command in the CLI
*
* @private internal function of `promptbookCli`
*/
export declare function $initializeCoderGenerateBoilerplatesCommand(program: Program): $side_effect;
/**
* Generates boilerplate prompt files with unique emoji tags.
*
* @private internal function of `generatePromptBoilerplate` command
*/
export declare function generatePromptBoilerplate({ projectPath, filesCount, templateOption, }: {
readonly projectPath: string;
readonly filesCount: number;
readonly templateOption?: string;
}): Promise<void>;