feat(FN-3553): improve agent creation with native shell connection and onbo

This merge adds a canonical in-dialog AI interview flow for agent onboarding (FN-3553), replacing the old wizard with a multi-step dialog that guides users through creating and reviewing agent prompts before spawning, plus tokenized typography fixes. It also introduces native shell connection handof

Fusion-Task-Id: FN-3553
This commit is contained in:
Fusion
2026-05-06 05:46:26 -07:00
committed by gsxdsm
parent 419c6f3b31
commit 409f06c5e3
11 changed files with 247 additions and 52 deletions

View File

@@ -115,6 +115,21 @@
border-bottom: 1px solid var(--border);
}
.agent-dialog-step-zero-actions {
display: flex;
justify-content: flex-end;
margin-bottom: var(--space-sm);
}
.agent-dialog-interview-btn {
font-weight: 600;
}
.agent-dialog-interview-btn:disabled {
opacity: 0.7;
cursor: not-allowed;
}
.agent-dialog-tabs {
display: grid;
grid-template-columns: 1fr 1fr;
@@ -647,4 +662,12 @@
flex: 1 1 auto;
min-width: 0;
}
.agent-dialog-step-zero-actions {
justify-content: stretch;
}
.agent-dialog-interview-btn {
width: 100%;
}
}