@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
19 lines (18 loc) • 845 B
TypeScript
import type { Command as Program } from 'commander';
import type { $side_effect } from '../../utils/organization/$side_effect';
/**
* Initializes `coder` command with subcommands for Promptbook CLI utilities
*
* The coder command provides utilities for automated coding:
* - init: Initialize coder configuration in current project
* - generate-boilerplates: Generate prompt boilerplate files
* - find-refactor-candidates: Find files that need refactoring
* - run: Run coding prompts with AI agents
* - verify: Verify completed prompts
* - find-fresh-emoji-tags: Find unused emoji tags
*
* 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 $initializeCoderCommand(program: Program): $side_effect;