ЮИ - Упростить карточки автопрогонов до названия даты id режима и типа

This commit is contained in:
2026-04-17 14:09:38 +03:00
parent 9f0f7f3e79
commit 6223062b37
17 changed files with 896 additions and 37 deletions
@@ -338,6 +338,34 @@ export interface AutoGenHistoryRecord {
agent_focus?: string | null;
architecture_phase?: string | null;
source_spec_file?: string | null;
scenario_id?: string | null;
semantic_tags?: string[] | null;
latest_acceptance?: {
scenario_id: string;
output_dir: string;
relative_output_dir: string;
final_status: string | null;
final_status_reason: string | null;
review_overall_status: string | null;
acceptance_gate_passed: boolean | null;
critical_path_green: boolean | null;
unresolved_p0_count: number | null;
unresolved_p1_count: number | null;
unresolved_p2_count: number | null;
steps_total: number | null;
steps_passed: number | null;
steps_with_warning: number | null;
steps_failed: number | null;
updated_at: string | null;
invariants: {
direct_answer_ok: boolean | null;
temporal_honesty_ok: boolean | null;
selected_object_continuity_ok: boolean | null;
truth_gate_ok: boolean | null;
human_answer_quality_ok: boolean | null;
meta_context_integrity_ok: boolean | null;
};
} | null;
} | null;
}