From 1f4ed0057a37d3380010488f02733a9366ac34a5 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sun, 5 Apr 2026 17:03:11 +0900 Subject: [PATCH] fix(atlas): use raw agent key instead of display name for API calls (#3138) --- src/hooks/atlas/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/atlas/index.test.ts b/src/hooks/atlas/index.test.ts index 78b73b254..f2f2fd68f 100644 --- a/src/hooks/atlas/index.test.ts +++ b/src/hooks/atlas/index.test.ts @@ -1804,7 +1804,7 @@ session_id: ses_untrusted_999 // then - should call prompt for sisyphus expect(mockInput._promptMock).toHaveBeenCalled() const callArgs = mockInput._promptMock.mock.calls[0][0] - expect(callArgs.body.agent).toBe("Sisyphus (Ultraworker)") + expect(callArgs.body.agent).toBe("sisyphus") }) test("should preserve display-name agent in continuation prompt when boulder agent uses display form", async () => {