UNPKG

@promptbook/node

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

20 lines (19 loc) 643 B
import type { PromptRunOptions } from '../types/PromptRunOptions'; import type { PromptRunResult } from '../types/PromptRunResult'; import type { PromptRunner } from '../types/PromptRunner'; import type { ClineRunnerOptions } from './ClineRunnerOptions'; /** * Runs prompts via the Cline CLI. */ export declare class ClineRunner implements PromptRunner { private readonly options; readonly name = "cline"; /** * Creates a new Cline runner. */ constructor(options: ClineRunnerOptions); /** * Runs the prompt using the Cline CLI. */ runPrompt(options: PromptRunOptions): Promise<PromptRunResult>; }