UNPKG

@vfarcic/dot-ai

Version:

Universal Kubernetes application deployment agent with CLI and MCP interfaces

21 lines 1.37 kB
/** * Test Docs Tool - Documentation testing workflow orchestrator */ import { z } from 'zod'; import { DotAI } from '../core/index'; import { Logger } from '../core/error-handling'; export declare const TESTDOCS_TOOL_NAME = "testDocs"; export declare const TESTDOCS_TOOL_DESCRIPTION = "Test, validate, check, scan, verify, analyze, or review documentation files for accuracy, functionality, broken examples, outdated commands, invalid links, and overall quality. Use this tool whenever the user wants to test docs, validate documentation, check if examples work, scan for issues, verify commands, analyze doc quality, or review documentation content. IMPORTANT: This tool returns a workflow step with a \"prompt\" field - you must execute that prompt immediately to perform the actual documentation analysis."; export declare const TESTDOCS_TOOL_INPUT_SCHEMA: { filePath: z.ZodOptional<z.ZodString>; sessionId: z.ZodOptional<z.ZodString>; phase: z.ZodOptional<z.ZodEnum<["scan", "test", "analyze", "fix", "done"]>>; sectionId: z.ZodOptional<z.ZodString>; results: z.ZodOptional<z.ZodString>; filePattern: z.ZodOptional<z.ZodString>; }; /** * Handle test-docs tool request */ export declare function handleTestDocsTool(args: any, _dotAI: DotAI | null, logger: Logger, requestId: string): Promise<any>; //# sourceMappingURL=test-docs.d.ts.map