fix(FN-2545): persist memory audit extraction state and polish MemoryView

- Persist extract-to-audit continuity state in memory insights so extraction progress survives follow-up runs
- Add core and dashboard route tests that cover audit extraction flow and prevent regressions
- Restore lint/typecheck baseline by removing obsolete planning subtask route wiring from dashboard routes
- Apply MemoryView UX refinements with updated component logic and dedicated styling adjustments
This commit is contained in:
Fusion
2026-04-26 02:15:54 -07:00
committed by gsxdsm
parent 785b557aaf
commit 7527a7ddaf
7 changed files with 335 additions and 152 deletions

View File

@@ -175,6 +175,102 @@
align-items: center;
}
.memory-empty-extract-button {
margin-top: var(--space-md);
}
.memory-stat-value--updated {
font-size: var(--space-lg);
}
.memory-capability-row {
display: flex;
gap: var(--space-xs);
margin-top: var(--space-sm);
flex-wrap: wrap;
}
.memory-emphasis-text {
font-weight: 500;
}
.memory-health-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--space-md);
}
.memory-health-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-md);
}
.memory-health-label {
font-size: var(--space-md);
color: var(--text-muted);
text-transform: uppercase;
margin-bottom: var(--space-xs);
}
.memory-health-detail {
font-size: var(--space-md);
color: var(--text-muted);
}
.memory-health-section {
margin-top: var(--space-md);
padding-top: var(--space-md);
border-top: 1px solid var(--border);
}
.memory-status-text--success {
color: var(--color-success);
}
.memory-status-text--error {
color: var(--color-error);
}
.memory-status-text--warning {
color: var(--color-warning);
}
.memory-status-text--muted {
color: var(--text-muted);
}
.memory-audit-check-content {
flex: 1;
}
.memory-settings-note {
margin-top: var(--space-lg);
font-size: var(--space-md);
color: var(--text-muted);
display: flex;
align-items: center;
gap: var(--space-xs);
flex-wrap: wrap;
}
.memory-settings-note-button {
background: none;
border: none;
color: inherit;
cursor: pointer;
font: inherit;
padding: 0;
text-decoration: underline;
}
.memory-settings-note-button:focus-visible {
outline: none;
border-radius: var(--radius-sm);
box-shadow: var(--focus-ring-strong);
}
.memory-empty-state {
color: var(--text-muted);
padding: var(--space-2xl);
@@ -279,6 +375,10 @@
padding: var(--space-sm) 0;
}
.memory-flex-spacer {
flex: 1;
}
.memory-qmd-card {
border-style: solid;
}
@@ -346,6 +446,10 @@
padding: var(--space-xs) 0;
}
.memory-health-grid {
grid-template-columns: 1fr;
}
.memory-config-section {
margin-top: var(--space-md);
padding-top: var(--space-md);