task-graph-mcp 0.5.0

MCP server for agent task workflows with phases, prompts, gates, and multi-agent coordination
Documentation
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
//! Core types for the Task Graph MCP Server.

use chrono::SecondsFormat;
use serde::{Deserialize, Deserializer, Serialize, Serializer};
use std::collections::HashMap;

/// Convert epoch milliseconds to ISO 8601 string (e.g., "2025-03-01T14:00:00Z").
pub fn ms_to_iso(ms: i64) -> String {
    chrono::DateTime::from_timestamp_millis(ms)
        .unwrap_or_else(|| chrono::DateTime::from_timestamp(0, 0).unwrap())
        .to_rfc3339_opts(SecondsFormat::Secs, true)
}

/// Custom serde for required i64 timestamp fields: serializes as ISO 8601, deserializes both i64 and ISO string.
pub mod timestamp_serde {
    use super::*;

    pub fn serialize<S: Serializer>(ms: &i64, s: S) -> Result<S::Ok, S::Error> {
        s.serialize_str(&super::ms_to_iso(*ms))
    }

    pub fn deserialize<'de, D: Deserializer<'de>>(d: D) -> Result<i64, D::Error> {
        let v: serde_json::Value = Deserialize::deserialize(d)?;
        match v {
            serde_json::Value::Number(n) => n
                .as_i64()
                .ok_or_else(|| serde::de::Error::custom("invalid timestamp number")),
            serde_json::Value::String(s) => {
                // Try integer string first
                if let Ok(ms) = s.parse::<i64>() {
                    return Ok(ms);
                }
                // Try RFC 3339 / ISO 8601
                chrono::DateTime::parse_from_rfc3339(&s)
                    .map(|dt| dt.timestamp_millis())
                    .map_err(|e| {
                        serde::de::Error::custom(format!("invalid timestamp string: {}", e))
                    })
            }
            _ => Err(serde::de::Error::custom(
                "expected number or string for timestamp",
            )),
        }
    }
}

/// Custom serde for Option<i64> timestamp fields: serializes as ISO 8601, deserializes both i64 and ISO string.
pub mod timestamp_opt_serde {
    use super::*;

    pub fn serialize<S: Serializer>(ms: &Option<i64>, s: S) -> Result<S::Ok, S::Error> {
        match ms {
            Some(v) => s.serialize_str(&super::ms_to_iso(*v)),
            None => s.serialize_none(),
        }
    }

    pub fn deserialize<'de, D: Deserializer<'de>>(d: D) -> Result<Option<i64>, D::Error> {
        let v: Option<serde_json::Value> = Option::deserialize(d)?;
        match v {
            None | Some(serde_json::Value::Null) => Ok(None),
            Some(serde_json::Value::Number(n)) => n
                .as_i64()
                .map(Some)
                .ok_or_else(|| serde::de::Error::custom("invalid timestamp number")),
            Some(serde_json::Value::String(s)) => {
                if let Ok(ms) = s.parse::<i64>() {
                    return Ok(Some(ms));
                }
                chrono::DateTime::parse_from_rfc3339(&s)
                    .map(|dt| Some(dt.timestamp_millis()))
                    .map_err(|e| {
                        serde::de::Error::custom(format!("invalid timestamp string: {}", e))
                    })
            }
            _ => Err(serde::de::Error::custom(
                "expected number or string for timestamp",
            )),
        }
    }
}

// Skip-if helpers (serde requires function paths, not closures)
fn is_zero<T: Default + PartialEq>(v: &T) -> bool {
    *v == T::default()
}

fn is_default_priority(p: &Priority) -> bool {
    *p == PRIORITY_DEFAULT
}

/// Metrics array - serializes with trailing zeros trimmed, deserializes back to [i64; 8]
mod metrics_serde {
    use super::*;

    pub fn serialize<S: Serializer>(metrics: &[i64; 8], s: S) -> Result<S::Ok, S::Error> {
        // Find last non-zero index
        let len = metrics
            .iter()
            .rposition(|&x| x != 0)
            .map(|i| i + 1)
            .unwrap_or(0);
        s.collect_seq(&metrics[..len])
    }

    pub fn deserialize<'de, D: Deserializer<'de>>(d: D) -> Result<[i64; 8], D::Error> {
        let v: Vec<i64> = Vec::deserialize(d)?;
        let mut arr = [0i64; 8];
        for (i, val) in v.into_iter().take(8).enumerate() {
            arr[i] = val;
        }
        Ok(arr)
    }

