UNPKG

mnemos-coder

Version:

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

20 lines 789 B
/** * Coding Specialist SubAgent * Specialized in code generation, refactoring, and implementation */ import { BaseSubagent } from '../BaseSubagent.js'; import { SubagentContext, SubagentResponse } from '../types.js'; import { ChatMessage } from '../../llm-client.js'; export declare class CodingSpecialist extends BaseSubagent { private sharedContext; private codingLLM; constructor(); initialize(context: SubagentContext): Promise<void>; protected buildSystemPrompt(): string; canHandle(task: string): Promise<number>; protected executeInternal(messages: ChatMessage[]): AsyncGenerator<SubagentResponse, void, unknown>; private analyzeTask; private updateSharedContext; private getOperationType; } //# sourceMappingURL=CodingSpecialist.d.ts.map