@emmahyde/thought-patterns
Version:
MCP server combining systematic thinking, mental models, debugging approaches, and stochastic algorithms for comprehensive cognitive pattern support
22 lines (21 loc) • 708 B
TypeScript
export interface VisualElement {
id: string;
type: "node" | "edge" | "container" | "annotation";
label?: string;
properties: Record<string, any>;
source?: string;
target?: string;
contains?: string[];
}
export interface VisualOperationData {
operation: "create" | "update" | "delete" | "transform" | "observe";
elements?: VisualElement[];
transformationType?: "rotate" | "move" | "resize" | "recolor" | "regroup";
diagramId: string;
diagramType: "graph" | "flowchart" | "stateDiagram" | "conceptMap" | "treeDiagram" | "custom";
iteration: number;
observation?: string;
insight?: string;
hypothesis?: string;
nextOperationNeeded: boolean;
}