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 692 B
import { z } from 'zod'; /** * Get Context tool schema * Defines input parameters for the tool that gets context for specific tasks in Task Action projects. */ export const GetContextToolSchema = z.object({ contextId: z .string() .min(1, 'Context ID is required') .describe('Unique identifier for the context to retrieve'), 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=get-context.js.map