(path: &Path)
| 326 | } |
| 327 | |
| 328 | fn read_codex_subagent_start_counts(path: &Path) -> BTreeMap<String, u64> { |
| 329 | std::fs::read_to_string(path) |
| 330 | .ok() |
| 331 | .and_then(|content| serde_json::from_str(&content).ok()) |
| 332 | .unwrap_or_default() |
| 333 | } |
| 334 | |
| 335 | fn codex_subagent_start_context(hint: Option<ToolHint>, no_history: bool) -> String { |
| 336 | let mut context = String::new(); |
no outgoing calls
no test coverage detected