Release v2.2.1: Autonomous Task Resumption & Engine Resilience

This commit is contained in:
g1nation
2026-05-14 23:27:51 +09:00
parent e86e3177c7
commit cd22da8735
21 changed files with 848 additions and 126 deletions
+48
View File
@@ -691,6 +691,54 @@
border: 1px solid var(--border);
border-radius: 8px;
}
/* 이어서 진행 섹션 — 빈 목록이면 통째로 숨김. 있을 때만 노출돼서
평소 시야 부담이 없고, 사용자가 멈춘 작업을 즉시 식별 가능. */
.company-resumable-section[data-empty="true"] { display: none; }
.company-resumable-list {
list-style: none;
display: flex; flex-direction: column; gap: 8px;
margin-top: 8px; padding: 0;
}
.company-resumable-card {
border: 1px solid var(--warning);
background: linear-gradient(180deg, rgba(210,153,34,0.08), transparent 70%);
border-radius: 8px;
padding: 10px 12px;
display: flex; flex-direction: column; gap: 6px;
}
.company-resumable-head {
display: flex; gap: 10px; align-items: flex-start; justify-content: space-between;
}
.company-resumable-prompt {
color: var(--text-bright); font-size: 12.5px; font-weight: 600;
line-height: 1.4; flex: 1; min-width: 0;
overflow: hidden; text-overflow: ellipsis;
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.company-resumable-actions {
display: flex; gap: 6px; flex-shrink: 0;
}
.company-resumable-resume {
font-size: 11px; padding: 5px 11px;
background: var(--accent); color: var(--bg);
border: 0; border-radius: 6px; cursor: pointer; font-weight: 600;
}
.company-resumable-resume:hover { filter: brightness(1.1); }
.company-resumable-resume[disabled] { opacity: 0.55; cursor: progress; }
.company-resumable-discard {
font-size: 11px; padding: 5px 11px;
background: transparent; color: var(--text-dim);
border: 1px solid var(--border); border-radius: 6px; cursor: pointer;
}
.company-resumable-discard:hover {
color: var(--error); border-color: var(--error);
}
.company-resumable-meta {
display: flex; flex-wrap: wrap; gap: 8px;
font-size: 10px; color: var(--text-dim);
}
.company-resumable-meta span { white-space: nowrap; }
.pipeline-summary-head {
display: flex;
gap: 8px;