| 1 | export interface TaskCard { |
| 2 | id: string; |
| 3 | title: string; |
| 4 | body?: string; |
| 5 | status: string; |
| 6 | score: number; |
| 7 | score_reasons?: string[]; |
| 8 | source_kind?: string; |
| 9 | source_ref?: string; |
| 10 | labels?: string[]; |
| 11 | updated_at?: number; |
| 12 | metadata?: { |
| 13 | last_note?: string; |
| 14 | last_ci_summary?: string; |
| 15 | last_failure_summary?: string; |
| 16 | human_gate_pending?: boolean; |
| 17 | verification_steps?: { status: string; command: string }[]; |
| 18 | }; |
| 19 | } |
| 20 | |
| 21 | export interface JournalEntry { |
| 22 | timestamp: number; |
nothing calls this directly
no outgoing calls
no test coverage detected