    pub fn is_empty(metrics: &[i64; 8]) -> bool {
        metrics.iter().all(|&x| x == 0)
    }
}

/// Worker (session-based) - represents a connected worker.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Worker {
    pub id: String,
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
    pub max_claims: i32,
    #[serde(with = "timestamp_serde")]
    pub registered_at: i64,
    #[serde(with = "timestamp_serde")]
    pub last_heartbeat: i64,
    /// Last status the worker transitioned to (for prompts/dashboard)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub last_status: Option<String>,
    /// Last phase the worker transitioned to (for prompts/dashboard)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub last_phase: Option<String>,
    /// Last task ID the worker transitioned on (for per-task activity tracking)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub last_task_id: Option<String>,
    /// Named workflow this worker is using (e.g., "swarm" for workflow-swarm.yaml)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub workflow: Option<String>,
    /// Overlay names applied on top of the workflow (e.g., ["git", "user-request"])
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub overlays: Vec<String>,
}

/// Worker info with additional runtime details for list_workers.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkerInfo {
    pub id: String,
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
    pub max_claims: i32,
    #[serde(skip_serializing_if = "is_zero")]
    pub claim_count: i32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub current_thought: Option<String>,
    #[serde(with = "timestamp_serde")]
    pub registered_at: i64,
    #[serde(with = "timestamp_serde")]
    pub last_heartbeat: i64,
    /// Last status the worker transitioned to (for prompts/dashboard)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub last_status: Option<String>,
    /// Last phase the worker transitioned to (for prompts/dashboard)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub last_phase: Option<String>,
    /// Last task ID the worker transitioned on (for per-task activity tracking)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub last_task_id: Option<String>,
    /// Named workflow this worker is using (e.g., "swarm" for workflow-swarm.yaml)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub workflow: Option<String>,
    /// Overlay names applied on top of the workflow (e.g., ["git", "user-request"])
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub overlays: Vec<String>,
}

/// Task priority as an integer (higher = more important).
/// Range: 0-10, where 10 is highest priority. Default is 5.
pub type Priority = i32;

/// Default priority (middle of 0-10 range).
pub const PRIORITY_DEFAULT: Priority = 5;

/// Parse a priority value, clamping to 0-10 range.
pub fn parse_priority(s: &str) -> Priority {
    s.parse().unwrap_or(PRIORITY_DEFAULT).clamp(0, 10)
}

/// Clamp priority to valid range.
pub fn clamp_priority(p: Priority) -> Priority {
    p.clamp(0, 10)
}

/// A task in the task graph.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Task {
    pub id: String,
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    pub status: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub phase: Option<String>,
    #[serde(skip_serializing_if = "is_default_priority")]
    pub priority: Priority,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_id: Option<String>,
    #[serde(
        skip_serializing_if = "Option::is_none",
        default,
        with = "timestamp_opt_serde"
    )]
    pub claimed_at: Option<i64>,

    // Affinity (tag-based claiming requirements)
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub needed_tags: Vec<String>,
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub wanted_tags: Vec<String>,

    // Categorization/discovery tags
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,

    // Estimation & tracking
    #[serde(skip_serializing_if = "Option::is_none")]
    pub points: Option<i32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub time_estimate_ms: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub time_actual_ms: Option<i64>,
    #[serde(
        skip_serializing_if = "Option::is_none",
        default,
        with = "timestamp_opt_serde"
    )]
    pub started_at: Option<i64>,
    #[serde(
        skip_serializing_if = "Option::is_none",
        default,
        with = "timestamp_opt_serde"
    )]
    pub completed_at: Option<i64>,

    // Live status
    #[serde(skip_serializing_if = "Option::is_none")]
    pub current_thought: Option<String>,

    // Cost accounting
    #[serde(skip_serializing_if = "is_zero")]
    pub cost_usd: f64,
    /// Fixed array of 8 integer metrics [metric_0..metric_7], aggregated on update
    #[serde(
        with = "metrics_serde",
        skip_serializing_if = "metrics_serde::is_empty",
        default
    )]
    pub metrics: [i64; 8],

    #[serde(with = "timestamp_serde")]
    pub created_at: i64,
    #[serde(with = "timestamp_serde")]
    pub updated_at: i64,
}

