vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
18 lines • 545 B
TypeScript
export declare class CommandHistory {
private history;
private currentIndex;
private maxSize;
private historyFile;
private tempCommand;
constructor(maxSize?: number, historyFile?: string);
private loadHistory;
saveHistory(): Promise<void>;
add(command: string): void;
getPrevious(currentInput?: string): string | undefined;
getNext(): string | undefined;
resetPosition(): void;
getAll(): string[];
clear(): void;
search(query: string): string[];
}
//# sourceMappingURL=history.d.ts.map