forked from sanbuphy/learn-coding-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollapseTeammateShutdowns.ts
More file actions
55 lines (51 loc) · 1.29 KB
/
collapseTeammateShutdowns.ts
File metadata and controls
55 lines (51 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import type { AttachmentMessage, RenderableMessage } from '../types/message.js'
function isTeammateShutdownAttachment(
msg: RenderableMessage,
): msg is AttachmentMessage {
return (
msg.type === 'attachment' &&
msg.attachment.type === 'task_status' &&
msg.attachment.taskType === 'in_process_teammate' &&
msg.attachment.status === 'completed'
)
}
/**
* Collapses consecutive in-process teammate shutdown task_status attachments
* into a single `teammate_shutdown_batch` attachment with a count.
*/
export function collapseTeammateShutdowns(
messages: RenderableMessage[],
): RenderableMessage[] {
const result: RenderableMessage[] = []
let i = 0
while (i < messages.length) {
const msg = messages[i]!
if (isTeammateShutdownAttachment(msg)) {
let count = 0
while (
i < messages.length &&
isTeammateShutdownAttachment(messages[i]!)
) {
count++
i++
}
if (count === 1) {
result.push(msg)
} else {
result.push({
type: 'attachment',
uuid: msg.uuid,
timestamp: msg.timestamp,
attachment: {
type: 'teammate_shutdown_batch',
count,
},
})
}
} else {
result.push(msg)
i++
}
}
return result
}