@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).
11 lines • 366 B
JavaScript
import { z } from 'zod';
/**
* Validate Context tool schema
* Defines input parameters for the tool that validates a context and its components.
*/
export const ValidateContextToolSchema = z.object({
projectRoot: z
.string()
.describe('The directory of the project. Must be an absolute path.'),
});
//# sourceMappingURL=validate-context.js.map