fix(heartbeat): align response tool prompts (#76458)

* fix(heartbeat): align response tool prompts

* docs(changelog): credit heartbeat prompt fix
This commit is contained in:
Vincent Koc
2026-05-03 07:19:56 -07:00
committed by GitHub
parent 103b6d50a5
commit 877eb1cbed
14 changed files with 88 additions and 28 deletions

View File

@@ -53,7 +53,6 @@ describe("qa scenario catalog", () => {
const codexLeakConfig = readQaScenarioExecutionConfig("codex-harness-no-meta-leak") as
| {
harnessRuntime?: string;
harnessFallback?: string;
expectedReply?: string;
forbiddenReplySubstrings?: string[];
}
@@ -73,7 +72,6 @@ describe("qa scenario catalog", () => {
);
expect(codexLeak.title).toBe("Codex harness no meta leak");
expect(codexLeakConfig?.harnessRuntime).toBe("codex");
expect(codexLeakConfig?.harnessFallback).toBe("none");
expect(JSON.stringify(codexLeak.execution.flow)).toContain("agentRuntime");
expect(JSON.stringify(codexLeak.execution.flow)).not.toContain("embeddedHarness");
expect(codexLeakConfig?.expectedReply).toBe("QA_LEAK_OK");