Returns the canonical built-in delegated-agent name for this style.
(&self)
| 220 | |
| 221 | /// Returns the canonical built-in delegated-agent name for this style. |
| 222 | pub fn builtin_agent_name(&self) -> &'static str { |
| 223 | match self { |
| 224 | AgentStyle::GeneralPurpose => "general", |
| 225 | AgentStyle::Plan => "plan", |
| 226 | AgentStyle::Verification => "verification", |
| 227 | AgentStyle::Explore => "explore", |
| 228 | AgentStyle::CodeReview => "review", |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | /// Returns the stable runtime mode label for UI/event consumers. |
| 233 | pub fn runtime_mode(&self) -> &'static str { |
no outgoing calls
no test coverage detected