agent-orchestration-mcp-server
Version:
MCP server that converts natural language queries to orchestration cards for GAFF
22 lines • 634 B
TypeScript
/**
* Orchestration Card Validation
*
* Validate orchestration card structure and content
*
* Author: Sean Poyner <sean.poyner@pm.me>
*/
import { GaffConfig } from './gaff-config.js';
export interface ValidationResult {
valid: boolean;
errors: string[];
warnings: string[];
}
/**
* Validate orchestration card structure
*/
export declare function validateOrchestrationCard(card: any, gaffConfig?: GaffConfig): ValidationResult;
/**
* Sanitize orchestration card (remove invalid fields, apply defaults)
*/
export declare function sanitizeOrchestrationCard(card: any): any;
//# sourceMappingURL=validation.d.ts.map