/// A task with its children for tree operations.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaskTree {
    #[serde(flatten)]
    pub task: Task,
    pub children: Vec<TaskTree>,
}

/// Input for creating a task tree.
/// Supports all fields from task creation, plus tree-specific fields.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaskTreeInput {
    /// Reference to an existing task ID to include in the tree.
    /// If set, this node references an existing task rather than creating a new one.
    /// Other fields are ignored when ref is set.
    #[serde(rename = "ref")]
    pub ref_id: Option<String>,

    /// Custom task ID (optional, petname ID generated if not provided).
    /// Ignored if ref is set.
    pub id: Option<String>,

    /// Task title (optional; derived from description if omitted).
    pub title: Option<String>,

    /// Task description.
    pub description: Option<String>,

    /// Task phase (type of work: explore, design, implement, etc.).
    pub phase: Option<String>,

    /// Task priority.
    pub priority: Option<Priority>,

    /// Story points / complexity estimate.
    pub points: Option<i32>,

    /// Estimated duration in milliseconds.
    pub time_estimate_ms: Option<i64>,

    /// Tags that claiming agent must have ALL of (AND logic).
    pub needed_tags: Option<Vec<String>>,

    /// Tags that claiming agent must have AT LEAST ONE of (OR logic).
    pub wanted_tags: Option<Vec<String>>,

    /// Categorization/discovery tags for the task.
    pub tags: Option<Vec<String>>,

    /// Task IDs that block this task. Creates "blocks" dependencies from each
    /// referenced task to this task. Can reference tasks created earlier in the
    /// same tree (by their `id`) or existing tasks in the database.
    #[serde(default)]
    pub blocked_by: Vec<String>,

    /// Child nodes in the tree.
    #[serde(default)]
    pub children: Vec<TaskTreeInput>,
}

/// A typed dependency between tasks.
/// The dependency indicates that from_task_id affects to_task_id based on dep_type.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Dependency {
    pub from_task_id: String,
    pub to_task_id: String,
    /// Dependency type: "blocks", "follows", "contains", or custom types.
    pub dep_type: String,
}

/// An advisory file lock.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FileLock {
    pub file_path: String,
    pub worker_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
    #[serde(with = "timestamp_serde")]
    pub locked_at: i64,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub task_id: Option<String>,
}

/// A claim event for file coordination tracking.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ClaimEvent {
    pub id: i64,
    pub file_path: String,
    pub worker_id: String,
    pub event: ClaimEventType,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
    #[serde(with = "timestamp_serde")]
    pub timestamp: i64,
    #[serde(
        skip_serializing_if = "Option::is_none",
        default,
        with = "timestamp_opt_serde"
    )]
    pub end_timestamp: Option<i64>,
    /// For release events: the ID of the corresponding claim event.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub claim_id: Option<i64>,
}

/// A unified task sequence event for tracking status and phase changes.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaskSequenceEvent {
    pub id: i64,
    pub task_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_id: Option<String>,
    /// Status value (None if phase-only change)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<String>,
    /// Phase value (None if status-only change)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub phase: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
    #[serde(with = "timestamp_serde")]
    pub timestamp: i64,
    #[serde(
        skip_serializing_if = "Option::is_none",
        default,
        with = "timestamp_opt_serde"
    )]
    pub end_timestamp: Option<i64>,
    /// How many timed tasks the same worker had open simultaneously.
    /// Used to normalize time_actual_ms for parallel work.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub concurrency: Option<i32>,
}

/// Legacy alias for backward compatibility in exports.
/// A task state transition event for time tracking.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaskStateEvent {
    pub id: i64,
    pub task_id: String,
    pub worker_id: Option<String>,
    pub event: String,
    pub reason: Option<String>,
    #[serde(with = "timestamp_serde")]
    pub timestamp: i64,
    #[serde(default, with = "timestamp_opt_serde")]
    pub end_timestamp: Option<i64>,
}

/// Type of claim event.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum ClaimEventType {
    Claimed,
    Released,
}

impl ClaimEventType {
    pub fn as_str(&self) -> &'static str {
        match self {
            ClaimEventType::Claimed => "claimed",
            ClaimEventType::Released => "released",
        }
    }

    pub fn parse(s: &str) -> Option<Self> {
        match s {
            "claimed" => Some(ClaimEventType::Claimed),
            "released" => Some(ClaimEventType::Released),
            _ => None,
        }
    }
}

