csvlod-ai-mcp-server
Version:
CSVLOD-AI MCP Server v3.0 with Quantum Context Intelligence - Revolutionary Context Intelligence Engine and Multimodal Processor for sovereign AI development
32 lines • 1.27 kB
TypeScript
/**
* SIS 4.0 Thought Interface Tool
* Direct mind-to-code translation (neural hardware pending)
*/
import { z } from 'zod';
export declare const thoughtInterfaceTool: {
name: string;
description: string;
parameters: z.ZodObject<{
thought: z.ZodString;
emotion: z.ZodOptional<z.ZodEnum<["focused", "creative", "frustrated", "inspired", "confused"]>>;
intent: z.ZodOptional<z.ZodEnum<["create", "fix", "optimize", "refactor", "document", "test"]>>;
autoManifest: z.ZodDefault<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
thought: string;
autoManifest: boolean;
emotion?: "focused" | "creative" | "frustrated" | "inspired" | "confused" | undefined;
intent?: "create" | "fix" | "optimize" | "refactor" | "document" | "test" | undefined;
}, {
thought: string;
emotion?: "focused" | "creative" | "frustrated" | "inspired" | "confused" | undefined;
intent?: "create" | "fix" | "optimize" | "refactor" | "document" | "test" | undefined;
autoManifest?: boolean | undefined;
}>;
execute: (args: any) => Promise<{
content: {
type: string;
text: string;
}[];
}>;
};
//# sourceMappingURL=thought-interface.d.ts.map