refactor(cli,mcp,openclaw): remove AI slop from code comments

This commit is contained in:
YeonGyu-Kim
2026-04-03 21:42:12 +09:00
parent 6b431c5522
commit dc695e8776
13 changed files with 38 additions and 60 deletions
-2
View File
@@ -17,7 +17,6 @@ export interface EventState {
currentModel: string | null
/** Current model variant from the latest assistant message */
currentVariant: string | null
/** Current message role (user/assistant) — used to filter user messages from display */
currentMessageRole: string | null
/** Agent profile colors keyed by display name */
agentColorsByName: Record<string, string>
@@ -39,7 +38,6 @@ export interface EventState {
textAtLineStart: boolean
/** Whether reasoning stream is currently at line start (for padding) */
thinkingAtLineStart: boolean
/** Current assistant message ID — prevents counter resets on repeated message.updated for same message */
currentMessageId: string | null
/** Assistant message start timestamp by message ID */
messageStartedAtById: Record<string, number>