mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-08 03:01:47 +00:00
Workers completing a kanban task can now claim the ids of cards they created via an optional ``created_cards`` field on ``kanban_complete``. The kernel verifies each id exists and was created by the completing worker's profile; any phantom id blocks the completion with a ``HallucinatedCardsError`` and records a ``completion_blocked_hallucination`` event on the task so the rejected attempt is auditable. Successful completions also get a non-blocking prose-scan pass over their ``summary`` + ``result`` that emits a ``suspected_hallucinated_references`` event for any ``t_<hex>`` reference that doesn't resolve. Closes #20017. Recovery UX (kernel + CLI + dashboard) -------------------------------------- A structural gate alone isn't enough — operators also need to see and act on stuck workers, especially when a profile's model is the root cause. This PR ships the full loop: * ``kanban_db.reclaim_task(task_id)`` — operator-driven reclaim that releases an active worker claim immediately (unlike ``release_stale_claims`` which only acts after claim_expires has passed). Emits a ``reclaimed`` event with ``manual: True`` payload. * ``kanban_db.reassign_task(task_id, profile, reclaim_first=...)`` — switch a task to a different profile, optionally reclaiming a stuck running worker in the same call. * ``hermes kanban reclaim <id> [--reason ...]`` and ``hermes kanban reassign <id> <profile> [--reclaim] [--reason ...]`` CLI subcommands wired through to the same helpers. * ``POST /api/plugins/kanban/tasks/{id}/reclaim`` and ``POST /api/plugins/kanban/tasks/{id}/reassign`` endpoints on the dashboard plugin. Dashboard surfacing ------------------- * ⚠ **warning badge** on cards with active hallucination events. * **attention strip** at the top of the board listing all flagged tasks; dismissible per session. * **events callout** in the task drawer — hallucination events render with a red left border, amber icon, and phantom ids as styled chips. * **recovery section** in the task drawer with three actions: Reclaim, Reassign (with profile picker + reclaim-first checkbox), and a copy-to-clipboard hint for ``hermes -p <profile> model`` since profile config lives on disk and can't be edited from the browser. Auto-opens when the task has warnings, collapsed otherwise. Keyed by task id so state doesn't leak between drawers. Active-vs-stale rule: warnings clear when a clean ``completed`` or ``edited`` event supersedes the hallucination, so recovery is never permanently stigmatising — the audit events persist for debugging but the badge goes away once the worker succeeds. Skill updates ------------- * ``skills/devops/kanban-worker/SKILL.md`` documents the ``created_cards`` contract with good/bad examples. * ``skills/devops/kanban-orchestrator/SKILL.md`` gains a "Recovering stuck workers" section with the three actions and when to use each. Tests ----- * Kernel gate: verified-cards manifest, phantom rejection + audit event, cross-worker rejection, prose scan positive + negative. * Recovery helpers: reclaim on running task, reclaim on non-running returns False, reassign refuses running without reclaim_first, reassign with reclaim_first succeeds on running. * API endpoints: warnings field present on /board and /tasks/:id, warnings cleared after clean completion, reclaim 200 + 409 paths, reassign 200 + 409 + reclaim_first paths. * CLI smoke: reclaim + reassign subcommands. Live-verified end-to-end on a dashboard with seeded scenarios: attention strip renders, badges land on the right cards, drawer callout shows phantom chips, Reclaim on a running task flips status to ready + emits manual reclaimed event + refreshes the drawer, Reassign swaps the assignee and triggers board refresh. 359/359 kanban-suite tests pass (test_kanban_{db,cli,boards,core_functionality} + dashboard + tools).
1102 lines
28 KiB
CSS
1102 lines
28 KiB
CSS
/*
|
|
* Hermes Kanban — dashboard plugin styles.
|
|
*
|
|
* All colors reference theme CSS vars so the board reskins with the
|
|
* active dashboard theme. No hardcoded palette.
|
|
*/
|
|
|
|
.hermes-kanban {
|
|
width: 100%;
|
|
}
|
|
|
|
/* ---- Columns layout -------------------------------------------------- */
|
|
|
|
.hermes-kanban-columns {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 0.75rem;
|
|
align-items: start;
|
|
}
|
|
|
|
.hermes-kanban-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: color-mix(in srgb, var(--color-card) 85%, transparent);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius);
|
|
padding: 0.5rem;
|
|
min-height: 200px;
|
|
max-height: calc(100vh - 220px);
|
|
transition: border-color 120ms ease, background-color 120ms ease;
|
|
}
|
|
|
|
.hermes-kanban-column--drop {
|
|
border-color: var(--color-ring);
|
|
background: color-mix(in srgb, var(--color-ring) 8%, var(--color-card));
|
|
}
|
|
|
|
.hermes-kanban-column-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.25rem 0.25rem 0.35rem;
|
|
font-weight: 600;
|
|
font-size: 0.85rem;
|
|
color: var(--color-foreground);
|
|
}
|
|
|
|
.hermes-kanban-column-label {
|
|
flex: 1;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.hermes-kanban-column-count {
|
|
font-variant-numeric: tabular-nums;
|
|
color: var(--color-muted-foreground);
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.hermes-kanban-column-add {
|
|
appearance: none;
|
|
background: transparent;
|
|
border: 1px solid var(--color-border);
|
|
color: var(--color-foreground);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
width: 22px;
|
|
height: 22px;
|
|
line-height: 1;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-column-add:hover {
|
|
background: color-mix(in srgb, var(--color-foreground) 8%, transparent);
|
|
}
|
|
|
|
.hermes-kanban-column-sub {
|
|
padding: 0 0.25rem 0.5rem;
|
|
font-size: 0.7rem;
|
|
color: var(--color-muted-foreground);
|
|
border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.hermes-kanban-column-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.45rem;
|
|
overflow-y: auto;
|
|
padding-right: 0.1rem;
|
|
}
|
|
|
|
.hermes-kanban-empty {
|
|
padding: 1.5rem 0.5rem;
|
|
text-align: center;
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground);
|
|
border: 1px dashed color-mix(in srgb, var(--color-border) 70%, transparent);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
}
|
|
|
|
/* ---- Status dots ----------------------------------------------------- */
|
|
|
|
.hermes-kanban-dot {
|
|
display: inline-block;
|
|
width: 0.5rem;
|
|
height: 0.5rem;
|
|
border-radius: 999px;
|
|
background: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-dot-triage { background: #b47dd6; } /* lilac — fresh/unspecified */
|
|
.hermes-kanban-dot-todo { background: var(--color-muted-foreground); }
|
|
.hermes-kanban-dot-ready { background: #d4b348; } /* amber */
|
|
.hermes-kanban-dot-running { background: #3fb97d; } /* green */
|
|
.hermes-kanban-dot-blocked { background: var(--color-destructive, #d14a4a); }
|
|
.hermes-kanban-dot-done { background: #4a8cd1; } /* blue */
|
|
.hermes-kanban-dot-archived { background: var(--color-border); }
|
|
|
|
/* ---- Progress pill (N/M child tasks done) --------------------------- */
|
|
|
|
.hermes-kanban-progress {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.62rem;
|
|
padding: 0.05rem 0.35rem;
|
|
border-radius: 999px;
|
|
background: color-mix(in srgb, var(--color-foreground) 8%, transparent);
|
|
border: 1px solid color-mix(in srgb, var(--color-border) 80%, transparent);
|
|
color: var(--color-muted-foreground);
|
|
letter-spacing: 0.02em;
|
|
}
|
|
.hermes-kanban-progress--full {
|
|
background: color-mix(in srgb, #3fb97d 22%, transparent);
|
|
border-color: color-mix(in srgb, #3fb97d 45%, transparent);
|
|
color: var(--color-foreground);
|
|
}
|
|
|
|
/* ---- Lanes (per-profile sub-grouping inside Running) ---------------- */
|
|
|
|
.hermes-kanban-lane {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
padding: 0.25rem 0 0.35rem;
|
|
border-top: 1px dashed color-mix(in srgb, var(--color-border) 70%, transparent);
|
|
}
|
|
.hermes-kanban-lane:first-child {
|
|
border-top: 0;
|
|
padding-top: 0;
|
|
}
|
|
.hermes-kanban-lane-head {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
font-size: 0.65rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--color-muted-foreground);
|
|
padding: 0 0.1rem;
|
|
}
|
|
.hermes-kanban-lane-name {
|
|
font-weight: 600;
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
.hermes-kanban-lane-count {
|
|
margin-left: auto;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
/* ---- Card ------------------------------------------------------------ */
|
|
|
|
.hermes-kanban-card {
|
|
cursor: grab;
|
|
transition: transform 100ms ease, box-shadow 100ms ease;
|
|
}
|
|
.hermes-kanban-card:hover {
|
|
box-shadow: 0 1px 0 0 var(--color-ring) inset, 0 0 0 1px var(--color-ring) inset;
|
|
}
|
|
.hermes-kanban-card:active {
|
|
cursor: grabbing;
|
|
transform: scale(0.995);
|
|
}
|
|
|
|
.hermes-kanban-card-content {
|
|
padding: 0.5rem 0.6rem !important;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.3rem;
|
|
}
|
|
|
|
.hermes-kanban-card-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.35rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.hermes-kanban-card-id {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.65rem;
|
|
color: var(--color-muted-foreground);
|
|
letter-spacing: 0.03em;
|
|
}
|
|
|
|
.hermes-kanban-card-title {
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
line-height: 1.3;
|
|
color: var(--color-foreground);
|
|
word-break: break-word;
|
|
}
|
|
|
|
.hermes-kanban-card-meta {
|
|
font-size: 0.7rem;
|
|
color: var(--color-muted-foreground);
|
|
gap: 0.55rem;
|
|
}
|
|
|
|
.hermes-kanban-priority {
|
|
font-size: 0.6rem !important;
|
|
padding: 0.05rem 0.3rem !important;
|
|
background: color-mix(in srgb, var(--color-ring) 18%, transparent);
|
|
color: var(--color-foreground);
|
|
border: 1px solid color-mix(in srgb, var(--color-ring) 40%, transparent);
|
|
}
|
|
|
|
.hermes-kanban-tag {
|
|
font-size: 0.6rem !important;
|
|
padding: 0.05rem 0.3rem !important;
|
|
}
|
|
|
|
.hermes-kanban-assignee {
|
|
font-weight: 500;
|
|
color: color-mix(in srgb, var(--color-foreground) 80%, var(--color-muted-foreground));
|
|
}
|
|
.hermes-kanban-unassigned {
|
|
font-style: italic;
|
|
}
|
|
.hermes-kanban-ago {
|
|
margin-left: auto;
|
|
}
|
|
|
|
/* ---- Inline create --------------------------------------------------- */
|
|
|
|
.hermes-kanban-inline-create {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
padding: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
background: color-mix(in srgb, var(--color-card) 70%, transparent);
|
|
border: 1px dashed var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
}
|
|
|
|
.hermes-kanban-inline-create > .flex.gap-2:last-child > button:first-of-type {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
/* ---- Drawer (task detail side panel) --------------------------------- */
|
|
|
|
.hermes-kanban-drawer-shade {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.45);
|
|
z-index: 60;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.hermes-kanban-drawer {
|
|
width: min(var(--hermes-kanban-drawer-width, 640px), 92vw);
|
|
height: 100vh;
|
|
background: var(--color-card);
|
|
border-left: 1px solid var(--color-border);
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: -4px 0 18px rgba(0, 0, 0, 0.35);
|
|
animation: hermes-kanban-drawer-in 180ms ease-out;
|
|
}
|
|
|
|
@keyframes hermes-kanban-drawer-in {
|
|
from { transform: translateX(100%); opacity: 0.3; }
|
|
to { transform: translateX(0); opacity: 1; }
|
|
}
|
|
|
|
.hermes-kanban-drawer-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0.6rem 0.8rem;
|
|
border-bottom: 1px solid var(--color-border);
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
|
|
.hermes-kanban-drawer-close {
|
|
appearance: none;
|
|
background: transparent;
|
|
border: 0;
|
|
color: var(--color-muted-foreground);
|
|
font-size: 1.25rem;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
padding: 0 0.25rem;
|
|
}
|
|
.hermes-kanban-drawer-close:hover { color: var(--color-foreground); }
|
|
|
|
.hermes-kanban-drawer-body {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 0.9rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.85rem;
|
|
}
|
|
|
|
.hermes-kanban-drawer-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.hermes-kanban-drawer-meta {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.15rem;
|
|
padding: 0.5rem 0.6rem;
|
|
background: color-mix(in srgb, var(--color-foreground) 4%, transparent);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
}
|
|
|
|
.hermes-kanban-meta-row {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-size: 0.8rem;
|
|
}
|
|
.hermes-kanban-meta-label {
|
|
width: 92px;
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-meta-value {
|
|
color: var(--color-foreground);
|
|
word-break: break-word;
|
|
}
|
|
|
|
.hermes-kanban-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.3rem;
|
|
}
|
|
|
|
/* ---- Home channel subscription toggles (per-platform, per-task) ----- */
|
|
|
|
.hermes-kanban-home-subs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.3rem;
|
|
}
|
|
.hermes-kanban-home-sub {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
text-transform: lowercase;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
.hermes-kanban-home-sub--on {
|
|
/* Subscribed toggle — use a strong ring-colored accent so the on/off
|
|
* distinction reads at a glance, not just from the ✓ prefix. Border +
|
|
* filled background + bolder weight keep the state obvious across
|
|
* themes (tested on default teal and NERV orange). */
|
|
border-color: var(--color-ring);
|
|
background: color-mix(in srgb, var(--color-ring) 32%, transparent);
|
|
color: var(--color-foreground);
|
|
font-weight: 600;
|
|
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-ring) 40%, transparent);
|
|
}
|
|
|
|
.hermes-kanban-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
}
|
|
|
|
.hermes-kanban-section-head {
|
|
font-size: 0.72rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.07em;
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
|
|
.hermes-kanban-pre {
|
|
margin: 0;
|
|
padding: 0.5rem 0.6rem;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
background: color-mix(in srgb, var(--color-foreground) 4%, transparent);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.8rem;
|
|
line-height: 1.5;
|
|
color: var(--color-foreground);
|
|
}
|
|
|
|
.hermes-kanban-comment {
|
|
border-left: 2px solid color-mix(in srgb, var(--color-ring) 35%, transparent);
|
|
padding-left: 0.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.2rem;
|
|
}
|
|
|
|
.hermes-kanban-comment-head {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-size: 0.7rem;
|
|
}
|
|
.hermes-kanban-comment-author {
|
|
font-weight: 600;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-comment-ago {
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
|
|
.hermes-kanban-event {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-size: 0.7rem;
|
|
color: var(--color-muted-foreground);
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
.hermes-kanban-event-kind {
|
|
color: var(--color-foreground);
|
|
min-width: 6rem;
|
|
}
|
|
.hermes-kanban-event-payload {
|
|
color: var(--color-muted-foreground);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 280px;
|
|
}
|
|
|
|
.hermes-kanban-drawer-comment-row {
|
|
display: flex;
|
|
gap: 0.4rem;
|
|
padding: 0.55rem 0.75rem;
|
|
border-top: 1px solid var(--color-border);
|
|
background: color-mix(in srgb, var(--color-card) 90%, transparent);
|
|
}
|
|
|
|
.hermes-kanban-count {
|
|
display: inline-flex;
|
|
gap: 0.2rem;
|
|
align-items: center;
|
|
}
|
|
|
|
/* ---- Selection chrome ----------------------------------------------- */
|
|
|
|
.hermes-kanban-card--selected :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 2px var(--color-ring) inset,
|
|
0 0 0 1px var(--color-ring) inset;
|
|
background: color-mix(in srgb, var(--color-ring) 6%, var(--color-card));
|
|
}
|
|
|
|
.hermes-kanban-card-check {
|
|
width: 0.85rem;
|
|
height: 0.85rem;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
accent-color: var(--color-ring);
|
|
}
|
|
|
|
/* ---- Bulk action bar ------------------------------------------------ */
|
|
|
|
.hermes-kanban-bulk {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.4rem 0.75rem;
|
|
background: color-mix(in srgb, var(--color-ring) 10%, var(--color-card));
|
|
border: 1px solid color-mix(in srgb, var(--color-ring) 40%, var(--color-border));
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-bulk-count {
|
|
font-weight: 600;
|
|
font-size: 0.75rem;
|
|
padding-right: 0.25rem;
|
|
}
|
|
|
|
.hermes-kanban-bulk > button,
|
|
.hermes-kanban-bulk-reassign > button {
|
|
height: 1.7rem !important;
|
|
padding: 0 0.5rem !important;
|
|
font-size: 0.7rem !important;
|
|
border: 1px solid var(--color-border);
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-bulk > button:hover:not(:disabled),
|
|
.hermes-kanban-bulk-reassign > button:hover:not(:disabled) {
|
|
background: color-mix(in srgb, var(--color-foreground) 8%, transparent);
|
|
}
|
|
.hermes-kanban-bulk-reassign {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
padding-left: 0.5rem;
|
|
border-left: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
|
|
}
|
|
|
|
/* ---- Dependency editor chips --------------------------------------- */
|
|
|
|
.hermes-kanban-deps-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
.hermes-kanban-deps-label {
|
|
font-size: 0.68rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--color-muted-foreground);
|
|
min-width: 4rem;
|
|
}
|
|
.hermes-kanban-deps-chips {
|
|
display: flex;
|
|
gap: 0.3rem;
|
|
flex-wrap: wrap;
|
|
flex: 1;
|
|
}
|
|
.hermes-kanban-deps-empty {
|
|
font-size: 0.7rem;
|
|
color: var(--color-muted-foreground);
|
|
font-style: italic;
|
|
}
|
|
.hermes-kanban-dep-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.15rem;
|
|
padding: 0.1rem 0.35rem;
|
|
background: color-mix(in srgb, var(--color-foreground) 6%, transparent);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.68rem;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-dep-chip-x {
|
|
appearance: none;
|
|
background: transparent;
|
|
border: 0;
|
|
color: var(--color-muted-foreground);
|
|
cursor: pointer;
|
|
font-size: 0.85rem;
|
|
line-height: 1;
|
|
padding: 0 0.15rem;
|
|
}
|
|
.hermes-kanban-dep-chip-x:hover { color: var(--color-destructive, #d14a4a); }
|
|
|
|
/* ---- Inline edit affordances --------------------------------------- */
|
|
|
|
.hermes-kanban-editable {
|
|
cursor: pointer;
|
|
border-bottom: 1px dotted color-mix(in srgb, var(--color-border) 80%, transparent);
|
|
}
|
|
.hermes-kanban-editable:hover {
|
|
color: var(--color-foreground);
|
|
border-bottom-color: var(--color-ring);
|
|
}
|
|
|
|
.hermes-kanban-drawer-title-text {
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-drawer-title-text:hover {
|
|
text-decoration: underline;
|
|
text-decoration-color: var(--color-ring);
|
|
text-decoration-style: dotted;
|
|
text-underline-offset: 3px;
|
|
}
|
|
|
|
.hermes-kanban-edit-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.35rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.hermes-kanban-section-head-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.5rem;
|
|
}
|
|
.hermes-kanban-edit-link {
|
|
appearance: none;
|
|
background: transparent;
|
|
border: 0;
|
|
color: var(--color-muted-foreground);
|
|
font-size: 0.7rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
}
|
|
.hermes-kanban-edit-link:hover { color: var(--color-ring); }
|
|
|
|
.hermes-kanban-textarea {
|
|
width: 100%;
|
|
min-height: 8rem;
|
|
background: var(--color-card);
|
|
color: var(--color-foreground);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
padding: 0.5rem 0.6rem;
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.8rem;
|
|
line-height: 1.5;
|
|
resize: vertical;
|
|
}
|
|
.hermes-kanban-textarea:focus {
|
|
outline: none;
|
|
border-color: var(--color-ring);
|
|
box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-ring) 30%, transparent);
|
|
}
|
|
|
|
/* ---- Markdown rendering -------------------------------------------- */
|
|
|
|
.hermes-kanban-md {
|
|
font-size: 0.85rem;
|
|
line-height: 1.6;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-md p { margin: 0.25rem 0; }
|
|
.hermes-kanban-md h1,
|
|
.hermes-kanban-md h2,
|
|
.hermes-kanban-md h3,
|
|
.hermes-kanban-md h4 {
|
|
margin: 0.6rem 0 0.2rem;
|
|
line-height: 1.25;
|
|
}
|
|
.hermes-kanban-md h1 { font-size: 1.05rem; }
|
|
.hermes-kanban-md h2 { font-size: 0.95rem; }
|
|
.hermes-kanban-md h3 { font-size: 0.88rem; }
|
|
.hermes-kanban-md h4 { font-size: 0.82rem; }
|
|
.hermes-kanban-md ul {
|
|
margin: 0.25rem 0 0.25rem 1.1rem;
|
|
padding: 0;
|
|
}
|
|
.hermes-kanban-md li { margin: 0.1rem 0; }
|
|
.hermes-kanban-md a {
|
|
color: var(--color-ring);
|
|
text-decoration: underline;
|
|
}
|
|
.hermes-kanban-md code {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.8rem;
|
|
padding: 0.05rem 0.3rem;
|
|
background: color-mix(in srgb, var(--color-foreground) 8%, transparent);
|
|
border-radius: 3px;
|
|
color: inherit;
|
|
}
|
|
/* Fenced code block. Set a visible background even when --color-foreground
|
|
* is empty (color-mix falls through to transparent in that case), and force
|
|
* color: inherit so the text tracks the drawer foreground rather than the
|
|
* UA default on <code> elements — otherwise themes that don't set
|
|
* --color-foreground leave code text rendering near-black on dark themes
|
|
* (see issue #18576). */
|
|
.hermes-kanban-md-code {
|
|
margin: 0.35rem 0;
|
|
padding: 0.5rem 0.6rem;
|
|
background: color-mix(in srgb, currentColor 6%, transparent);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
overflow-x: auto;
|
|
}
|
|
.hermes-kanban-md-code code {
|
|
background: transparent;
|
|
padding: 0;
|
|
font-size: 0.8rem;
|
|
white-space: pre;
|
|
color: inherit;
|
|
}
|
|
.hermes-kanban-md strong { font-weight: 600; }
|
|
|
|
/* ---- Touch-drag proxy ---------------------------------------------- */
|
|
|
|
.hermes-kanban-touch-proxy {
|
|
pointer-events: none;
|
|
opacity: 0.85;
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
|
|
transform: scale(1.02);
|
|
transition: none;
|
|
}
|
|
|
|
|
|
/* ---- Staleness tiers ------------------------------------------------ */
|
|
|
|
.hermes-kanban-card--stale-amber :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 1px #d4b34888 inset;
|
|
}
|
|
.hermes-kanban-card--stale-amber:hover :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 2px #d4b348 inset;
|
|
}
|
|
.hermes-kanban-card--stale-red :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 1px var(--color-destructive, #d14a4a) inset,
|
|
0 0 8px color-mix(in srgb, var(--color-destructive, #d14a4a) 30%, transparent);
|
|
}
|
|
.hermes-kanban-card--stale-red:hover :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 2px var(--color-destructive, #d14a4a) inset,
|
|
0 0 10px color-mix(in srgb, var(--color-destructive, #d14a4a) 45%, transparent);
|
|
}
|
|
|
|
/* ---- Worker log pane ------------------------------------------------ */
|
|
|
|
.hermes-kanban-log {
|
|
max-height: 360px;
|
|
overflow: auto;
|
|
white-space: pre;
|
|
font-size: 0.78rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
|
|
/* ---- Run history (per-attempt log in the drawer) ------------------- */
|
|
|
|
.hermes-kanban-run {
|
|
border-left: 2px solid var(--color-border);
|
|
padding: 0.35rem 0.5rem;
|
|
margin-bottom: 0.4rem;
|
|
background: color-mix(in srgb, var(--color-foreground) 3%, transparent);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
}
|
|
.hermes-kanban-run--active { border-left-color: #3fb97d; }
|
|
.hermes-kanban-run--completed { border-left-color: #4a8cd1; }
|
|
.hermes-kanban-run--ended { border-left-color: #6b7280; } /* generic fallback when outcome is unset */
|
|
.hermes-kanban-run--blocked { border-left-color: var(--color-destructive, #d14a4a); }
|
|
.hermes-kanban-run--crashed,
|
|
.hermes-kanban-run--timed_out,
|
|
.hermes-kanban-run--gave_up,
|
|
.hermes-kanban-run--spawn_failed {
|
|
border-left-color: var(--color-destructive, #d14a4a);
|
|
background: color-mix(in srgb, var(--color-destructive, #d14a4a) 6%, transparent);
|
|
}
|
|
.hermes-kanban-run--reclaimed { border-left-color: #d4b348; }
|
|
|
|
.hermes-kanban-run-head {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.6rem;
|
|
font-size: 0.7rem;
|
|
}
|
|
.hermes-kanban-run-outcome {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-run-profile {
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-run-elapsed {
|
|
font-variant-numeric: tabular-nums;
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-run-ago {
|
|
margin-left: auto;
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-run-summary {
|
|
font-size: 0.82rem;
|
|
line-height: 1.5;
|
|
padding: 0.2rem 0 0;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-run-error {
|
|
font-size: 0.7rem;
|
|
color: var(--color-destructive, #d14a4a);
|
|
padding: 0.15rem 0 0;
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
.hermes-kanban-run-meta {
|
|
display: block;
|
|
font-size: 0.72rem;
|
|
line-height: 1.5;
|
|
padding: 0.15rem 0 0;
|
|
color: var(--color-muted-foreground);
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
|
|
/* -------------------------------------------------------------------------
|
|
Multi-project: board switcher + create-board dialog
|
|
------------------------------------------------------------------------- */
|
|
.hermes-kanban-boardswitcher {
|
|
border: 1px solid var(--color-border, rgba(120, 120, 140, 0.25));
|
|
border-radius: 0.5rem;
|
|
padding: 0.6rem 0.85rem;
|
|
background: var(--color-card-subtle, rgba(255, 255, 255, 0.02));
|
|
}
|
|
.hermes-kanban-boardswitcher-inner {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
gap: 0.75rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-boardswitcher-compact {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: 0 0.25rem;
|
|
}
|
|
.hermes-kanban-dialog-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(8, 10, 16, 0.55);
|
|
backdrop-filter: blur(2px);
|
|
z-index: 60;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.hermes-kanban-dialog {
|
|
background: var(--color-card, #121421);
|
|
color: var(--color-foreground);
|
|
border: 1px solid var(--color-border, rgba(120, 120, 140, 0.25));
|
|
border-radius: 0.5rem;
|
|
padding: 1.1rem 1.2rem 1rem;
|
|
width: 28rem;
|
|
max-width: calc(100vw - 2rem);
|
|
max-height: calc(100vh - 3rem);
|
|
overflow: auto;
|
|
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
|
|
}
|
|
.hermes-kanban-dialog-title {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
.hermes-kanban-dialog-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 0.5rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
/* Hallucination warnings: per-card badge, events callout, attention */
|
|
/* strip, recovery popover. Orange/red palette but muted so the board */
|
|
/* doesn't scream on every render. */
|
|
/* ---------------------------------------------------------------------- */
|
|
.hermes-kanban-warning-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.75rem;
|
|
color: #ff9e3b;
|
|
margin-left: 0.25rem;
|
|
cursor: help;
|
|
}
|
|
|
|
/* Attention strip — collapsed state is a thin bar. */
|
|
.hermes-kanban-attention {
|
|
border: 1px solid rgba(255, 158, 59, 0.35);
|
|
background: rgba(255, 158, 59, 0.06);
|
|
border-radius: 0.5rem;
|
|
overflow: hidden;
|
|
}
|
|
.hermes-kanban-attention-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.4rem 0.75rem;
|
|
font-size: 0.8125rem;
|
|
}
|
|
.hermes-kanban-attention-icon { color: #ff9e3b; font-size: 1rem; }
|
|
.hermes-kanban-attention-text { flex: 1; }
|
|
.hermes-kanban-attention-toggle,
|
|
.hermes-kanban-attention-dismiss,
|
|
.hermes-kanban-attention-row-btn {
|
|
background: transparent;
|
|
border: 1px solid rgba(120, 120, 140, 0.3);
|
|
border-radius: 0.3rem;
|
|
padding: 0.15rem 0.55rem;
|
|
font-size: 0.75rem;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-attention-toggle:hover,
|
|
.hermes-kanban-attention-dismiss:hover,
|
|
.hermes-kanban-attention-row-btn:hover {
|
|
background: rgba(255, 158, 59, 0.12);
|
|
}
|
|
.hermes-kanban-attention-list {
|
|
border-top: 1px solid rgba(255, 158, 59, 0.2);
|
|
padding: 0.25rem 0;
|
|
}
|
|
.hermes-kanban-attention-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.3rem 0.75rem;
|
|
font-size: 0.8125rem;
|
|
}
|
|
.hermes-kanban-attention-row:hover {
|
|
background: rgba(255, 158, 59, 0.08);
|
|
}
|
|
.hermes-kanban-attention-row-id {
|
|
font-family: ui-monospace, SFMono-Regular, monospace;
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
min-width: 7rem;
|
|
}
|
|
.hermes-kanban-attention-row-title {
|
|
flex: 1;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.hermes-kanban-attention-row-meta {
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
}
|
|
|
|
/* Events tab — callout style for hallucination events. */
|
|
.hermes-kanban-event--hallucination {
|
|
border-left: 3px solid #ff6b6b;
|
|
background: rgba(255, 107, 107, 0.08);
|
|
padding: 0.5rem 0.65rem;
|
|
border-radius: 0.35rem;
|
|
margin: 0.25rem 0;
|
|
}
|
|
.hermes-kanban-event-header,
|
|
.hermes-kanban-event-header-plain {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
.hermes-kanban-event-warning-icon { color: #ff6b6b; font-size: 1rem; }
|
|
.hermes-kanban-event-warning-label {
|
|
color: #ff6b6b;
|
|
font-weight: 600;
|
|
font-size: 0.8125rem;
|
|
}
|
|
.hermes-kanban-event-phantom-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
flex-wrap: wrap;
|
|
margin-top: 0.3rem;
|
|
padding-left: 1.35rem;
|
|
}
|
|
.hermes-kanban-event-phantom-label {
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #999);
|
|
}
|
|
.hermes-kanban-event-phantom-chip {
|
|
font-family: ui-monospace, SFMono-Regular, monospace;
|
|
font-size: 0.75rem;
|
|
padding: 0.1rem 0.4rem;
|
|
background: rgba(255, 107, 107, 0.15);
|
|
border: 1px solid rgba(255, 107, 107, 0.3);
|
|
border-radius: 0.3rem;
|
|
}
|
|
|
|
/* Recovery section header — amber accent when the task has warnings. */
|
|
.hermes-kanban-section-head-warning { color: #ff9e3b; }
|
|
.hermes-kanban-section-head-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.5rem;
|
|
}
|
|
.hermes-kanban-section-toggle {
|
|
background: transparent;
|
|
border: 1px solid rgba(120, 120, 140, 0.3);
|
|
border-radius: 0.3rem;
|
|
padding: 0.15rem 0.55rem;
|
|
font-size: 0.75rem;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Recovery popover body. */
|
|
.hermes-kanban-recovery {
|
|
border: 1px solid rgba(120, 120, 140, 0.25);
|
|
background: rgba(255, 158, 59, 0.04);
|
|
border-radius: 0.5rem;
|
|
padding: 0.75rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
.hermes-kanban-recovery-title {
|
|
font-weight: 600;
|
|
font-size: 0.8125rem;
|
|
}
|
|
.hermes-kanban-recovery-hint {
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
line-height: 1.35;
|
|
}
|
|
.hermes-kanban-recovery-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
}
|
|
.hermes-kanban-recovery-label {
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
}
|
|
.hermes-kanban-recovery-input,
|
|
.hermes-kanban-recovery-select {
|
|
padding: 0.25rem 0.4rem;
|
|
font-size: 0.8125rem;
|
|
background: rgba(0, 0, 0, 0.15);
|
|
border: 1px solid rgba(120, 120, 140, 0.3);
|
|
border-radius: 0.3rem;
|
|
color: inherit;
|
|
outline: none;
|
|
}
|
|
.hermes-kanban-recovery-action-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-recovery-action-label {
|
|
font-size: 0.8125rem;
|
|
font-weight: 600;
|
|
min-width: 8rem;
|
|
}
|
|
.hermes-kanban-recovery-action-desc {
|
|
flex: 1;
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
}
|
|
.hermes-kanban-recovery-btn {
|
|
padding: 0.25rem 0.7rem;
|
|
font-size: 0.75rem;
|
|
background: rgba(255, 158, 59, 0.15);
|
|
border: 1px solid rgba(255, 158, 59, 0.4);
|
|
border-radius: 0.3rem;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-recovery-btn:hover:not(:disabled) {
|
|
background: rgba(255, 158, 59, 0.25);
|
|
}
|
|
.hermes-kanban-recovery-btn:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
.hermes-kanban-recovery-reassign-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-recovery-checkbox {
|
|
font-size: 0.75rem;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
}
|
|
.hermes-kanban-recovery-cmd-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-recovery-cmd {
|
|
font-family: ui-monospace, SFMono-Regular, monospace;
|
|
font-size: 0.75rem;
|
|
padding: 0.2rem 0.5rem;
|
|
background: rgba(0, 0, 0, 0.2);
|
|
border: 1px solid rgba(120, 120, 140, 0.3);
|
|
border-radius: 0.3rem;
|
|
flex: 1;
|
|
min-width: 10rem;
|
|
overflow-x: auto;
|
|
white-space: nowrap;
|
|
}
|
|
.hermes-kanban-recovery-msg {
|
|
font-size: 0.75rem;
|
|
padding: 0.35rem 0.5rem;
|
|
border-radius: 0.3rem;
|
|
}
|
|
.hermes-kanban-recovery-msg--ok {
|
|
background: rgba(120, 200, 120, 0.12);
|
|
color: #6bc46b;
|
|
border: 1px solid rgba(120, 200, 120, 0.3);
|
|
}
|
|
.hermes-kanban-recovery-msg--err {
|
|
background: rgba(255, 107, 107, 0.12);
|
|
color: #ff8b8b;
|
|
border: 1px solid rgba(255, 107, 107, 0.3);
|
|
}
|