tsk-ai 0.10.5

tsk-tsk: keeping your agents out of trouble with sandboxed coding agent automation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
use serde::{Deserialize, Serialize};
use std::fmt;

/// A structured log line produced by agent log processors.
///
/// Each variant represents a semantically distinct data shape.
/// Agents emit the subset that fits their capabilities.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum LogLine {
    /// General-purpose log line: tool invocations, tool results, agent text, errors.
    Message {
        #[serde(default, skip_serializing_if = "Level::is_default")]
        level: Level,
        #[serde(default, skip_serializing_if = "Vec::is_empty")]
        tags: Vec<String>,
        #[serde(default, skip_serializing_if = "Option::is_none")]
        tool: Option<String>,
        message: String,
    },
    /// Structured todo list update with per-item status.
    Todo {
        #[serde(default, skip_serializing_if = "Vec::is_empty")]
        tags: Vec<String>,
        items: Vec<TodoItem>,
    },
    /// Final task result with structured metadata.
    Summary {
        success: bool,
        message: String,
        #[serde(default, skip_serializing_if = "Option::is_none")]
        cost_usd: Option<f64>,
        #[serde(default, skip_serializing_if = "Option::is_none")]
        duration_ms: Option<u64>,
        #[serde(default, skip_serializing_if = "Option::is_none")]
        num_turns: Option<u64>,
    },
}

/// Severity level for Message log lines.
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum Level {
    #[default]
    Info,
    Success,
    Warning,
    Error,
}

impl Level {
    /// Returns true if this is the default level (Info).
    /// Used by serde skip_serializing_if.
    pub fn is_default(&self) -> bool {
        matches!(self, Level::Info)
    }
}

/// A single item in a structured todo list.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct TodoItem {
    pub content: String,
    pub status: TodoStatus,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub active_form: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub priority: Option<String>,
}

/// Status of a todo item.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum TodoStatus {
    Pending,
    InProgress,
    Completed,
}

impl LogLine {
    /// Create a Message with Info level.
    pub fn message(tags: Vec<String>, tool: Option<String>, message: String) -> Self {
        LogLine::Message {
            level: Level::Info,
            tags,
            tool,
            message,
        }
    }

    /// Create a Message with Error level.
    pub fn error(tags: Vec<String>, tool: Option<String>, message: String) -> Self {
        LogLine::Message {
            level: Level::Error,
            tags,
            tool,
            message,
        }
    }

    /// Create a Message with Success level.
    pub fn success(tags: Vec<String>, tool: Option<String>, message: String) -> Self {
        LogLine::Message {
            level: Level::Success,
            tags,
            tool,
            message,
        }
    }

    /// Create a Message with Warning level.
    pub fn warning(tags: Vec<String>, tool: Option<String>, message: String) -> Self {
        LogLine::Message {
            level: Level::Warning,
            tags,
            tool,
            message,
        }
    }

    /// Create an infrastructure message with the "tsk" tag (Info level).
    pub fn tsk_message(message: impl Into<String>) -> Self {
        Self::message(vec!["tsk".into()], None, message.into())
    }

    /// Create an infrastructure success message with the "tsk" tag.
    pub fn tsk_success(message: impl Into<String>) -> Self {
        Self::success(vec!["tsk".into()], None, message.into())
    }

    /// Create an infrastructure warning with the "tsk" tag.
    pub fn tsk_warning(message: impl Into<String>) -> Self {
        Self::warning(vec!["tsk".into()], None, message.into())
    }

    /// Create an infrastructure error with the "tsk" tag.
    pub fn tsk_error(message: impl Into<String>) -> Self {
        Self::error(vec!["tsk".into()], None, message.into())
    }

    /// Create a Todo log line.
    pub fn todo(tags: Vec<String>, items: Vec<TodoItem>) -> Self {
        LogLine::Todo { tags, items }
    }

    /// Create a Summary log line.
    pub fn summary(
        success: bool,
        message: String,
        cost_usd: Option<f64>,
        duration_ms: Option<u64>,
        num_turns: Option<u64>,
    ) -> Self {
        LogLine::Summary {
            success,
            message,
            cost_usd,
            duration_ms,
            num_turns,
        }
    }
}

