j-cli 12.8.61

A fast CLI tool for alias management, daily reports, and productivity
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use serde::{Deserialize, Serialize};

/// 持久化任务数据结构
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AgentTask {
    pub task_id: u64,
    pub title: String,
    pub description: String,
    pub status: String, // "pending" | "in_progress" | "completed"
    #[serde(default)]
    pub blocked_by: Vec<u64>,
    #[serde(default)]
    pub owner: String,
    #[serde(default)]
    pub task_doc_paths: Vec<String>,
}