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 • 990 B
TypeScript
/**
* SIS 4.0 Temporal Debugger Tool
* Debug future bugs before they exist
*/
import { z } from 'zod';
export declare const temporalDebuggerTool: {
name: string;
description: string;
parameters: z.ZodObject<{
operation: z.ZodEnum<["scan", "prevent", "rollback", "verify"]>;
timeframe: z.ZodDefault<z.ZodString>;
bugId: z.ZodOptional<z.ZodString>;
autoFix: z.ZodDefault<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
operation: "scan" | "prevent" | "rollback" | "verify";
timeframe: string;
autoFix: boolean;
bugId?: string | undefined;
}, {
operation: "scan" | "prevent" | "rollback" | "verify";
timeframe?: string | undefined;
bugId?: string | undefined;
autoFix?: boolean | undefined;
}>;
execute: (args: any) => Promise<{
content: {
type: string;
text: string;
}[];
}>;
};
//# sourceMappingURL=temporal-debugger.d.ts.map