@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 • 683 B
JavaScript
import { z } from 'zod';
/**
* Start Context tool schema
* Defines input parameters for the tool that starts a context for a task.
*/
export const StartContextToolSchema = z.object({
contextName: z
.string()
.min(1, 'Context name is required')
.describe('Name of the context to start (e.g., feature, api, test)'),
projectRoot: z
.string()
.describe('The directory of the project. Must be an absolute path.'),
enhancedPrompt: z
.boolean()
.optional()
.default(true)
.describe('Use enhanced prompts with detailed guidelines instead of simple prompts'),
});
//# sourceMappingURL=start-context.js.map