(&self, id: &str)
| 133 | } |
| 134 | |
| 135 | async fn load_verification_reports(&self, id: &str) -> Result<Option<Vec<VerificationReport>>> { |
| 136 | Ok(self.verification_reports.read().await.get(id).cloned()) |
| 137 | } |
| 138 | |
| 139 | async fn save_subagent_tasks(&self, id: &str, tasks: &[SubagentTaskSnapshot]) -> Result<()> { |
| 140 | self.subagent_tasks |