mnemos-coder
Version:
CLI-based coding agent with graph-based execution loop and terminal UI
13 lines • 555 B
TypeScript
/**
* Refactoring Expert SubAgent
* Specializes in code refactoring, optimization, and pattern application
*/
import { BaseSubagent } from '../BaseSubagent.js';
import { SubagentResponse } from '../types.js';
import { ChatMessage } from '../../llm-client.js';
export declare class RefactoringExpert extends BaseSubagent {
constructor();
canHandle(taskDescription: string): Promise<number>;
protected executeInternal(messages: ChatMessage[]): AsyncGenerator<SubagentResponse, void, unknown>;
}
//# sourceMappingURL=RefactoringExpert.d.ts.map