| 31 | /// and the current state of the file watcher. |
| 32 | #[derive(Debug, Args)] |
| 33 | pub struct AgentStatus { |
| 34 | /// Show detailed session information. |
| 35 | /// |
| 36 | /// When enabled, shows per-session details including turn count, |
| 37 | /// files touched, duration, and first prompt. |
| 38 | #[arg(short, long)] |
| 39 | verbose: bool, |
| 40 | } |
| 41 | |
| 42 | impl AgentStatus { |
| 43 | /// Create a default instance for testing. |
nothing calls this directly
no outgoing calls
no test coverage detected