/// Result of polling claim updates.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ClaimUpdates {
    pub new_claims: Vec<ClaimEvent>,
    pub dropped_claims: Vec<ClaimEvent>,
    pub sequence: i64,
}

/// An attachment on a task.
/// Primary key is (task_id, attachment_type, sequence).
/// If file_path is set, content is stored in the referenced file; otherwise content is inline.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Attachment {
    pub task_id: String,
    pub attachment_type: String,
    pub sequence: i32,
    pub name: String,
    pub mime_type: String,
    pub content: String,
    /// Path to the file containing the content (relative to media dir or absolute).
    /// If set, content is read from this file; if None, content is stored inline.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_path: Option<String>,
    #[serde(with = "timestamp_serde")]
    pub created_at: i64,
}

/// Attachment metadata (without content).
/// Primary key is (task_id, attachment_type, sequence).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AttachmentMeta {
    pub task_id: String,
    pub attachment_type: String,
    pub sequence: i32,
    pub name: String,
    pub mime_type: String,
    /// Path to the file containing the content (if stored as file).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_path: Option<String>,
    #[serde(with = "timestamp_serde")]
    pub created_at: i64,
}

/// Aggregate statistics.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Stats {
    pub total_tasks: i64,
    /// Task counts by state (dynamic based on config).
    pub tasks_by_status: HashMap<String, i64>,
    #[serde(skip_serializing_if = "is_zero")]
    pub total_points: i64,
    #[serde(skip_serializing_if = "is_zero")]
    pub completed_points: i64,
    #[serde(skip_serializing_if = "is_zero")]
    pub total_time_estimate_ms: i64,
    #[serde(skip_serializing_if = "is_zero")]
    pub total_time_actual_ms: i64,
    #[serde(skip_serializing_if = "is_zero")]
    pub total_cost_usd: f64,
    /// Aggregated metrics [metric_0..metric_7]
    #[serde(
        with = "metrics_serde",
        skip_serializing_if = "metrics_serde::is_empty",
        default
    )]
    pub total_metrics: [i64; 8],
}

/// Compact task representation for list views.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaskSummary {
    pub id: String,
    pub title: String,
    pub status: String,
    #[serde(skip_serializing_if = "is_default_priority")]
    pub priority: Priority,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub points: Option<i32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub current_thought: Option<String>,
}

/// Result of scanning the task graph from a starting task.
/// Contains tasks organized by traversal direction.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ScanResult {
    /// The task that was scanned from
    pub root: Task,
    /// Tasks that block this task (predecessors via blocks/follows)
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub before: Vec<Task>,
    /// Tasks that this task blocks (successors via blocks/follows)
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub after: Vec<Task>,
    /// Parent chain (ancestors via contains)
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub above: Vec<Task>,
    /// Children tree (descendants via contains)
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub below: Vec<Task>,
}

/// Summary of disconnect operation.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DisconnectSummary {
    /// Number of tasks that were released.
    pub tasks_released: i32,
    /// Number of file locks that were released.
    pub files_released: i32,
    /// The final status applied to released tasks.
    pub final_status: String,
}

/// Summary of stale worker cleanup operation.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CleanupSummary {
    /// Number of stale workers evicted.
    pub workers_evicted: i32,
    /// Total number of tasks released across all evicted workers.
    pub tasks_released: i32,
    /// Total number of file locks released across all evicted workers.
    pub files_released: i32,
    /// The final status applied to released tasks.
    pub final_status: String,
    /// IDs of evicted workers.
    pub evicted_worker_ids: Vec<String>,
}

/// A task tag row for export/import.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaskTagRow {
    pub task_id: String,
    pub tag: String,
}

/// A task needed tag row for export/import.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaskNeededTagRow {
    pub task_id: String,
    pub tag: String,
}

/// A task wanted tag row for export/import.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaskWantedTagRow {
    pub task_id: String,
    pub tag: String,
}

/// Exported tables container for database export.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ExportTables {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tasks: Option<Vec<Task>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dependencies: Option<Vec<Dependency>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub attachments: Option<Vec<Attachment>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub task_tags: Option<Vec<TaskTagRow>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub task_needed_tags: Option<Vec<TaskNeededTagRow>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub task_wanted_tags: Option<Vec<TaskWantedTagRow>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub task_sequence: Option<Vec<TaskSequenceEvent>>,
}

#[cfg(test)]
mod tests {
    // Priority tests removed - Priority is now a type alias for i32
}