UNPKG

@andrebuzeli/advanced-memory-markdown-mcp

Version:

Advanced Memory Bank MCP v3.1.5 - Sistema avançado de gerenciamento de memória com isolamento de projetos por IDE, sincronização sob demanda, backup a cada 30min, apenas arquivos .md principais sincronizados, pasta reasoning temporária com limpeza automát

27 lines 945 B
/** * Sequential Thinking - Clean version without file persistence * Processes structured problem analysis without creating JSON files */ import { ThoughtResult } from '../types/index.js'; export declare class SequentialThinking { private readonly version; constructor(); /** * Process a single thought in the sequential thinking chain * CLEAN VERSION: No file persistence, pure in-memory processing */ processThought(thought: string, thoughtNumber: number, totalThoughts: number, nextThoughtNeeded: boolean, isRevision?: boolean, revisesThought?: number): Promise<ThoughtResult>; /** * Enhance thought with context and analysis */ private enhanceThought; /** * Determine the current stage of thinking */ private getThoughtStage; /** * Get description for the current stage */ private getStageDescription; } //# sourceMappingURL=sequential-thinking.d.ts.map