mnemos-coder
Version:
CLI-based coding agent with graph-based execution loop and terminal UI
24 lines • 828 B
TypeScript
/**
* Generic Subagent - 기본 구현체
* 특화된 subagent가 없을 때 사용하는 범용 구현체
*/
import { ChatMessage } from '../../llm-client.js';
import { BaseSubagent } from '../BaseSubagent.js';
import { SubagentResponse } from '../types.js';
export declare class GenericSubagent extends BaseSubagent {
private iterationCount;
private toolCallCount;
private startTime;
protected executeInternal(messages: ChatMessage[]): AsyncGenerator<SubagentResponse, void, unknown>;
canHandle(taskDescription: string): Promise<number>;
getExecutionSummary(): {
success: boolean;
iterations: number;
toolCalls: number;
executionTime: number;
result?: any;
error?: string;
logs: string[];
};
}
//# sourceMappingURL=GenericSubagent.d.ts.map