fix(keyword-detector): skip synthetic turns

This commit is contained in:
YeonGyu-Kim
2026-05-15 22:49:17 +09:00
parent 196f6512ae
commit 672f5d6e9b
2 changed files with 45 additions and 10 deletions
+25
View File
@@ -134,6 +134,31 @@ describe("keyword-detector message transform", () => {
expect(textPart).toBeDefined()
expect(textPart!.text).toBe("just a normal message")
})
test("should not prepend mode instructions to synthetic team peer messages", async () => {
// given - team mailbox injection created a synthetic peer message containing search keywords
const collector = new ContextCollector()
const sessionID = "synthetic-peer-message-session"
getMainSessionSpy = spyOn(sessionState, "getMainSessionID").mockReturnValue(sessionID)
const hook = createKeywordDetectorHook(createMockPluginInput(), collector)
const output = {
message: {} as Record<string, unknown>,
parts: [{
type: "text",
synthetic: true,
text: '<peer_message from="researcher">search the issue thread and report findings</peer_message>',
}],
}
// when - keyword detection sees the synthetic peer message
await hook["chat.message"]({ sessionID }, output)
// then - peer message content is preserved without search-mode becoming part of the user turn
const textPart = output.parts.find((part) => part.type === "text")
expect(textPart).toBeDefined()
expect(textPart?.text).toBe('<peer_message from="researcher">search the issue thread and report findings</peer_message>')
expect(textPart?.text).not.toContain("[search-mode]")
})
})
describe("keyword-detector session filtering", () => {