UNPKG

mnemos-coder

Version:

CLI-based coding agent with graph-based execution loop and terminal UI

39 lines 971 B
/** * Context Debug Command * CLI commands for inspecting and debugging agent-subagent contexts */ export declare class ContextDebugCommand { private contextManager; constructor(projectRoot: string); /** * List all contexts */ listContexts(options?: { status?: string; subagent?: string; date?: string; limit?: number; }): Promise<void>; /** * Show detailed context */ showContext(sessionId: string): Promise<void>; /** * Replay context execution */ replayContext(sessionId: string): Promise<void>; /** * Export context to file */ exportContext(sessionId: string, outputPath: string): Promise<void>; /** * Clean old contexts */ cleanContexts(daysOld?: number): Promise<void>; /** * Show context statistics */ showStats(): Promise<void>; private getStatusColor; } //# sourceMappingURL=ContextDebugCommand.d.ts.map