feat(cli-run): show agent/model header and suppress toast output

This commit is contained in:
YeonGyu-Kim
2026-02-17 16:11:34 +09:00
parent 4d3cce685d
commit 5f9cfcbcf3
2 changed files with 28 additions and 11 deletions
+6
View File
@@ -9,6 +9,10 @@ export interface EventState {
hasReceivedMeaningfulWork: boolean
/** Count of assistant messages for the main session */
messageCount: number
/** Current agent name from the latest assistant message */
currentAgent: string | null
/** Current model ID from the latest assistant message */
currentModel: string | null
}
export function createEventState(): EventState {
@@ -21,5 +25,7 @@ export function createEventState(): EventState {
currentTool: null,
hasReceivedMeaningfulWork: false,
messageCount: 0,
currentAgent: null,
currentModel: null,
}
}