UNPKG

pdca

Version:

🎯 AI 驅動的 PDCA 多代理開發系統 - 智能循環控制 + 成本管理 + Token 優化 + 多 AI 引擎支援

24 lines 699 B
/** * 模擬代理 * 在無法真正啟動多個 Claude CLI 時用於測試和演示 */ import { EventEmitter } from 'events'; import { AgentRole } from './message-protocol.js'; export declare class SimulatedAgent extends EventEmitter { private role; private name; private watching; private watchInterval?; private communicationDir; constructor(role: AgentRole, name: string); start(): void; stop(): void; private checkForTasks; private handleTask; private simulateProgress; private getProgressMessage; private simulateCompletion; private getSimulatedArtifacts; } export default SimulatedAgent; //# sourceMappingURL=simulated-agent.d.ts.map