From f3e6cab2f83c3b8ffb543388ef4426e45e466c4a Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 20 Feb 2026 10:55:49 +0900 Subject: [PATCH] fix(no-hephaestus-non-gpt): make toast message more blunt --- src/hooks/no-hephaestus-non-gpt/hook.ts | 2 +- src/hooks/no-hephaestus-non-gpt/index.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/no-hephaestus-non-gpt/hook.ts b/src/hooks/no-hephaestus-non-gpt/hook.ts index f7e1bdb0..a1d08a2a 100644 --- a/src/hooks/no-hephaestus-non-gpt/hook.ts +++ b/src/hooks/no-hephaestus-non-gpt/hook.ts @@ -7,7 +7,7 @@ import { getAgentConfigKey, getAgentDisplayName } from "../../shared/agent-displ const TOAST_TITLE = "NEVER Use Hephaestus with Non-GPT" const TOAST_MESSAGE = [ "Hephaestus is designed exclusively for GPT models.", - "Hephaestus + non-GPT performs worse than vanilla Sisyphus.", + "Hephaestus is trash without GPT.", "For Claude/Kimi/GLM models, always use Sisyphus.", ].join("\n") const SISYPHUS_DISPLAY = getAgentDisplayName("sisyphus") diff --git a/src/hooks/no-hephaestus-non-gpt/index.test.ts b/src/hooks/no-hephaestus-non-gpt/index.test.ts index 3f606d33..51e1f3a0 100644 --- a/src/hooks/no-hephaestus-non-gpt/index.test.ts +++ b/src/hooks/no-hephaestus-non-gpt/index.test.ts @@ -43,7 +43,7 @@ describe("no-hephaestus-non-gpt hook", () => { expect(showToast.mock.calls[0]?.[0]).toMatchObject({ body: { title: "NEVER Use Hephaestus with Non-GPT", - message: expect.stringContaining("For Claude/Kimi/GLM models, always use Sisyphus."), + message: expect.stringContaining("Hephaestus is trash without GPT."), variant: "error", }, })