MCPcopy
hub / github.com/HKUDS/OpenHarness / TaskCard

Interface TaskCard

autopilot-dashboard/src/types.ts:1–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export 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
21export interface JournalEntry {
22 timestamp: number;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected