(task: Task)
| 78 | } |
| 79 | |
| 80 | private async processOne(task: Task): Promise<void> { |
| 81 | try { |
| 82 | await this.process(task); |
| 83 | } catch (err) { |
| 84 | this.ctx.log.error(`SkillEvolver error for task ${task.id}: ${err}`); |
| 85 | this.store.setTaskSkillMeta(task.id, { skillStatus: "skipped", skillReason: `Error: ${err}` }); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | private async process(task: Task): Promise<void> { |
| 90 | const chunks = this.store.getChunksByTask(task.id); |
no test coverage detected