(&self, project_root: &Path)
| 74 | } |
| 75 | |
| 76 | fn transcript_paths(&self, project_root: &Path) -> Vec<PathBuf> { |
| 77 | let mut out = Vec::new(); |
| 78 | out.extend(collect_workspace_session_files( |
| 79 | &self.agent_dir.join("workspace-sessions"), |
| 80 | project_root, |
| 81 | )); |
| 82 | out.extend(collect_agent_storage_files( |
| 83 | &self.agent_dir, |
| 84 | &self.workspace_storage_dir, |
| 85 | project_root, |
| 86 | )); |
| 87 | out |
| 88 | } |
| 89 | |
| 90 | fn parse_new( |
| 91 | &self, |
no test coverage detected