UNPKG

vibe-tools

Version:
16 lines (15 loc) 588 B
import { FeatureBehavior, TestScenario } from './types'; /** * Parse a feature behavior file into a structured object * * @param filePath - Path to the feature behavior file * @returns Parsed feature behavior or null if parsing failed */ export declare function parseFeatureBehaviorFile(filePath: string): Promise<FeatureBehavior | null>; /** * Generate a prompt for the AI agent to execute a test scenario * * @param scenario - The test scenario to execute * @returns A prompt for the AI agent */ export declare function generateScenarioPrompt(scenario: TestScenario): string;