(&self, home: &Path)
| 99 | } |
| 100 | |
| 101 | fn has_tracedecay(&self, home: &Path) -> bool { |
| 102 | let config_path = opencode_config_path(home); |
| 103 | if !config_path.exists() { |
| 104 | return false; |
| 105 | } |
| 106 | let json = super::load_json_file(&config_path); |
| 107 | let mcp = json.get("mcp"); |
| 108 | mcp.and_then(|v| v.get("tracedecay")).is_some() |
| 109 | } |
| 110 | |
| 111 | fn export_managed_skills( |
| 112 | &self, |
no test coverage detected