UNPKG

@noanswer/context-compose

Version:

Orchestrate complex AI interactions with Context Compose. A powerful CLI and server for building, validating, and managing context for large language models using the Model Context Protocol (MCP).

20 lines 712 B
import { z } from 'zod'; /** * Validate Task Tool Schema * Defines the input parameters for the tool that validates task files and related files in a Context Compose project. */ export const ValidateTaskToolSchema = z.object({ taskId: z .string() .min(1, 'Task ID is required') .describe('The unique identifier of the task to be validated'), projectRoot: z .string() .describe('The directory of the project. Must be an absolute path.'), enhancedPrompt: z .boolean() .optional() .default(false) .describe('Use enhanced prompts with detailed guidelines instead of simple prompts'), }); //# sourceMappingURL=validate-task.js.map