Build a ccql Config for transcript discovery (None when the Claude data directory does not exist).
(&self)
| 151 | /// Build a ccql Config for transcript discovery (None when the Claude |
| 152 | /// data directory does not exist). |
| 153 | fn ccql_config(&self) -> Option<ccql::Config> { |
| 154 | ccql::Config::new_with_codex_data_dir( |
| 155 | self.claude_data_dir.clone(), |
| 156 | self.codex_data_dir.clone(), |
| 157 | ) |
| 158 | .ok() |
| 159 | } |
| 160 | |
| 161 | fn load_transcripts(&mut self) -> Result<()> { |
| 162 | self.conn.execute( |
no outgoing calls
no test coverage detected