Correct the FLOWPILOT-MIGRATION.md stale references to a non-existent
ai_sessions.fix_outcome column — the actual implementation added six
columns to session_suggested_fixes. Also fix a stale first-commit SHA
(6721b84 → cdd8bb0, the former was amended away).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
680 lines
23 KiB
HTML
680 lines
23 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>FlowPilot — Suggested Fix → Resolve CTA merge (Option A)</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Bricolage+Grotesque:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--bg-sidebar: #0e1016;
|
|
--bg-page: #16181f;
|
|
--bg-card: #1e2028;
|
|
--bg-elevated: #2a2d38;
|
|
--border-default: rgba(148, 163, 184, 0.12);
|
|
--border-hover: rgba(148, 163, 184, 0.22);
|
|
--text-heading: #f1f5f9;
|
|
--text-primary: #e2e8f0;
|
|
--text-muted-foreground: #94a3b8;
|
|
--text-muted: #64748b;
|
|
--accent: #60a5fa;
|
|
--accent-dim: rgba(96, 165, 250, 0.10);
|
|
--accent-border: rgba(96, 165, 250, 0.30);
|
|
--warning: #fbbf24;
|
|
--warning-dim: rgba(251, 191, 36, 0.10);
|
|
--warning-border: rgba(251, 191, 36, 0.28);
|
|
--success: #34d399;
|
|
--success-dim: rgba(52, 211, 153, 0.10);
|
|
--success-border: rgba(52, 211, 153, 0.28);
|
|
--danger: #f87171;
|
|
}
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
html, body {
|
|
background: var(--bg-sidebar);
|
|
color: var(--text-primary);
|
|
font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.page {
|
|
max-width: 1680px;
|
|
margin: 0 auto;
|
|
padding: 32px 24px 64px;
|
|
}
|
|
|
|
.page-header {
|
|
margin-bottom: 28px;
|
|
}
|
|
.page-title {
|
|
font-family: 'Bricolage Grotesque', sans-serif;
|
|
font-weight: 600;
|
|
font-size: 22px;
|
|
color: var(--text-heading);
|
|
letter-spacing: -0.01em;
|
|
}
|
|
.page-sub {
|
|
margin-top: 6px;
|
|
color: var(--text-muted-foreground);
|
|
font-size: 13px;
|
|
max-width: 840px;
|
|
}
|
|
|
|
.columns {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
}
|
|
|
|
/* ----- Column scaffold (pretending to be the task-lane rail) ----- */
|
|
.col {
|
|
background: var(--bg-page);
|
|
border: 1px solid var(--border-default);
|
|
border-radius: 12px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 760px;
|
|
overflow: hidden;
|
|
}
|
|
.col-head {
|
|
padding: 14px 16px;
|
|
border-bottom: 1px solid var(--border-default);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
background: var(--bg-sidebar);
|
|
}
|
|
.col-head-label {
|
|
font-family: 'Bricolage Grotesque', sans-serif;
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
color: var(--text-heading);
|
|
letter-spacing: 0.01em;
|
|
}
|
|
.col-head-tag {
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
letter-spacing: 1.2px;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted);
|
|
}
|
|
.col-head-tag.today { color: var(--text-muted-foreground); }
|
|
.col-head-tag.opt-a { color: var(--accent); }
|
|
.col-head-tag.opt-a-disabled { color: var(--warning); }
|
|
|
|
.lane-body {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 14px 14px 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
/* ----- Section labels (match current component styling) ----- */
|
|
.section-label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
letter-spacing: 1.2px;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted-foreground);
|
|
padding: 0 2px 8px;
|
|
}
|
|
.dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
}
|
|
.dot-accent { background: var(--accent); }
|
|
.dot-warning { background: var(--warning); }
|
|
.dot-success { background: var(--success); }
|
|
.section-meta {
|
|
color: var(--text-muted);
|
|
font-weight: 500;
|
|
letter-spacing: 0;
|
|
text-transform: none;
|
|
}
|
|
.conf-high { color: var(--success); font-variant-numeric: tabular-nums; letter-spacing: 0; text-transform: none; }
|
|
|
|
/* ----- What-we-know facts ----- */
|
|
.fact {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-default);
|
|
border-left: 3px solid var(--accent);
|
|
border-radius: 8px;
|
|
padding: 10px 12px;
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: flex-start;
|
|
}
|
|
.fact + .fact { margin-top: 8px; }
|
|
.fact-icon {
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 3px;
|
|
background: var(--accent-dim);
|
|
border: 1px solid var(--accent-border);
|
|
flex-shrink: 0;
|
|
margin-top: 2px;
|
|
}
|
|
.fact-body { min-width: 0; flex: 1; }
|
|
.fact-title {
|
|
font-size: 12.5px;
|
|
font-weight: 500;
|
|
color: var(--text-heading);
|
|
line-height: 1.4;
|
|
}
|
|
.fact-meta {
|
|
margin-top: 3px;
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
/* ----- Suggested fix card (today only) ----- */
|
|
.fix-card {
|
|
border-radius: 8px;
|
|
border: 1px solid var(--warning-border);
|
|
border-left: 3px solid var(--warning);
|
|
background: var(--warning-dim);
|
|
padding: 12px 14px;
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: flex-start;
|
|
}
|
|
.fix-spark {
|
|
color: var(--warning);
|
|
flex-shrink: 0;
|
|
margin-top: 1px;
|
|
}
|
|
.fix-title {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--text-heading);
|
|
line-height: 1.4;
|
|
}
|
|
.fix-desc {
|
|
margin-top: 4px;
|
|
font-size: 12px;
|
|
color: var(--text-muted-foreground);
|
|
line-height: 1.5;
|
|
}
|
|
.fix-hint {
|
|
margin-top: 6px;
|
|
font-size: 11px;
|
|
color: var(--success);
|
|
}
|
|
.fix-x {
|
|
margin-left: auto;
|
|
color: var(--text-muted);
|
|
background: transparent;
|
|
border: 0;
|
|
padding: 2px 4px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 11px;
|
|
}
|
|
|
|
/* ----- Action bar at bottom ----- */
|
|
.action-bar {
|
|
border-top: 1px solid var(--border-default);
|
|
padding: 12px 14px 14px;
|
|
background: var(--bg-sidebar);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
.action-row {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.btn {
|
|
appearance: none;
|
|
border: 1px solid var(--border-default);
|
|
background: var(--bg-card);
|
|
color: var(--text-primary);
|
|
padding: 10px 12px;
|
|
border-radius: 8px;
|
|
font-family: inherit;
|
|
font-weight: 500;
|
|
font-size: 13px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
cursor: pointer;
|
|
transition: border-color 0.12s ease, background-color 0.12s ease, color 0.12s ease;
|
|
}
|
|
.btn:hover { border-color: var(--border-hover); background: var(--bg-elevated); }
|
|
|
|
.btn-secondary {
|
|
flex: 0 0 auto;
|
|
min-width: 96px;
|
|
}
|
|
|
|
.btn-resolve-today {
|
|
flex: 1;
|
|
background: var(--accent);
|
|
color: #0a0d14;
|
|
border-color: transparent;
|
|
font-weight: 600;
|
|
}
|
|
.btn-resolve-today:hover { background: #7ab4fb; color: #0a0d14; }
|
|
|
|
/* Option A — Resolve w/ embedded fix */
|
|
.btn-resolve-merged {
|
|
flex: 1;
|
|
background: var(--accent);
|
|
color: #0a0d14;
|
|
border-color: transparent;
|
|
padding: 10px 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
justify-content: flex-start;
|
|
min-height: 52px;
|
|
text-align: left;
|
|
}
|
|
.btn-resolve-merged:hover { background: #7ab4fb; color: #0a0d14; }
|
|
.btn-resolve-merged .rc-leading {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
color: rgba(10, 13, 20, 0.72);
|
|
font-family: 'Bricolage Grotesque', sans-serif;
|
|
}
|
|
.btn-resolve-merged .rc-title {
|
|
font-size: 13.5px;
|
|
font-weight: 600;
|
|
color: #0a0d14;
|
|
line-height: 1.25;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
.btn-resolve-merged .rc-body {
|
|
min-width: 0;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
.btn-resolve-merged .rc-conf {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 3px 8px;
|
|
border-radius: 999px;
|
|
background: rgba(10, 13, 20, 0.14);
|
|
color: #0a0d14;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
font-variant-numeric: tabular-nums;
|
|
flex-shrink: 0;
|
|
}
|
|
.btn-resolve-merged .rc-chevron {
|
|
color: rgba(10, 13, 20, 0.55);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Disabled (no proposal yet) */
|
|
.btn-resolve-disabled {
|
|
flex: 1;
|
|
background: var(--bg-card);
|
|
color: var(--text-muted-foreground);
|
|
border: 1px dashed var(--border-hover);
|
|
padding: 10px 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
justify-content: flex-start;
|
|
min-height: 52px;
|
|
cursor: not-allowed;
|
|
text-align: left;
|
|
}
|
|
.btn-resolve-disabled .rc-leading {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted);
|
|
font-family: 'Bricolage Grotesque', sans-serif;
|
|
}
|
|
.btn-resolve-disabled .rc-title {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--text-muted-foreground);
|
|
line-height: 1.25;
|
|
}
|
|
|
|
/* Escalate / overflow */
|
|
.btn-escalate {
|
|
background: transparent;
|
|
color: var(--text-muted-foreground);
|
|
}
|
|
.btn-escalate:hover { color: var(--text-primary); }
|
|
|
|
/* tiny spinner dot for the waiting state */
|
|
.pulse {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: var(--warning);
|
|
box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5);
|
|
animation: pulse 1.6s infinite;
|
|
flex-shrink: 0;
|
|
}
|
|
@keyframes pulse {
|
|
0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.45); }
|
|
70% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
|
|
100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
|
|
}
|
|
|
|
/* Annotation callouts beneath the columns */
|
|
.callout {
|
|
margin-top: 14px;
|
|
padding: 12px 14px;
|
|
background: var(--bg-page);
|
|
border: 1px solid var(--border-default);
|
|
border-radius: 10px;
|
|
font-size: 12px;
|
|
color: var(--text-muted-foreground);
|
|
line-height: 1.55;
|
|
}
|
|
.callout strong { color: var(--text-heading); font-weight: 600; }
|
|
.callout.note-accent { border-left: 3px solid var(--accent); }
|
|
.callout.note-warning { border-left: 3px solid var(--warning); }
|
|
.callout.note-muted { border-left: 3px solid var(--border-hover); }
|
|
|
|
.legend {
|
|
margin-top: 40px;
|
|
padding: 18px 20px;
|
|
background: var(--bg-page);
|
|
border: 1px solid var(--border-default);
|
|
border-radius: 12px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 14px 32px;
|
|
font-size: 12.5px;
|
|
color: var(--text-muted-foreground);
|
|
line-height: 1.55;
|
|
}
|
|
.legend h4 {
|
|
font-family: 'Bricolage Grotesque', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: var(--text-heading);
|
|
margin-bottom: 6px;
|
|
letter-spacing: 0;
|
|
}
|
|
.legend li { margin-top: 4px; }
|
|
|
|
/* subtle faux scrollbar hint */
|
|
.lane-body::-webkit-scrollbar { width: 6px; }
|
|
.lane-body::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="page">
|
|
|
|
<div class="page-header">
|
|
<div class="page-title">Option A — Suggested Fix merges into the Resolve CTA</div>
|
|
<div class="page-sub">
|
|
Three versions of the same task lane. <strong style="color:var(--text-primary)">Today</strong> keeps Suggested Fix as a separate card that gets pushed down by a long facts list. <strong style="color:var(--text-primary)">Option A (armed)</strong> deletes the card — the Resolve button at the bottom becomes the proposal. <strong style="color:var(--text-primary)">Option A (waiting)</strong> is what the same bar looks like before the AI emits a proposal.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="columns">
|
|
|
|
<!-- ============== COLUMN 1: TODAY ============== -->
|
|
<div>
|
|
<div class="col">
|
|
<div class="col-head">
|
|
<div class="col-head-label">Today</div>
|
|
<div class="col-head-tag today">Baseline</div>
|
|
</div>
|
|
<div class="lane-body">
|
|
|
|
<!-- What we know -->
|
|
<section>
|
|
<div class="section-label">
|
|
<span class="dot dot-accent"></span>
|
|
What we know
|
|
<span class="section-meta">· 5 facts</span>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">User cannot authenticate to Outlook; repeated 401s from Exchange Online.</div>
|
|
<div class="fact-meta">promoted 14:02 · from ticket</div>
|
|
</div>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">Cached credentials in Credential Manager reference a prior tenant the user migrated off six months ago.</div>
|
|
<div class="fact-meta">promoted 14:07 · from chat</div>
|
|
</div>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">MFA prompt appears then fails silently — no authenticator notification, no error code surfaced to the user.</div>
|
|
<div class="fact-meta">promoted 14:11 · from chat</div>
|
|
</div>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">Other devices under same account authenticate successfully, isolating the problem to this workstation.</div>
|
|
<div class="fact-meta">promoted 14:14 · from chat</div>
|
|
</div>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">Office 365 client last updated three weeks ago; local profile not recreated since migration.</div>
|
|
<div class="fact-meta">promoted 14:18 · from chat</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Suggested Fix card (this is the thing that gets buried) -->
|
|
<section>
|
|
<div class="section-label">
|
|
<span class="dot dot-warning"></span>
|
|
Suggested fix
|
|
<span class="section-meta">·</span>
|
|
<span class="conf-high">94% confidence</span>
|
|
</div>
|
|
<div class="fix-card">
|
|
<svg class="fix-spark" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z"/></svg>
|
|
<div style="min-width:0;flex:1">
|
|
<div class="fix-title">Clear cached credentials + rebuild Outlook profile</div>
|
|
<div class="fix-desc">Remove stale entries from Credential Manager referencing the prior tenant, then rebuild the local Outlook profile so the client re-authenticates cleanly against the current tenant.</div>
|
|
<div class="fix-hint">✓ Matches an existing Script Library template — click to use</div>
|
|
</div>
|
|
<button class="fix-x" aria-label="Dismiss">✕</button>
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
<div class="action-bar">
|
|
<div class="action-row">
|
|
<button class="btn btn-escalate btn-secondary">Escalate</button>
|
|
<button class="btn btn-resolve-today">Resolve</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="callout note-muted">
|
|
<strong>Baseline problem.</strong> The Suggested Fix card sits after What-we-know. With 5+ facts (common by mid-session) it's below the fold. The generic <em>Resolve</em> button at the bottom doesn't surface what would be resolved, so the engineer has to scroll up, read the card, then scroll back down to act.
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ============== COLUMN 2: OPTION A — ARMED ============== -->
|
|
<div>
|
|
<div class="col">
|
|
<div class="col-head">
|
|
<div class="col-head-label">Option A — armed</div>
|
|
<div class="col-head-tag opt-a">Proposal ready</div>
|
|
</div>
|
|
<div class="lane-body">
|
|
|
|
<!-- Same facts, but no Suggested Fix card -->
|
|
<section>
|
|
<div class="section-label">
|
|
<span class="dot dot-accent"></span>
|
|
What we know
|
|
<span class="section-meta">· 5 facts</span>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">User cannot authenticate to Outlook; repeated 401s from Exchange Online.</div>
|
|
<div class="fact-meta">promoted 14:02 · from ticket</div>
|
|
</div>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">Cached credentials in Credential Manager reference a prior tenant the user migrated off six months ago.</div>
|
|
<div class="fact-meta">promoted 14:07 · from chat</div>
|
|
</div>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">MFA prompt appears then fails silently — no authenticator notification, no error code surfaced to the user.</div>
|
|
<div class="fact-meta">promoted 14:11 · from chat</div>
|
|
</div>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">Other devices under same account authenticate successfully, isolating the problem to this workstation.</div>
|
|
<div class="fact-meta">promoted 14:14 · from chat</div>
|
|
</div>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">Office 365 client last updated three weeks ago; local profile not recreated since migration.</div>
|
|
<div class="fact-meta">promoted 14:18 · from chat</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- NO Suggested Fix card here — it lives on the button -->
|
|
|
|
</div>
|
|
|
|
<div class="action-bar">
|
|
<div class="action-row">
|
|
<button class="btn btn-escalate btn-secondary">Escalate</button>
|
|
<button class="btn btn-resolve-merged" aria-label="Resolve with: Clear cached credentials + rebuild Outlook profile (94% confidence)">
|
|
<div class="rc-body">
|
|
<div class="rc-leading">Resolve with</div>
|
|
<div class="rc-title">Clear cached credentials + rebuild Outlook profile</div>
|
|
</div>
|
|
<span class="rc-conf">
|
|
<svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z"/></svg>
|
|
94%
|
|
</span>
|
|
<svg class="rc-chevron" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"/></svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="callout note-accent">
|
|
<strong>What changes.</strong> The Suggested Fix card is gone. Its content moved onto the Resolve button, which is always in view. One click = accept the fix + open the existing <code style="font-family:'JetBrains Mono',monospace;font-size:11.5px;background:var(--bg-card);padding:1px 5px;border-radius:3px;">ResolutionNotePreview</code> popover pre-filled. No card-then-button two-step.
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ============== COLUMN 3: OPTION A — WAITING ============== -->
|
|
<div>
|
|
<div class="col">
|
|
<div class="col-head">
|
|
<div class="col-head-label">Option A — waiting</div>
|
|
<div class="col-head-tag opt-a-disabled">No proposal yet</div>
|
|
</div>
|
|
<div class="lane-body">
|
|
|
|
<section>
|
|
<div class="section-label">
|
|
<span class="dot dot-accent"></span>
|
|
What we know
|
|
<span class="section-meta">· 2 facts</span>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">User cannot authenticate to Outlook; repeated 401s from Exchange Online.</div>
|
|
<div class="fact-meta">promoted 14:02 · from ticket</div>
|
|
</div>
|
|
</div>
|
|
<div class="fact">
|
|
<span class="fact-icon"></span>
|
|
<div class="fact-body">
|
|
<div class="fact-title">Cached credentials in Credential Manager reference a prior tenant.</div>
|
|
<div class="fact-meta">promoted 14:07 · from chat</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
<div class="action-bar">
|
|
<div class="action-row">
|
|
<button class="btn btn-escalate btn-secondary">Escalate</button>
|
|
<button class="btn btn-resolve-disabled" disabled aria-label="Resolve (waiting for AI proposal)">
|
|
<span class="pulse" aria-hidden="true"></span>
|
|
<div class="rc-body">
|
|
<div class="rc-leading">Resolve</div>
|
|
<div class="rc-title">Waiting for proposal…</div>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="callout note-warning">
|
|
<strong>Before confidence threshold.</strong> Same slot, disabled state. Amber pulse signals the AI is still reasoning. Below threshold or no proposal yet → same visual — the engineer can still use <em>Escalate</em> at any time.
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- ============== LEGEND / TRADE-OFFS ============== -->
|
|
<div class="legend">
|
|
<div>
|
|
<h4>Why this helps discoverability</h4>
|
|
<ul style="padding-left:18px;list-style:disc">
|
|
<li>Proposal is in the place the engineer looks to <em>act</em>, not in the scrolling lane above.</li>
|
|
<li>Resolve bar is already sticky at the bottom — no new sticky patterns needed (preserves the <code style="font-family:'JetBrains Mono',monospace;font-size:11px">8879f96</code> fix).</li>
|
|
<li>Accepting a fix and resolving the session collapse into one click instead of two.</li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h4>What you give up</h4>
|
|
<ul style="padding-left:18px;list-style:disc">
|
|
<li>No space for secondary info on the button (reasoning, alternative fixes). Would need an expand/chevron or hover tooltip.</li>
|
|
<li>No standalone "dismiss this fix" affordance — need to decide where dismiss/reject lives (chevron menu? secondary button?).</li>
|
|
<li>If the AI proposes multiple candidates, only the top one fits the button. Need a "▾ 2 other candidates" menu.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|