| 104 | #[derive(Debug, Deserialize)] |
| 105 | #[allow(dead_code)] |
| 106 | struct AgentStopInput { |
| 107 | #[serde(default)] |
| 108 | session_id: Option<String>, |
| 109 | |
| 110 | /// Working directory |
| 111 | #[serde(default)] |
| 112 | cwd: Option<String>, |
| 113 | |
| 114 | /// Model identifier |
| 115 | #[serde(default)] |
| 116 | model: Option<String>, |
| 117 | |
| 118 | /// ISO 8601 timestamp |
| 119 | #[serde(default)] |
| 120 | timestamp: Option<String>, |
| 121 | } |
| 122 | |
| 123 | /// JSON input for pre-tool-use and post-tool-use hooks. |
| 124 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected