@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).
16 lines • 567 B
JavaScript
import { z } from 'zod';
/**
* Init tool schema
* Defines input parameters for the tool that initializes Task Action projects.
*/
export const InitToolSchema = z.object({
projectRoot: z
.string()
.describe('The root directory for the project. ALWAYS SET THIS TO THE PROJECT ROOT DIRECTORY. IF NOT SET, THE TOOL WILL NOT WORK.'),
enhancedPrompt: z
.boolean()
.optional()
.default(false)
.describe('Use enhanced prompts with detailed guidelines instead of simple prompts'),
});
//# sourceMappingURL=init.js.map