Skip to content

Commit e1511e4

Browse files
committed
Plugin: drop OpenAI branding from status text
1 parent b648d1f commit e1511e4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/format.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ describe("formatCodexStatusText", () => {
133133
],
134134
});
135135

136-
expect(text).toContain("OpenAI Codex");
137136
expect(text).toContain("Binding: active");
138137
expect(text).toContain("Thread: Fix Telegram approval flow");
139138
expect(text).toContain("Model: openai/gpt-5.4 · reasoning high");

src/format.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ export function formatCodexStatusText(params: {
489489
contextUsage?: ContextUsageSnapshot;
490490
planMode?: boolean;
491491
}): string {
492-
const lines = ["OpenAI Codex"];
492+
const lines = [];
493493
lines.push(`Binding: ${params.bindingActive ? "active" : "none"}`);
494494
if (params.threadState?.threadName?.trim()) {
495495
lines.push(`Thread: ${params.threadState.threadName.trim()}`);

0 commit comments

Comments
 (0)