impl fmt::Display for LogLine {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            LogLine::Message {
                tags,
                tool,
                message,
                ..
            } => {
                for tag in tags {
                    write!(f, "[{tag}]")?;
                }
                if !tags.is_empty() {
                    write!(f, " ")?;
                }
                if let Some(tool) = tool {
                    write!(f, "{tool}: ")?;
                }
                write!(f, "{message}")
            }
            LogLine::Todo { tags, items } => {
                for tag in tags {
                    write!(f, "[{tag}]")?;
                }
                if !tags.is_empty() {
                    write!(f, " ")?;
                }
                write!(f, "TodoWrite:")?;
                let completed = items
                    .iter()
                    .filter(|i| i.status == TodoStatus::Completed)
                    .count();
                for item in items {
                    let (checkbox, text) = match item.status {
                        TodoStatus::Completed => ("[x]", item.content.as_str()),
                        TodoStatus::InProgress => {
                            ("[~]", item.active_form.as_deref().unwrap_or(&item.content))
                        }
                        TodoStatus::Pending => ("[ ]", item.content.as_str()),
                    };
                    write!(f, " {checkbox} {text},")?;
                }
                write!(f, " ({}/{} done)", completed, items.len())
            }
            LogLine::Summary {
                success,
                message,
                cost_usd,
                duration_ms,
                num_turns,
            } => {
                let status = if *success { "success" } else { "failed" };
                write!(f, "Result: {status} | {message}")?;
                if let Some(cost) = cost_usd {
                    write!(f, " | ${cost:.2}")?;
                }
                if let Some(ms) = duration_ms {
                    let secs = ms / 1000;
                    write!(f, " | {secs}s")?;
                }
                if let Some(turns) = num_turns {
                    write!(f, " | {turns} turns")?;
                }
                Ok(())
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_message_serialization() {
        let line = LogLine::message(vec![], Some("Bash".into()), "Running: cargo test".into());
        let json = serde_json::to_string(&line).unwrap();
        assert_eq!(
            json,
            r#"{"type":"message","tool":"Bash","message":"Running: cargo test"}"#
        );

        // Round-trip
        let parsed: LogLine = serde_json::from_str(&json).unwrap();
        if let LogLine::Message {
            tool,
            message,
            level,
            tags,
        } = parsed
        {
            assert_eq!(tool, Some("Bash".to_string()));
            assert_eq!(message, "Running: cargo test");
            assert_eq!(level, Level::Info);
            assert!(tags.is_empty());
        } else {
            panic!("Expected Message variant");
        }
    }

    #[test]
    fn test_error_serialization() {
        let line = LogLine::error(vec![], Some("Bash".into()), "Tests failed".into());
        let json = serde_json::to_string(&line).unwrap();
        assert!(json.contains(r#""level":"error""#));
        assert!(json.contains(r#""tool":"Bash""#));
    }

    #[test]
    fn test_todo_serialization() {
        let items = vec![
            TodoItem {
                content: "Update imports".into(),
                status: TodoStatus::Completed,
                active_form: None,
                priority: None,
            },
            TodoItem {
                content: "Analyzing code".into(),
                status: TodoStatus::InProgress,
                active_form: Some("Analyzing code".into()),
                priority: None,
            },
            TodoItem {
                content: "Write tests".into(),
                status: TodoStatus::Pending,
                active_form: None,
                priority: None,
            },
        ];
        let line = LogLine::todo(vec![], items);
        let json = serde_json::to_string(&line).unwrap();
        assert!(json.contains(r#""type":"todo""#));

        let parsed: LogLine = serde_json::from_str(&json).unwrap();
        if let LogLine::Todo { items, .. } = parsed {
            assert_eq!(items.len(), 3);
            assert_eq!(items[0].status, TodoStatus::Completed);
            assert_eq!(items[1].status, TodoStatus::InProgress);
        } else {
            panic!("Expected Todo variant");
        }
    }

    #[test]
    fn test_summary_serialization() {
        let line = LogLine::summary(
            true,
            "Task completed".into(),
            Some(0.15),
            Some(45000),
            Some(12),
        );
        let json = serde_json::to_string(&line).unwrap();
        assert!(json.contains(r#""type":"summary""#));
        assert!(json.contains(r#""success":true"#));
        assert!(json.contains(r#""cost_usd":0.15"#));
    }

    #[test]
    fn test_summary_compact_serialization() {
        // Fields with None should be omitted
        let line = LogLine::summary(false, "Task failed".into(), None, None, None);
        let json = serde_json::to_string(&line).unwrap();
        assert!(!json.contains("cost_usd"));
        assert!(!json.contains("duration_ms"));
        assert!(!json.contains("num_turns"));
    }

    #[test]
    fn test_display_message() {
        let line = LogLine::message(
            vec!["opus-4".into(), "software-architect".into()],
            Some("Bash".into()),
            "Running: cargo test".into(),
        );
        assert_eq!(
            line.to_string(),
            "[opus-4][software-architect] Bash: Running: cargo test"
        );
    }

    #[test]
    fn test_display_message_no_tags_no_tool() {
        let line = LogLine::message(vec![], None, "Hello world".into());
        assert_eq!(line.to_string(), "Hello world");
    }

    #[test]
    fn test_display_todo() {
        let items = vec![
            TodoItem {
                content: "Done task".into(),
                status: TodoStatus::Completed,
                active_form: None,
                priority: None,
            },
            TodoItem {
                content: "Working".into(),
                status: TodoStatus::InProgress,
                active_form: Some("Working on it".into()),
                priority: None,
            },
            TodoItem {
                content: "Not started".into(),
                status: TodoStatus::Pending,
                active_form: None,
                priority: None,
            },
        ];
        let line = LogLine::todo(vec![], items);
        let display = line.to_string();
        assert!(display.contains("TodoWrite:"));
        assert!(display.contains("[x] Done task,"));
        assert!(display.contains("[~] Working on it,"));
        assert!(display.contains("[ ] Not started,"));
        assert!(display.contains("(1/3 done)"));
    }

    #[test]
    fn test_display_summary() {
        let line = LogLine::summary(
            true,
            "Task completed".into(),
            Some(0.15),
            Some(45000),
            Some(12),
        );
        assert_eq!(
            line.to_string(),
            "Result: success | Task completed | $0.15 | 45s | 12 turns"
        );
    }

    #[test]
    fn test_level_is_default() {
        assert!(Level::Info.is_default());
        assert!(!Level::Error.is_default());
        assert!(!Level::Success.is_default());
        assert!(!Level::Warning.is_default());
    }
}