Terminal verboso com eventos de tool, turno, sistema e stderr + cards com botões na base

- Executor envia 5 tipos de evento: chunk, tool, turn, system, stderr
- Frontend renderiza cada tipo com cor e formatação distintas no terminal
- Cards de agentes e pipelines com flex-column e botões alinhados na base
- CSS para novos tipos de linha do terminal (tool amarelo, turn accent, stderr muted)
This commit is contained in:
Frederico Castro
2026-02-26 20:59:17 -03:00
parent 9a874ad032
commit 3b10984233
3 changed files with 145 additions and 4 deletions

View File

@@ -1058,6 +1058,24 @@ textarea {
font-style: italic;
}
.terminal-line.tool .content {
color: var(--warning);
font-size: 12px;
}
.terminal-line.turn .content {
color: var(--accent);
font-weight: 600;
font-size: 12px;
letter-spacing: 0.5px;
}
.terminal-line.stderr .content {
color: var(--text-muted);
font-size: 11px;
opacity: 0.7;
}
.terminal-cursor {
display: inline-block;
width: 8px;