mnemos-coder
Version:
CLI-based coding agent with graph-based execution loop and terminal UI
13 lines • 553 B
TypeScript
/**
* Project Planner SubAgent
* Plans project structure, breaks down complex tasks, and coordinates execution
*/
import { BaseSubagent } from '../BaseSubagent.js';
import { SubagentResponse } from '../types.js';
import { ChatMessage } from '../../llm-client.js';
export declare class ProjectPlanner extends BaseSubagent {
constructor();
canHandle(taskDescription: string): Promise<number>;
protected executeInternal(messages: ChatMessage[]): AsyncGenerator<SubagentResponse, void, unknown>;
}
//# sourceMappingURL=ProjectPlanner.d.ts.map