#!/bin/bash

# 当前时间
now=$(date -u +%s)

# FET-144: 2026-06-08T14:04:17Z
task144_time=$(date -u -d "2026-06-08T14:04:17Z" +%s)
task144_hours=$(( (now - task144_time) / 3600 ))

# FET-158: 2026-06-09T12:23:58Z
task158_time=$(date -u -d "2026-06-09T12:23:58Z" +%s)
task158_hours=$(( (now - task158_time) / 3600 ))

echo "当前时间: $(date -u)"
echo ""
echo "FET-144 (数据审计):"
echo "  最后更新: 2026-06-08T14:04:17Z"
echo "  距今: ${task144_hours} 小时"
echo "  状态: blocked"
echo "  负责人: 259f1110-6ba6-469e-9375-c688b75bf16e (agent)"
echo ""
echo "FET-158 (SSH密钥):"
echo "  最后更新: 2026-06-09T12:23:58Z"
echo "  距今: ${task158_hours} 小时"
echo "  状态: blocked"
echo "  负责人: f1b21d73-ee6a-42a5-8db8-4d91424dfae8 (squad)"
