@emmahyde/thought-patterns
Version:
MCP server combining systematic thinking, mental models, debugging approaches, and stochastic algorithms for comprehensive cognitive pattern support
16 lines (15 loc) • 493 B
TypeScript
export interface ArgumentData {
claim: string;
premises: string[];
conclusion: string;
argumentId?: string;
argumentType: "thesis" | "antithesis" | "synthesis" | "objection" | "rebuttal";
confidence: number;
respondsTo?: string;
supports?: string[];
contradicts?: string[];
strengths?: string[];
weaknesses?: string[];
nextArgumentNeeded: boolean;
suggestedNextTypes?: ("thesis" | "antithesis" | "synthesis" | "objection" | "rebuttal")[];
}