@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).
15 lines • 622 B
JavaScript
/**
* Common Tool Business Logic Module
* Core logic shared between CLI and MCP server
*/
// Init tool
export { executeInit, executeInitTool } from './init.js';
// Start Context tool
export { executeStartContextTool } from './start-context.js';
// Validate Context tool
export { executeValidateContextTool } from './validate-context.js';
// Start Context schema (re-exported from schemas)
export { StartContextToolSchema } from '../../schemas/start-context.js';
// Validate Task schema (re-exported from schemas)
export { ValidateTaskToolSchema } from '../../schemas/validate-task.js';
//# sourceMappingURL=index.js.map